forked from opentext-idol/myway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.example.conf
82 lines (60 loc) · 1.69 KB
/
schema.example.conf
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
[DEFAULT]
#path = /path/to/database/schema/files
#environment = production
dbadmin = "root"
passwd = "<Password>"
managed = true
procedures = false
#procedures.marker = '`<<VERSION>>'
# Level of additional output - choose at most one...
# (Most verbose will be used)
options.warn = no
options.notice = no
options.debug = no
# Overriding the above, quell non-essential output - choose at most one...
# (Most silent will be used)
options.silent = no
options.quiet = yes
# Override safety checks, and force operations to continue - please note that
# this is a DANGEROUS OPTION and should only be used when strictly necessary...
options.force = no
# Maintain compatibility with MySQL <5.6
mysql.compat = no
# Disable MySQL strict-mode (intended for debugging purposes only)?
mysql.relaxed = no
backups = no
#backups.compress = xz # or gzip, bzip2, lzma
#backups.transactional = yes
#backups.lock = no
#backups.keeplock = no
#backups.separate = yes
#backups.skipmeta = yes
#backups.extended = yes
#backups.keep = no
# Run accompanying validateschema.sh before invoking myway.pl?
preprocessor.validate = yes
# Allow potentially destructive DROP statements to be executed?
parser.allowdrop = no
#version.max = 0
[CLUSTERHOSTS]
first-cluster = first-write-master-host
second-cluster = second-write-master-host
[DATABASES]
default-db
disabled-db
vertica-schema
[default-db]
cluster = first-cluster
procedures = true
version.max = 1
[disabled-db]
managed=false
[vertica-schema]
cluster = second-cluster
syntax = vertica
dbadmin = myverticauser
#dsn = Driver=/opt/vertica/lib64/libverticaodbc.so;Database=verticadb;Port=5433
dsn = 'DRIVER={HPVerticaDriver}'
database = myverticadb
schema = myschema
# vi: set syntax=conf: