mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 12:22:55 +00:00
* feat: introduce wal benchmarker * chore: add log store metrics * chore: add some comments to wal benchmarker * fix: ci * chore: add more metrics for kafka logstore * chore: add more timers for kafka logstore * chore: add more configs * chore: move humantime to common dependencies * refactor: refactor wal benchmarker * fix: apply suggestions from code review * doc: add a simple README for wal benchmarker * fix: Cargo.toml * fix: clippy * chore: rename wal.rs to wal_bench.rs * fix: compile
22 lines
466 B
TOML
22 lines
466 B
TOML
# Refers to the documents of `Args` in benchmarks/src/wal.rs`.
|
|
wal_provider = "kafka"
|
|
bootstrap_brokers = ["localhost:9092"]
|
|
num_workers = 10
|
|
num_topics = 32
|
|
num_regions = 1000
|
|
num_scrapes = 1000
|
|
num_rows = 5
|
|
col_types = "ifs"
|
|
max_batch_size = "512KB"
|
|
linger = "1ms"
|
|
backoff_init = "10ms"
|
|
backoff_max = "1ms"
|
|
backoff_base = 2
|
|
backoff_deadline = "3s"
|
|
compression = "zstd"
|
|
rng_seed = 42
|
|
skip_read = false
|
|
skip_write = false
|
|
random_topics = true
|
|
report_metrics = false
|