mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 07:12:54 +00:00
* feat: Add table-procedures crate * feat: Implement procedure to create table * feat: Integrate procedure manager to datanode * test: Test CreateTableProcedure * refactor: Rename table-procedures to table-procedure * feat: Implement create_table_by_procedure * chore: Remove comment * chore: Add todo * feat: Add procedure config to standalone mode * feat: Register table-procedure loaders * feat: Address review comments CreateTableProcedure just return error if the subprocedure is failed * chore: Address CR comments
36 lines
681 B
TOML
36 lines
681 B
TOML
node_id = 42
|
|
mode = 'distributed'
|
|
rpc_addr = '127.0.0.1:3001'
|
|
rpc_hostname = '127.0.0.1'
|
|
rpc_runtime_size = 8
|
|
mysql_addr = '127.0.0.1:4406'
|
|
mysql_runtime_size = 4
|
|
enable_memory_catalog = false
|
|
|
|
[wal]
|
|
dir = "/tmp/greptimedb/wal"
|
|
file_size = '1GB'
|
|
purge_interval = '10m'
|
|
purge_threshold = '50GB'
|
|
read_batch_size = 128
|
|
sync_write = false
|
|
|
|
[storage]
|
|
type = 'File'
|
|
data_dir = '/tmp/greptimedb/data/'
|
|
|
|
[meta_client_options]
|
|
metasrv_addrs = ['127.0.0.1:3002']
|
|
timeout_millis = 3000
|
|
connect_timeout_millis = 5000
|
|
tcp_nodelay = false
|
|
|
|
[compaction]
|
|
max_inflight_tasks = 4
|
|
max_files_in_level0 = 16
|
|
max_purge_tasks = 32
|
|
|
|
[procedure.store]
|
|
type = 'File'
|
|
data_dir = '/tmp/greptimedb/procedure/'
|