You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| datanode.configData | string |`""`| Extra raw toml config data of datanode. Skip if the `configFile` is used. |
97
97
| datanode.configFile | string |`""`| Extra toml file of datanode. |
98
+
| datanode.logging | object |`{}`| Logging configuration for datanode, if not set, it will use the global logging configuration. |
98
99
| datanode.podTemplate | object |`{"affinity":{},"annotations":{},"labels":{},"main":{"args":[],"command":[],"env":[],"image":"","readinessProbe":{},"resources":{"limits":{},"requests":{}},"volumeMounts":[]},"nodeSelector":{},"serviceAccount":{"annotations":{},"create":false},"tolerations":[],"volumes":[]}`| The pod template for datanode |
99
100
| datanode.podTemplate.affinity | object |`{}`| The pod affinity |
100
101
| datanode.podTemplate.annotations | object |`{}`| The annotations to be created to the pod. |
| flownode.logging | object |`{}`| Logging configuration for flownode, if not set, it will use the global logging configuration. |
130
132
| flownode.podTemplate | object |`{"affinity":{},"annotations":{},"labels":{},"main":{"args":[],"command":[],"env":[],"image":"","readinessProbe":{},"resources":{"limits":{},"requests":{}},"volumeMounts":[]},"nodeSelector":{},"serviceAccount":{"annotations":{},"create":false},"tolerations":[],"volumes":[]}`| The pod template for frontend |
131
133
| flownode.podTemplate.affinity | object |`{}`| The pod affinity |
132
134
| flownode.podTemplate.annotations | object |`{}`| The annotations to be created to the pod. |
| frontend.configData | string |`""`| Extra raw toml config data of frontend. Skip if the `configFile` is used. |
151
153
| frontend.configFile | string |`""`| Extra toml file of frontend. |
154
+
| frontend.logging | object |`{}`| Logging configuration for frontend, if not set, it will use the global logging configuration. |
152
155
| frontend.podTemplate | object |`{"affinity":{},"annotations":{},"labels":{},"main":{"args":[],"command":[],"env":[],"image":"","readinessProbe":{},"resources":{"limits":{},"requests":{}},"volumeMounts":[]},"nodeSelector":{},"serviceAccount":{"annotations":{},"create":false},"tolerations":[],"volumes":[]}`| The pod template for frontend |
153
156
| frontend.podTemplate.affinity | object |`{}`| The pod affinity |
154
157
| frontend.podTemplate.annotations | object |`{}`| The annotations to be created to the pod. |
| initializer.tag | string |`"v0.1.0"`| Initializer image tag |
182
-
| meta | object |`{"configData":"","configFile":"","enableRegionFailover":false,"etcdEndpoints":"etcd.etcd-cluster.svc.cluster.local:2379","podTemplate":{"affinity":{},"annotations":{},"labels":{},"main":{"args":[],"command":[],"env":[],"image":"","resources":{"limits":{},"requests":{}},"volumeMounts":[]},"nodeSelector":{},"readinessProbe":{},"serviceAccount":{"annotations":{},"create":false},"tolerations":[],"volumes":[]},"replicas":1,"storeKeyPrefix":""}`| Meta configure |
184
+
| initializer.tag | string |`"v0.1.1"`| Initializer image tag |
185
+
| logging | object |`{"format":"text","level":"info","logsDir":"/data/greptimedb/logs","onlyLogToStdout":false,"persistentWithData":false}`| Global logging configuration |
186
+
| logging.format | string |`"text"`| The log format for greptimedb, only support "json" and "text" |
187
+
| logging.level | string |`"info"`| The log level for greptimedb, only support "debug", "info", "warn", "debug" |
188
+
| logging.logsDir | string |`"/data/greptimedb/logs"`| The logs directory for greptimedb |
189
+
| logging.onlyLogToStdout | bool |`false`| Whether to log to stdout only |
190
+
| logging.persistentWithData | bool |`false`| indicates whether to persist the log with the datanode data storage. It **ONLY** works for the datanode component. |
191
+
| meta | object |`{"configData":"","configFile":"","enableRegionFailover":false,"etcdEndpoints":"etcd.etcd-cluster.svc.cluster.local:2379","logging":{},"podTemplate":{"affinity":{},"annotations":{},"labels":{},"main":{"args":[],"command":[],"env":[],"image":"","resources":{"limits":{},"requests":{}},"volumeMounts":[]},"nodeSelector":{},"readinessProbe":{},"serviceAccount":{"annotations":{},"create":false},"tolerations":[],"volumes":[]},"replicas":1,"storeKeyPrefix":""}`| Meta configure |
183
192
| meta.configData | string |`""`| Extra raw toml config data of meta. Skip if the `configFile` is used. |
184
193
| meta.configFile | string |`""`| Extra toml file of meta. |
185
194
| meta.enableRegionFailover | bool |`false`| Whether to enable region failover |
186
195
| meta.etcdEndpoints | string |`"etcd.etcd-cluster.svc.cluster.local:2379"`| Meta etcd endpoints |
196
+
| meta.logging | object |`{}`| Logging configuration for meta, if not set, it will use the global logging configuration. |
187
197
| meta.podTemplate | object |`{"affinity":{},"annotations":{},"labels":{},"main":{"args":[],"command":[],"env":[],"image":"","resources":{"limits":{},"requests":{}},"volumeMounts":[]},"nodeSelector":{},"readinessProbe":{},"serviceAccount":{"annotations":{},"create":false},"tolerations":[],"volumes":[]}`| The pod template for meta |
188
198
| meta.podTemplate.affinity | object |`{}`| The pod affinity |
189
199
| meta.podTemplate.annotations | object |`{}`| The annotations to be created to the pod. |
0 commit comments