Hi!
I need a hand trying to delay I/O flush operations into the hw/filesystem, due to poor hardware SSD lifetime.
I'm at this time unable to replace the SSD since I'm at a very remote location, so in term I was thinking on extending it as match as possible by flushing prometheus synchronous I/O operations into the filesystem like every 5 minutes or so.
Initially I was thinking on doing some kind of hybrid thing in which I run tmpfs and sync it into the proper FS, but the DB keep breaking due to open files, which is kind of expected.
On the other hand, I couldn't find any custom Linux filesystem, fuse or not, that would allow me to control the underlying FS flushing frequency, so I was trying to see if I had the ability to do that on the prometheus DB side.
Do you have any clue if this is achievable?
Thanks in advance!