# See README in the docker for configuration guide # db.type determines the type of database used # See various configurations below for the values #conductor.db.type=SET_THIS # =====================================================# # Redis Configuration Properties # =====================================================# #conductor.db.type=redis_standalone # The last part MUST be us-east-1c, it is not used and is kept for backwards compatibility # conductor.redis.hosts=rs:6379:us-east-1c # # conductor.redis-lock.serverAddress=redis://rs:6379 # conductor.redis.taskDefCacheRefreshInterval=1 # conductor.redis.workflowNamespacePrefix=conductor # conductor.redis.queueNamespacePrefix=conductor_queues # =====================================================# # Postgres Configuration Properties # =====================================================# # conductor.db.type=postgres # spring.datasource.url=jdbc:postgresql://localhost:5432/postgres # spring.datasource.username=postgres # spring.datasource.password=postgres # Additionally you can use set the spring.datasource.XXX properties for connection pool size etc. # If you want to use Postgres as indexing store set the following # conductor.indexing.enabled=true # conductor.indexing.type=postgres # When using Elasticsearch 7 for indexing, set the following # conductor.indexing.enabled=true # conductor.indexing.type=elasticsearch # conductor.elasticsearch.url=http://es:9200 # conductor.elasticsearch.version=7 # conductor.elasticsearch.indexName=conductor # =====================================================# # Status Notifier Configuration Properties # =====================================================# # Task statuses to publish (comma-separated list) # conductor.status-notifier.notification.subscribed-task-statuses=SCHEDULED,COMPLETED,FAILED,TIMED_OUT,IN_PROGRESS # Workflow statuses to publish (comma-separated list) # Valid values: RUNNING,COMPLETED,FAILED,TIMED_OUT,TERMINATED,PAUSED,RESUMED,RESTARTED,RETRIED,RERAN,FINALIZED # conductor.status-notifier.notification.subscribed-workflow-statuses=RUNNING,COMPLETED,FAILED,TIMED_OUT,TERMINATED,PAUSED