Code Monkey home page Code Monkey logo

Comments (5)

flozano avatar flozano commented on May 25, 2024

I totally agree with this one 👍

I have a SQS queue already in-front of the apns push sending artifacts, and the current unbounded in-memory queue would mean draining it and having it all in memory.

from pushy.

marcomorain avatar marcomorain commented on May 25, 2024

You could use a Guava RateLimiter[1] to limit the rate of adding messages
to the Queue, and make something like this:

https://gist.github.com/marcomorain/7470870#file-ratelimitedpushmanager-java

[1]
http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/util/concurrent/RateLimiter.html

On Thu, Nov 14, 2013 at 4:12 PM, Francisco A. Lozano <
[email protected]> wrote:

I totally agree with this one [image: 👍]

I have a SQS queue already in-front of the apns push sending artifacts,
and the full in-memory queue would mean draining it and having it all in
memory.


Reply to this email directly or view it on GitHubhttps://github.com//issues/20#issuecomment-28496782
.

from pushy.

jchambers avatar jchambers commented on May 25, 2024

@danmassie Thanks kindly for both the suggestion and the pull request!

I'm hesitant on this one because the queue size can fluctuate quite a bit during normal operation. Here's a situation I worry about:

  1. Caller enqueues a couple thousand notifications.
  2. We write all of the notifications to the wire. Queue is now empty.
  3. Caller checks queue size and gets 0 as a result.
  4. The first notification is rejected by the APNs gateway. All subsequent messages are added back to the queue.
  5. The queue size is now "a couple thousand" - 1, but the caller still thinks it's empty.

Generally, I'm worried that the number of notifications in the queue isn't super meaningful until we've shut down (see #4), and just exposing the queue's size could lead to a false sense of certainty about the state of things. If the goal is to prevent memory usage from getting out of control, though, I wonder if there's something else we can try.

To be clear, though, I would do this in a heartbeat (and would have already done it) if we could be more certain about the fate of non-rejected notifications.

from pushy.

danmassie avatar danmassie commented on May 25, 2024

I think that exposing the size of the queue as an indicator of the size is better than nothing at all. I appreciate that it can change, but that is the nature of the process.

from pushy.

jchambers avatar jchambers commented on May 25, 2024

So I've been thinking about this and have a plan that I like a bit better than exposing the internal queue size.

Right now, we have one queue that does everything. New messages from the outside go into that queue, and so do messages that need to be resent. What I'd like to do is break that into two queues: an "interacts with the outside world" queue and a retry queue. The former -- the queue that accepts messages from the outside -- could optionally be provided by callers at construction time. If you wanted to, you could provide a bounded queue implementation.

The plan would be to make sure the retry queue is empty before taking new messages from the public-facing queue. That would mean you could be reasonably confident that things were moving forward if the public-facing queue started to drain. You could monitor the public queue and even alter its contents without fear of bad things happening to Pushy's internals. I think that would also help organize things in such a way that we could consider some robust solutions to #24, too.

Sound like that would solve your problem?

from pushy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.