mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 12:22:55 +00:00
* fix: Serialize FrontendOptions to toml * fix: Serialize DatanodeOptions to toml * fix: Serialize StandaloneOptions to toml See https://users.rust-lang.org/t/why-toml-to-string-get-error-valueaftertable/85903/2 * chore!: Rename MetaClientOpts to MetaClientOptions BREAKING CHANGE: Change the meta_client_opts in the config file to meta_client_options
13 lines
244 B
TOML
13 lines
244 B
TOML
mode = 'distributed'
|
|
datanode_rpc_addr = '127.0.0.1:3001'
|
|
|
|
[http_options]
|
|
addr = '127.0.0.1:4000'
|
|
timeout = "30s"
|
|
|
|
[meta_client_options]
|
|
metasrv_addrs = ['127.0.0.1:3002']
|
|
timeout_millis = 3000
|
|
connect_timeout_millis = 5000
|
|
tcp_nodelay = false
|