This repository was archived by the owner on Dec 13, 2023. It is now read-only.
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ log4j.properties file path is optional and allows finer control over the logging
58
58
# memory : The data is stored in memory and lost when the server dies. Useful for testing or demo
59
59
# redis : non-Dynomite based redis instance
60
60
# redis_cluster: AWS Elasticache Redis (cluster mode enabled).See [http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Clusters.Create.CON.RedisCluster.html]
61
+ # redis_sentinel: Redis HA with Redis Sentinel. See [https://redis.io/topics/sentinel]
61
62
# dynomite : Dynomite cluster. Use this for HA configuration.
62
63
db =dynomite
63
64
@@ -109,7 +110,7 @@ Conductor server can be used with a standlone Redis or ElastiCache server. To c
109
110
``` properties
110
111
db =redis
111
112
112
- # For AWS Elasticache Redis (cluster mode enabled) the format is configuration_endpoint:port:us-east-1e.
113
+ # For AWS Elasticache Redis (cluster mode enabled) the format is configuration_endpoint:port:us-east-1e.
113
114
# The region in this case does not matter
114
115
workflow.dynomite.cluster.hosts =server_address:server_port:us-east-1e
115
116
workflow.dynomite.connection.maxConnsPerHost =31
Original file line number Diff line number Diff line change @@ -10,13 +10,14 @@ At the minimum, provide these options through VM or Config file:
10
10
` workflow.elasticsearch.url `
11
11
` workflow.elasticsearch.index.name `
12
12
13
- ### Database persistence model
14
- Possible values are memory, redis, redis_cluster and dynomite.
13
+ ### Database persistence model
14
+ Possible values are memory, redis, redis_cluster, redis_sentinel and dynomite.
15
15
If omitted, the persistence used is memory
16
16
17
17
memory : The data is stored in memory and lost when the server dies. Useful for testing or demo
18
18
redis : non-Dynomite based redis instance
19
19
redis_cluster: AWS Elasticache Redis (cluster mode enabled).See [ http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Clusters.Create.CON.RedisCluster.html ]
20
+ redis_sentinel: Redis HA with Redis Sentinel. See [ https://redis.io/topics/sentinel ]
20
21
dynomite : Dynomite cluster. Use this for HA configuration.
21
22
` db=dynomite `
22
23
You can’t perform that action at this time.
0 commit comments