Skip to content

Commit f81d0d6

Browse files
committed
pulling file from physical loc
1 parent e15eaa7 commit f81d0d6

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

docker/docker-compose-scylla.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
conductor-server:
55
environment:
66
- CONFIG_PROP=config-scylla.properties
7-
7+
- PROCESS_NAME=main
88
scylla:
99
image: scylladb/scylla
1010
ports:

docker/server/config/config-conductor-server-bg.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Servers background workers configuration
22
conductor.system-task-workers.enabled=false
3-
conductor.app.isolated-system-task-enabled=false
43
conductor.workflow-reconciler.enabled=true
54
conductor.workflow-monitor.enabled=true
65
conductor.workflow-repair-service.enabled=true
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Servers background workers configuration
22
conductor.system-task-workers.enabled=true
3-
conductor.app.isolated-system-task-enabled=true
43
conductor.workflow-reconciler.enabled=false
54
conductor.workflow-monitor.enabled=false
65
conductor.workflow-repair-service.enabled=false

docker/server/config/config-conductor-server.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ conductor.scylla.replicationFactorValue=${SCYLLA_REPLICATIONFACTOR}
2222

2323
conductor.workflow-status-listener.type=archive
2424

25-
conductor.workflow-status-listener.enabled=false
25+
conductor.workflow-status-listener.enabled=true
2626
conductor.default-event-processor.enabled=false
2727
conductor.event-queues.default.enabled=false
2828
conductor.default-event-queue-processor.enabled=true
2929

3030
# Conditional configuration based on process-name(main/bg) property from k8s
31-
spring.config.import=optional:classpath:/config-conductor-server-${PROCESS_NAME}.properties
31+
spring.config.import=classpath:config-conductor-server-${PROCESS_NAME}.properties
3232

3333

3434
# Pushing Prom Metrics

docker/server/config/config-scylla.properties

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,18 @@ conductor.scylla.replicationFactorValue=1
2424
conductor.scylla.username=scylla
2525
conductor.scylla.password=scylla
2626

27-
conductor.workflow-status-listener.type=archive
28-
conductor.system-task-workers.enabled=true
27+
#conductor.workflow-status-listener.type=archive
28+
#conductor.system-task-workers.enabled=true
2929
# Hikari pool sizes are -1 by default and prevent startup
3030
#spring.datasource.hikari.maximum-pool-size=10
3131
#spring.datasource.hikari.minimum-idle=2
3232

3333
# Elastic search instance indexing is enabled.
3434
conductor.indexing.enabled=false
3535

36+
# Conditional configuration based on process-name(main/bg) property from k8s
37+
spring.config.import=/app/config/config-conductor-server-${PROCESS_NAME}.properties
38+
3639
# Transport address to elasticsearch
3740
#conductor.elasticsearch.url=http://es:9200
3841

0 commit comments

Comments
 (0)