mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-18 22:10:42 +00:00
* chore: implement wal options allocator * chore: implement round-robin topic selector * feat: add shuffle to round-robin topic selector * chore: implement kafka topic manager * test: add tests for wal options allocator * test: add wal provider to test config files * test: leave todos for adding tests for remote wal * fix: resolve review conversations * fix: typo
24 lines
388 B
Plaintext
24 lines
388 B
Plaintext
mode = 'standalone'
|
|
enable_memory_catalog = false
|
|
require_lease_before_startup = true
|
|
|
|
[wal]
|
|
provider = "raft_engine"
|
|
file_size = '1GB'
|
|
purge_interval = '10m'
|
|
purge_threshold = '10GB'
|
|
read_batch_size = 128
|
|
sync_write = false
|
|
|
|
[storage]
|
|
type = 'File'
|
|
data_home = '{data_home}'
|
|
|
|
[grpc_options]
|
|
addr = '127.0.0.1:4001'
|
|
runtime_size = 8
|
|
|
|
[procedure]
|
|
max_retry_times = 3
|
|
retry_delay = "500ms"
|