File tree 9 files changed +13
-30
lines changed
9 files changed +13
-30
lines changed Original file line number Diff line number Diff line change 1
1
# base infrastructure
2
2
3
3
services :
4
- # redis:
5
- # image: redis:latest
6
- # hostname: redis
7
- # healthcheck:
8
- # test: ["CMD-SHELL", "redis-cli -p 6379 ping | grep PONG"]
9
- # interval: 1s
10
- # timeout: 3s
11
- # retries: 5
12
-
13
4
valkey :
14
5
hostname : valkey
15
6
image : valkey/valkey:7.2.5
16
- command : " valkey-server --port 6380 "
7
+ command : " valkey-server --port 6379 "
17
8
ports :
18
- - 16380:6380
9
+ - 16379:6379
19
10
healthcheck :
20
- test : ["CMD-SHELL", "valkey-cli -p 6380 ping | grep PONG"]
11
+ test : ["CMD-SHELL", "valkey-cli -p 6379 ping | grep PONG"]
21
12
interval : 1s
22
13
timeout : 3s
23
14
retries : 5
Original file line number Diff line number Diff line change 1
1
# For local testing
2
2
3
3
services :
4
- # redis :
5
- # ports:
6
- # - 16379:6379
4
+ valkey :
5
+ ports :
6
+ - 16379:6379
7
7
8
8
arango :
9
9
environment :
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ APM_ACTIVE=false
18
18
# DB
19
19
# # VALKEY
20
20
REDIS_DATABASE = 0
21
- REDIS_SERVERS = ' [{"host":"valkey", "port":6380 }]'
21
+ REDIS_SERVERS = ' [{"host":"valkey", "port":6379 }]'
22
22
REDIS_AUTH =
23
23
REDIS_IS_CLUSTER = false
24
24
DISTRIBUTED_CACHETTL = 300
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ APM_SERVICE_NAME="event-director"
16
16
# DB
17
17
# # REDIS
18
18
REDIS_DATABASE = 0
19
- REDIS_SERVERS = [{"host":"valkey", "port":6380 }]
19
+ REDIS_SERVERS = [{"host":"valkey", "port":6379 }]
20
20
REDIS_AUTH =
21
21
REDIS_IS_CLUSTER = false
22
22
DISTRIBUTED_CACHETTL = 300
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ MAX_CPU=1
8
8
# REDIS
9
9
REDIS_DATABASE = 0
10
10
REDIS_AUTH = " exampleAuth"
11
- REDIS_SERVERS = ' [{"host":"valkey", "port":6380 }]'
11
+ REDIS_SERVERS = ' [{"host":"valkey", "port":6379 }]'
12
12
REDIS_IS_CLUSTER = false
13
13
DISTRIBUTED_CACHETTL = 300
14
14
DISTRIBUTED_CACHE_ENABLED = false
Original file line number Diff line number Diff line change @@ -15,17 +15,9 @@ APM_SECRET_TOKEN=
15
15
APM_ACTIVE = false
16
16
APM_SERVICE_NAME = " rule-901"
17
17
18
- # REDIS
19
- REDIS_DATABASE = 0
20
- REDIS_SERVERS = [{"host":"valkey", "port":6380}]
21
- REDIS_AUTH =
22
- REDIS_IS_CLUSTER = false
23
- DISTRIBUTED_CACHETTL = 300
24
- DISTRIBUTED_CACHE_ENABLED = false
25
-
26
18
# NODE CACHE
27
19
LOCAL_CACHETTL = 300
28
- LOCAL_CACHE_ENABLED = false
20
+ LOCAL_CACHE_ENABLED = true
29
21
30
22
31
23
# ARANGO
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ APM_SERVICE_NAME="tadp"
15
15
16
16
# REDIS
17
17
REDIS_DATABASE = 0
18
- REDIS_SERVERS = [{"host":"valkey", "port":6380 }]
18
+ REDIS_SERVERS = [{"host":"valkey", "port":6379 }]
19
19
REDIS_AUTH =
20
20
REDIS_IS_CLUSTER = false
21
21
DISTRIBUTED_CACHETTL = 300
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ APM_ACTIVE=false
17
17
# DB
18
18
# # REDIS
19
19
REDIS_DATABASE = 0
20
- REDIS_SERVERS = [{"host":"valkey", "port":6380 }]
20
+ REDIS_SERVERS = [{"host":"valkey", "port":6379 }]
21
21
REDIS_AUTH =
22
22
REDIS_IS_CLUSTER = false
23
23
DISTRIBUTED_CACHETTL = 300
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ APM_ACTIVE=false
15
15
16
16
# REDIS
17
17
REDIS_DATABASE = 0
18
- REDIS_SERVERS = [{"host":"valkey", "port":6380 }]
18
+ REDIS_SERVERS = [{"host":"valkey", "port":6379 }]
19
19
REDIS_AUTH =
20
20
REDIS_IS_CLUSTER = false
21
21
DISTRIBUTED_CACHETTL = 300
You can’t perform that action at this time.
0 commit comments