Files
greptimedb/tests/conf/standalone-test.toml.template
niebayes 830a91c548 feat(remote_wal): implement topic allocation (#2970)
* 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
2023-12-22 08:26:48 +00:00

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"