-
Notifications
You must be signed in to change notification settings - Fork 17
/
cfg_schema_v2.fbs
143 lines (125 loc) · 2.44 KB
/
cfg_schema_v2.fbs
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
namespace flatbuf.cfgv2;
table Config {
version:int8;
Applocation:AppLocation; // do you need this to store
AppCode:string;
AppID:uint;
AppInstanceID:string;
Settings:HandlerSetting;
AppState:AppState;
DeploymentConfig:DeploymentConfig;
Bindings:[Bindings];
MetaInfo:MetaInfo;
Owner:Owner;
}
table Namespace {
BucketName:string;
ScopeName:string;
}
table Keyspace {
BucketName:string;
ScopeName:string;
CollectionName:string;
}
table AppLocation {
Namespace:Namespace;
AppName:string;
}
table HandlerSetting {
CppWorkerThread:uint32;
DcpStreamBoundary:string;
Description:string;
LogLevel:string;
NumTimerPartition:uint16;
StatsDuration:uint64;
TimerContextSize:uint32;
WorkerCount:uint32;
AppLogDir:string;
EnableAppRotation:bool;
AppLogMaxSize:uint64;
AppLogMaxFiles:uint32;
CheckpointInterval:uint64;
CursorAware:bool;
AllowTransactionDocument:bool;
AllowSyncDocument:bool;
CheckInterval:uint64;
MaxUnackedBytes:float64;
MaxUnackedCount:float64;
FlushTimer:uint64;
MaxParallelVb:uint16;
ExecutionTimeout:uint64;
CursorCheckpointTimeout:uint64;
OnDeployTimeout:uint64;
LanguageCompat:string;
LcbInstCapacity:uint32;
LcbRetryCount:uint32;
LcbTimeout:uint64;
N1qlConsistency:string;
N1qlPrepare:bool;
HandlerHeader:[string];
HandlerFooter:[string];
BucketCacheSize:uint64;
BucketCacheAge:uint64;
CurlRespSize:uint64;
}
table AppState {
ProcessingState:bool;
DeploymentState:bool;
}
table DeploymentConfig {
SourceKeyspace:Keyspace;
MetadataKeyspace:Keyspace;
}
table Bindings {
BindingType:uint;
BucketBinding:BucketBinding;
CurlBinding:CurlBinding;
ConstantBinding:ConstantBinding;
}
table KeyspaceInfo {
UID:string;
ScopeID:string;
CID:string;
UUID:string;
NumVbs:uint16;
}
table MetaInfo {
RequestType:uint8;
FuncID:KeyspaceInfo;
MetaID:KeyspaceInfo;
IsUsingTimer:bool;
Seq:uint32;
LastPaused:string;
sboundary:string;
SourceID:KeyspaceInfo;
}
table Owner {
Username:string;
Domain:string;
UUID:string;
}
table BucketBinding {
Alias:string;
Keyspace:Keyspace;
Access:string;
}
table CurlBinding {
hostname:string;
alias:string;
authType:string;
allowCookies:bool;
validateSSLCertificate:bool;
}
table ConstantBinding {
Literal:string;
Value:string;
}
table SensitiveConfig {
sensitive:[Sensitive];
}
table Sensitive {
curlIndex:int32;
username:string;
password:string;
bearerKey:string;
}