views:

21

answers:

0

We have a custom messaging system written in Java, and I want to implement a basic batching/compression feature that basically under heavy load it will aggregate a bunch of push responses into a single push response.

Essentially:

  • if we detect 3 messages were sent in the past second then start batching responses and schedule a timer to fire in 5 seconds
  • The timer will aggregate all the message responses received in the next 5 seconds into a single message

I'm sure this has been implemented before I'm just looking for the best example of it in Java. I'm not looking for a full blown messaging layer, just the basic detect messages per second and schedule some task (obviously I can easily write this myself I just want to compare it with any existing algorithms to make sure I'm not missing any edge cases or that I've simplified the problem as much as possible).

Are there any good open source examples of building a basic QoS batching/throttling/compression implementations?