Files
greptimedb/config/standalone.example.toml
dennis zhuang 6c6eeda429 refactor: options and sample configurations (#514)
* refactor: options and sample configurations

* chore: newline at end of file

* chore: format code

* chore: remove comment and set sample configurations to default values

* chore: use single quoted string in sample configuration files
2022-11-15 17:39:22 +08:00

35 lines
552 B
TOML

node_id = 0
mode = 'standalone'
http_addr = '0.0.0.0:4000'
datanode_mysql_addr = '0.0.0.0:3306'
datanode_mysql_runtime_size = 4
wal_dir = '/tmp/greptimedb/wal/'
[storage]
type = 'File'
data_dir = '/tmp/greptimedb/data/'
[grpc_options]
addr = '0.0.0.0:4001'
runtime_size = 8
[mysql_options]
addr = '0.0.0.0:4002'
runtime_size = 2
[influxdb_options]
enable = true
[opentsdb_options]
addr = '0.0.0.0:4242'
enable = true
runtime_size = 2
[prometheus_options]
enable = true
[postgres_options]
addr = '0.0.0.0:4003'
runtime_size = 2
check_pwd = false