Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Commit ae12ab0

Browse files
author
Christoph Manns
committed
Added documentation about the configuration of redis_sentinel
1 parent 82250b4 commit ae12ab0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/docs/server/index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ log4j.properties file path is optional and allows finer control over the logging
5858
# memory : The data is stored in memory and lost when the server dies. Useful for testing or demo
5959
# redis : non-Dynomite based redis instance
6060
# 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]
6162
# dynomite : Dynomite cluster. Use this for HA configuration.
6263
db=dynomite
6364

@@ -109,7 +110,7 @@ Conductor server can be used with a standlone Redis or ElastiCache server. To c
109110
```properties
110111
db=redis
111112

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.
113114
# The region in this case does not matter
114115
workflow.dynomite.cluster.hosts=server_address:server_port:us-east-1e
115116
workflow.dynomite.connection.maxConnsPerHost=31

server/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ At the minimum, provide these options through VM or Config file:
1010
`workflow.elasticsearch.url`
1111
`workflow.elasticsearch.index.name`
1212

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.
1515
If omitted, the persistence used is memory
1616

1717
memory : The data is stored in memory and lost when the server dies. Useful for testing or demo
1818
redis : non-Dynomite based redis instance
1919
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]
2021
dynomite : Dynomite cluster. Use this for HA configuration.
2122
`db=dynomite`
2223

0 commit comments

Comments
 (0)