You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both quickwit_ingest_wal_disk_used_bytes and quickwit_ingest_wal_memory_used_bytes are not working as expected. quickwit_ingest_wal_disk_used_bytes displays a constant value of 134217728 (max queue disk usage is set to 32GB and total size of disk is 250G). quickwit_ingest_wal_memory_used_bytes always report 0.
Steps to reproduce (if applicable)
I'm using default Prometheus scraping configuration provided by the helm chart. These are my ingest_api values:
how are you ingesting data?
The wal is only used when ingesting from the api, not when pulling from something like kafka or kinesis. So if you don't use the ingest api (or are not currently ingesting anything), it's expected that the in-memory wal will be empty. The on disk wal also records queues it thinks exists, and always works in block of 128MiB, so it's never going to really be empty.
Thanks @fulmicoton, in the meantime, I've created my own wal watcher to give me stats for the queue directory on ingest v1, I just do a du -h through a pod exec (ugly but works for now).
Describe the bug
Both
quickwit_ingest_wal_disk_used_bytes
andquickwit_ingest_wal_memory_used_bytes
are not working as expected.quickwit_ingest_wal_disk_used_bytes
displays a constant value of 134217728 (max queue disk usage is set to 32GB and total size of disk is 250G).quickwit_ingest_wal_memory_used_bytes
always report 0.Steps to reproduce (if applicable)
I'm using default Prometheus scraping configuration provided by the helm chart. These are my ingest_api values:
Expected behavior
I expect both metrics to report WAL usage for both disk and memory.
Would also be great to have metrics to show
max_queue_disk_usage
andmax_queue_mem_usage
config setting.Configuration:
Version: v0.8.1
node.yaml:
The text was updated successfully, but these errors were encountered: