-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathconfig.yaml
More file actions
82 lines (76 loc) · 1.67 KB
/
config.yaml
File metadata and controls
82 lines (76 loc) · 1.67 KB
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
log:
stdout: true
level: error
persistence:
defaultStore: sqlite-default
visibilityStore: sqlite-visibility
numHistoryShards: 1
datastores:
sqlite-default:
sql:
pluginName: "sqlite"
databaseName: "default"
connectAddr: "localhost"
connectProtocol: "tcp"
connectAttributes:
mode: "memory"
cache: "private"
maxConns: 1
maxIdleConns: 1
maxConnLifetime: "1h"
sqlite-visibility:
sql:
pluginName: "sqlite"
databaseName: "default"
connectAddr: "localhost"
connectProtocol: "tcp"
connectAttributes:
mode: "memory"
cache: "private"
maxConns: 1
maxIdleConns: 1
maxConnLifetime: "1h"
global:
membership:
maxJoinDuration: 30s
broadcastAddress: "127.0.0.1"
metrics:
prometheus:
framework: "tally"
listenAddress: ":0"
services:
frontend:
rpc:
grpcPort: 17233
membershipPort: 17234
bindOnLocalHost: true
matching:
rpc:
grpcPort: 17235
membershipPort: 17236
bindOnLocalHost: true
history:
rpc:
grpcPort: 17237
membershipPort: 17238
bindOnLocalHost: true
worker:
rpc:
grpcPort: 17239
membershipPort: 17240
bindOnLocalHost: true
clusterMetadata:
enableGlobalNamespace: false
failoverVersionIncrement: 10
masterClusterName: "active"
currentClusterName: "active"
clusterInformation:
active:
enabled: true
initialFailoverVersion: 1
rpcName: "frontend"
rpcAddress: "localhost:17233"
dcRedirectionPolicy:
policy: "noop"
publicClient:
hostPort: "localhost:17233"