User | Kudos |
---|---|
13 | |
8 | |
3 | |
3 | |
3 |
We often need to use lossy queues for best-effort data transmission between code modules. And in those cases, we *accept* that we might drop some messages, but we would like to track *how many* we have dropped.
We end up having to do a lot of explicit coding to
I have considered making a special class to contain in its private data a queue and a DVR for overflow_count, but the problem is that it wouldn't be natively polymorphic (would not support all data types like the queue primitive). Sure, I could do it with variant data in the queue, or even flattened strings or whatever, but that adds some additional processing overhead, and unless we use xnodes, it muddies up the API with downstream deserialization.
Idea: please consider adding an overflow counter to the base queues, with a new output to the "flow status" primitive to query number of overflows.
Might also be nice to count total number of items queued.
And, as a bonus, add a mechanism to reset the counters, so we could do something like query these counts and reset them at 1Hz, resulting in enqueue_rate and overflow_rate values in Hz.
Here's a rough approximation of how I envision the under-the-hood implementation for the "lossy enqueue" method:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any idea that has received less than 4 kudos within 4 years after posting will be automatically declined.