forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
development_standby.yaml
103 lines (96 loc) · 1.98 KB
/
development_standby.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
persistence:
defaultStore: cass-default
visibilityStore: cass-visibility
numHistoryShards: 1
datastores:
cass-default:
cassandra:
hosts: "127.0.0.1"
keyspace: "cadence_standby"
consistency: "One"
cass-visibility:
cassandra:
hosts: "127.0.0.1"
keyspace: "cadence_visibility_standby"
consistency: "One"
ringpop:
name: cadence_standby
bootstrapMode: hosts
bootstrapHosts: ["127.0.0.1:8933", "127.0.0.1:8934", "127.0.0.1:8935", "127.0.0.1:8940"]
maxJoinDuration: 30s
services:
frontend:
rpc:
port: 8933
bindOnLocalHost: true
metrics:
statsd:
hostPort: "127.0.0.1:8125"
prefix: "cadence_standby"
pprof:
port: 8936
matching:
rpc:
port: 8935
bindOnLocalHost: true
metrics:
statsd:
hostPort: "127.0.0.1:8125"
prefix: "cadence_standby"
pprof:
port: 8938
history:
rpc:
port: 8934
bindOnLocalHost: true
metrics:
statsd:
hostPort: "127.0.0.1:8125"
prefix: "cadence_standby"
pprof:
port: 8937
worker:
rpc:
port: 8940
bindOnLocalHost: true
metrics:
statsd:
hostPort: "127.0.0.1:8125"
prefix: "cadence_standby"
pprof:
port: 8941
clustersInfo:
enableGlobalDomain: true
failoverVersionIncrement: 10
masterClusterName: "active"
currentClusterName: "standby"
clusterInitialFailoverVersion:
active: 1
standby: 0
kafka:
clusters:
test:
brokers:
- 127.0.0.1:9092
topics:
active:
cluster: test
active-retry:
cluster: test
active-dlq:
cluster: test
standby:
cluster: test
standby-retry:
cluster: test
standby-dlq:
cluster: test
cadence-cluster-topics:
active:
topic: active
retry-topic: active-retry
dlq-topic: active-dlq
standby:
topic: standby
retry-topic: standby-retry
dlq-topic: standby-dlq