Commit 525e4209 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Renamed 'job_cache' as 'cache' since we use Redis also for messaging and logging + minor changes.

parent 6cbee881
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,10 +21,10 @@ dockerize_base:
  variables:
    IMAGE_NAME: base

dockerize_job_cache:
dockerize_cache:
  <<: *docker-build-template
  variables:
    IMAGE_NAME: job_cache
    IMAGE_NAME: cache

dockerize_transfer_service:
  <<: *docker-build-template
+2 −2
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ docker volume prune

- Client (container_name: client), is used to provide to the user some useful command line tools to interact with the backend
- Transfer service (container_name: transfer_service) is the core of the backend architecture
- Redis (container_name: job_cache), is used as a cache for job queues and as message broker to deliver messages containing requests from the user command line tools and from the VOSpace REST APIs
- Redis (container_name: cache), is used as a cache for job queues, as message broker to deliver messages containing requests from the user command line tools and from the VOSpace REST APIs and also for basic centralized logging
- File catalog (container_name: file_catalog), now available [here](https://www.ict.inaf.it/gitlab/vospace/vospace-file-catalog), is a posgresql database used to store information on VOSpace nodes, but also on storage locations, jobs and users.


@@ -96,7 +96,7 @@ docker exec -it client bash
```
2. Use *redis-cli* command to connect to Redis:
```
redis-cli -h job_cache
redis-cli -h cache
```
3. You can obtain some info about the jobs by searching them on the following queues:
   - for write operations the queues are *write_pending*, *write_ready* and *write_terminated*
+0 −0

File moved.

+0 −0

File moved.

+0 −0

File moved.

Loading