mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-08-12 09:19:44 +00:00
eb50cee601
* feat: Remove create_mock_sql_handler() create_to_request() and alter_to_request() don't need `&self`, so we don't need to mock the sql handler to test them * feat: Enable procedure manager by default * docs: Update config example * test: Enable procedure framework in all tests * refactor(datanode): rename methods using procedure * test(catalog): Fix temp dir drops before test finishes * tests: Enable procedure framework in sqlness * test: Fix sqlness standalone rename test * fix: Drop procedure allows table not in engine * test: Change rename table test * fix: add options to table meta when creating table by procedure * test: adjust error message in schema test case * test: Fix test_sql_api error message
25 lines
392 B
Plaintext
25 lines
392 B
Plaintext
mode = 'standalone'
|
|
enable_memory_catalog = false
|
|
|
|
[wal]
|
|
dir = '{wal_dir}'
|
|
file_size = '1GB'
|
|
purge_interval = '10m'
|
|
purge_threshold = '50GB'
|
|
read_batch_size = 128
|
|
sync_write = false
|
|
|
|
[storage]
|
|
type = 'File'
|
|
data_dir = '{data_dir}'
|
|
|
|
[grpc_options]
|
|
addr = '127.0.0.1:4001'
|
|
runtime_size = 8
|
|
|
|
[procedure.store]
|
|
type = "File"
|
|
data_dir = "{procedure_dir}"
|
|
max_retry_times = 3
|
|
retry_delay = "500ms"
|