This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
73 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
conductor.grpc-server.enabled=false | ||
# Database persistence type. | ||
conductor.db.type=postgres | ||
|
||
# postgres | ||
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres | ||
conductor.db.schema=conductor | ||
conductor.postgres.schema=conductor | ||
conductor.db.queue.type=postgres | ||
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres?schema=conductor&ApplicationName=conductor | ||
spring.datasource.username=postgres | ||
spring.datasource.password=postgres | ||
|
||
# Elastic search instance indexing is enabled. | ||
conductor.indexing.enabled=true | ||
conductor.indexing.type=postgres | ||
conductor.indexing.enabled=true | ||
|
||
# Additional modules for metrics collection exposed to Prometheus (optional) | ||
conductor.metrics-prometheus.enabled=true | ||
management.endpoints.web.exposure.include=prometheus | ||
|
||
# Load sample kitchen sink workflow | ||
loadSample=true | ||
# The following is to force Elastic Search IndexDAO not to run. If it just missing it will still try to start v6 | ||
conductor.elasticsearch.version=postgres | ||
flyway.schema=clo-workflow | ||
# Hikari pool sizes are -1 by default and prevent startup | ||
spring.datasource.hikari.maximum-pool-size=10 | ||
spring.datasource.hikari.minimum-idle=2 | ||
# Elastic search instance indexing is enabled. | ||
#conductor.indexing.enabled=false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Database persistence type. | ||
# Below are the properties for redis | ||
conductor.db.type=redis_standalone | ||
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 | ||
|
||
# Elastic search instance indexing is enabled. | ||
conductor.indexing.enabled=true | ||
|
||
# Transport address to elasticsearch | ||
conductor.elasticsearch.url=http://es:9200 | ||
conductor.elasticsearch.indexName=conductor | ||
|
||
# Additional modules for metrics collection exposed to Prometheus (optional) | ||
conductor.metrics-prometheus.enabled=true | ||
management.endpoints.web.exposure.include=prometheus | ||
|
||
# Load sample kitchen sink workflow | ||
loadSample=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,40 @@ | ||
# Database persistence type. | ||
conductor.db.type=redis_standalone | ||
conductor.redis.hosts=localhost:6379:us-east-1c | ||
conductor.redis-lock.serverAddress=redis://localhost:6379 | ||
conductor.redis.taskDefCacheRefreshInterval=1 | ||
conductor.redis.workflowNamespacePrefix=conductor | ||
conductor.redis.queueNamespacePrefix=conductor_queues | ||
# See README in the docker for configuration guide | ||
|
||
conductor.db.type=SET_THIS | ||
|
||
# By default with dynomite, we want the repairservice enabled | ||
conductor.app.workflowRepairServiceEnabled=true | ||
# =====================================================# | ||
# 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 | ||
# | ||
|
||
# Elastic search instance indexing is enabled. | ||
conductor.indexing.enabled=true | ||
# conductor.redis-lock.serverAddress=redis://rs:6379 | ||
# conductor.redis.taskDefCacheRefreshInterval=1 | ||
# conductor.redis.workflowNamespacePrefix=conductor | ||
# conductor.redis.queueNamespacePrefix=conductor_queues | ||
|
||
# Transport address to elasticsearch | ||
conductor.elasticsearch.url=http://localhost:9200 | ||
|
||
# Name of the elasticsearch cluster | ||
conductor.elasticsearch.indexName=conductor | ||
#conductor.event-queues.amqp.queueType=classic | ||
#conductor.event-queues.amqp.sequentialMsgProcessing=true | ||
# =====================================================# | ||
# Postgres Configuration Properties | ||
# =====================================================# | ||
|
||
# Additional modules for metrics collection exposed via logger (optional) | ||
# conductor.metrics-logger.enabled=true | ||
# conductor.metrics-logger.reportPeriodSeconds=15 | ||
# 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. | ||
|
||
# Additional modules for metrics collection exposed to Prometheus (optional) | ||
# conductor.metrics-prometheus.enabled=true | ||
# management.endpoints.web.exposure.include=prometheus | ||
# If you want to use Postgres as indexing store set the following | ||
# conductor.indexing.enabled=true | ||
# conductor.indexing.type=postgres | ||
|
||
# To enable Workflow/Task Summary Input/Output JSON Serialization, use the following: | ||
# conductor.app.summary-input-output-json-serialization.enabled=true | ||
# When using Elasticsearch 7 for indexing, set the following | ||
|
||
# conductor.indexing.enabled=true | ||
# conductor.elasticsearch.url=http://es:9200 | ||
# conductor.elasticsearch.version=7 | ||
# conductor.elasticsearch.indexName=conductor | ||
|
||
# Load sample kitchen sink workflow | ||
loadSample=true |