Open tjb36 opened 11 months ago
I would guess that diskBytes
probably tracks the bytes the database actually considers to be live. InfluxDB purges files (after compaction, after writing the cache to disk, etc.), and these purges are asynchronous. I haven't looked into the code to calculate diskBytes
, but you can imagine discarded files building up on disk until they are cleaned up, and why we might want to do that. It is far more important to capture incoming data than it is to remove expired/unused data, so writes take precedence over deletes.
Hi @davidby-influx . Thanks for the reply. Yes I can imagine some purging going on (leading to the drops in shard size).
Do you agree that the docs are misleading then? I was expecting to have something which indicated current size on disk.
I am looking for a metric exposed by the _internal InfluxDB database which tells me the current disk usage of both /wal/ and /data/, instead of me having to manually run du
on the directories. It seems like such a metric does not exist then?
I couldn't say whether the docs are correct without reading the code to fully understand it. My statement above was not definitive, because, as I wrote, I haven't read the code.
Steps to reproduce:
SELECT "diskBytes" FROM "shard" WHERE "database"='_internal'
Expected behaviour: I expected the value returned by this metric to be a sum of the
/data/_internal
and/wal/_internal
directories for this database. If this is not the case (due to some memory cacheing in the background?) then I would expect this value to be at least greater than the sum of the/data/_internal
and/wal/_internal
directories. The reason I say this is because the definition of diskBytes in the docs says "including the size of the data directory and the WAL directory."Actual behaviour: When examining the diskBytes field from shard (blue curve below), I find that it correctly tracks the size of the /wal/ + /data/ directories (orange curve, measused using
du
command) for this _internal database in the beginning, but then it drops. I found that these drops correspond to a new .wal file being created (and when this happens, the previous active .wal file reduces in size).Regardless, this diskBytes does not seem to be a reliable indicator of the disk space used. Am I misunderstanding what diskBytes and shard represent, or are the docs misleading?
Environment info: