-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathvalues.aurora-mysql.yaml
More file actions
41 lines (40 loc) · 1.03 KB
/
values.aurora-mysql.yaml
File metadata and controls
41 lines (40 loc) · 1.03 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
server:
config:
persistence:
defaultStore: default
visibilityStore: visibility
numHistoryShards: 512
datastores:
default:
sql:
pluginName: mysql8
databaseName: temporal
connectAddr: "_HOST_:3306"
connectProtocol: "tcp"
user: _USERNAME_
password: _PASSWORD_
maxConns: 20
maxIdleConns: 20
maxConnLifetime: "1h"
connectAttributes:
tx_isolation: 'READ-COMMITTED'
visibility:
sql:
pluginName: mysql8
databaseName: temporal_visibility
connectAddr: "_HOST_:3306"
connectProtocol: "tcp"
user: _USERNAME_
password: _PASSWORD_
maxConns: 20
maxIdleConns: 20
maxConnLifetime: "1h"
connectAttributes:
tx_isolation: 'READ-COMMITTED'
schema:
createDatabase:
enabled: true
setup:
enabled: false
update:
enabled: false