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
2 changed files
with
13 additions
and
16 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 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,20 +1,18 @@ | ||
conductor.grpc-server.enabled=false | ||
# Database persistence type. | ||
conductor.db.type=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 | ||
|
||
# postgres | ||
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres | ||
spring.datasource.username=postgres | ||
spring.datasource.password=postgres | ||
conductor.indexing.type=postgres | ||
conductor.indexing.enabled=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 | ||
conductor.indexing.enabled=true | ||
conductor.indexing.type=postgres | ||
|
||
# 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 |