mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
* feat(sqlness): add kafka wal config * chore: add sqlness with kafka wal ci config * fix: fix config * chore: apply suggestions from CR * fix: add metasrv config to sqlness with kafka * fix: replay memtable should from flushed_entry_id + 1 * fix: should set append flag to fopen * feat: start wal allocator in standalone meta mode * feat: append a noop record after kafka topic initialization * test: ignore tests temporally * test: change sqlness kafka wal config
11 lines
263 B
Plaintext
11 lines
263 B
Plaintext
[wal]
|
|
{{ if is_raft_engine }}
|
|
provider = "raft_engine"
|
|
{{ else }}
|
|
provider = "kafka"
|
|
broker_endpoints = {kafka_wal_broker_endpoints | unescaped}
|
|
num_topics = 64
|
|
selector_type = "round_robin"
|
|
topic_name_prefix = "distributed_test_greptimedb_wal_topic"
|
|
{{ endif }}
|