forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker compose setup for async workflow kafka queue (cadence-workflow…
- Loading branch information
1 parent
d5cbec9
commit 37bea26
Showing
6 changed files
with
289 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,139 @@ | ||
persistence: | ||
defaultStore: cass-default | ||
visibilityStore: cass-visibility | ||
numHistoryShards: 4 | ||
datastores: | ||
cass-default: | ||
nosql: | ||
pluginName: "cassandra" | ||
hosts: "127.0.0.1" | ||
keyspace: "cadence" | ||
cass-visibility: | ||
nosql: | ||
pluginName: "cassandra" | ||
hosts: "127.0.0.1" | ||
keyspace: "cadence_visibility" | ||
|
||
ringpop: | ||
name: cadence | ||
bootstrapMode: hosts | ||
bootstrapHosts: [ "127.0.0.1:7933", "127.0.0.1:7934", "127.0.0.1:7935" ] | ||
maxJoinDuration: 30s | ||
|
||
services: | ||
frontend: | ||
rpc: | ||
port: 7933 | ||
grpcPort: 7833 | ||
bindOnLocalHost: true | ||
grpcMaxMsgSize: 33554432 | ||
metrics: | ||
statsd: | ||
hostPort: "127.0.0.1:8125" | ||
prefix: "cadence" | ||
pprof: | ||
port: 7936 | ||
|
||
matching: | ||
rpc: | ||
port: 7935 | ||
grpcPort: 7835 | ||
bindOnLocalHost: true | ||
grpcMaxMsgSize: 33554432 | ||
metrics: | ||
statsd: | ||
hostPort: "127.0.0.1:8125" | ||
prefix: "cadence" | ||
pprof: | ||
port: 7938 | ||
|
||
history: | ||
rpc: | ||
port: 7934 | ||
grpcPort: 7834 | ||
bindOnLocalHost: true | ||
grpcMaxMsgSize: 33554432 | ||
metrics: | ||
statsd: | ||
hostPort: "127.0.0.1:8125" | ||
prefix: "cadence" | ||
pprof: | ||
port: 7937 | ||
|
||
worker: | ||
rpc: | ||
port: 7939 | ||
bindOnLocalHost: true | ||
metrics: | ||
statsd: | ||
hostPort: "127.0.0.1:8125" | ||
prefix: "cadence" | ||
pprof: | ||
port: 7940 | ||
|
||
clusterGroupMetadata: | ||
failoverVersionIncrement: 10 | ||
primaryClusterName: "cluster0" | ||
currentClusterName: "cluster0" | ||
clusterGroup: | ||
cluster0: | ||
enabled: true | ||
initialFailoverVersion: 0 | ||
newInitialFailoverVersion: 1 # migrating to this new failover version | ||
rpcAddress: "localhost:7833" # this is to let worker service and XDC replicator connected to the frontend service. In cluster setup, localhost will not work | ||
rpcTransport: "grpc" | ||
|
||
dcRedirectionPolicy: | ||
policy: "noop" | ||
toDC: "" | ||
|
||
archival: | ||
history: | ||
status: "enabled" | ||
enableRead: true | ||
provider: | ||
filestore: | ||
fileMode: "0666" | ||
dirMode: "0766" | ||
gstorage: | ||
credentialsPath: "/tmp/gcloud/keyfile.json" | ||
visibility: | ||
status: "enabled" | ||
enableRead: true | ||
provider: | ||
filestore: | ||
fileMode: "0666" | ||
dirMode: "0766" | ||
|
||
domainDefaults: | ||
archival: | ||
history: | ||
status: "enabled" | ||
URI: "file:///tmp/cadence_archival/development" | ||
visibility: | ||
status: "enabled" | ||
URI: "file:///tmp/cadence_vis_archival/development" | ||
|
||
dynamicconfig: | ||
client: filebased | ||
configstore: | ||
pollInterval: "10s" | ||
updateRetryAttempts: 2 | ||
FetchTimeout: "2s" | ||
UpdateTimeout: "2s" | ||
filebased: | ||
filepath: "config/dynamicconfig/development.yaml" | ||
pollInterval: "10s" | ||
|
||
blobstore: | ||
filestore: | ||
outputDirectory: "/tmp/blobstore" | ||
|
||
asyncWorkflowQueues: | ||
queue1: | ||
type: "kafka" | ||
config: | ||
connection: | ||
brokers: | ||
- "localhost:9092" | ||
topic: "async-wf-topic1" |
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
version: '3' | ||
services: | ||
cassandra: | ||
image: cassandra:4.1.1 | ||
ports: | ||
- "9042:9042" | ||
environment: | ||
- "MAX_HEAP_SIZE=256M" | ||
- "HEAP_NEWSIZE=128M" | ||
healthcheck: | ||
test: ["CMD", "cqlsh", "-u cassandra", "-p cassandra" ,"-e describe keyspaces"] | ||
interval: 15s | ||
timeout: 30s | ||
retries: 10 | ||
prometheus: | ||
image: prom/prometheus:latest | ||
volumes: | ||
- ./prometheus:/etc/prometheus | ||
command: | ||
- '--config.file=/etc/prometheus/prometheus.yml' | ||
ports: | ||
- '9090:9090' | ||
node-exporter: | ||
image: prom/node-exporter | ||
ports: | ||
- '9100:9100' | ||
cadence: | ||
image: ubercadence/server:master-auto-setup-with-kafka | ||
ports: | ||
- "8000:8000" | ||
- "8001:8001" | ||
- "8002:8002" | ||
- "8003:8003" | ||
- "7933:7933" | ||
- "7934:7934" | ||
- "7935:7935" | ||
- "7939:7939" | ||
- "7833:7833" | ||
environment: | ||
- "ASYNC_WF_KAFKA_QUEUE_ENABLED=true" | ||
- "ASYNC_WF_KAFKA_QUEUE_TOPIC=async-wf-topic1" # this should match the topic name in the config yml | ||
- "KAFKA_SEEDS=kafka" | ||
- "KAFKA_PORT=9092" | ||
- "ZOOKEEPER_SEEDS=zookeeper" | ||
- "ZOOKEEPER_PORT=2181" | ||
- "CASSANDRA_SEEDS=cassandra" | ||
- "PROMETHEUS_ENDPOINT_0=0.0.0.0:8000" | ||
- "PROMETHEUS_ENDPOINT_1=0.0.0.0:8001" | ||
- "PROMETHEUS_ENDPOINT_2=0.0.0.0:8002" | ||
- "PROMETHEUS_ENDPOINT_3=0.0.0.0:8003" | ||
- "DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml" | ||
- "LOG_LEVEL=debug" | ||
depends_on: | ||
cassandra: | ||
condition: service_healthy | ||
prometheus: | ||
condition: service_started | ||
kafka: | ||
condition: service_started | ||
cadence-web: | ||
image: ubercadence/web:latest | ||
environment: | ||
- "CADENCE_TCHANNEL_PEERS=cadence:7933" | ||
ports: | ||
- "8088:8088" | ||
depends_on: | ||
- cadence | ||
grafana: | ||
image: grafana/grafana | ||
volumes: | ||
- ./grafana:/etc/grafana | ||
user: "1000" | ||
depends_on: | ||
- prometheus | ||
ports: | ||
- '3000:3000' | ||
zookeeper: | ||
image: wurstmeister/zookeeper:3.4.6 | ||
ports: | ||
- "2181:2181" | ||
kafka: | ||
image: wurstmeister/kafka:2.12-2.1.1 | ||
depends_on: | ||
- zookeeper | ||
ports: | ||
- "9092:9092" | ||
environment: | ||
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092 | ||
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092 | ||
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 |
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