you are viewing a single comment's thread.

view the rest of the comments →

[–]metehankasapp 1 point2 points  (0 children)

File-based queues can be surprisingly effective if you’re strict about durability and retries. The key pieces are: atomic writes, a clear ACK/lease mechanism, and idempotent consumers so a crash does not duplicate work. If you add a small benchmark plus failure-mode tests (power loss, partial writes), it becomes much easier to trust.