Code Monkey home page Code Monkey logo

Comments (5)

sorentwo avatar sorentwo commented on July 30, 2024

@tomtaylor Thanks for opening this up. On the one hand, I don't know if there is anything that can be done to prevent timer messages from backing up when the system is sleeping. On the other hand, that number of messages seemed excessively high and it led me to check the producer module.

There were two timers running per producer, which would have effectively doubled the number of messages to handle and duplicated the polling queries. I've pushed up a fix to address this and will be releasing v0.6.0 shortly.

from oban.

axelson avatar axelson commented on July 30, 2024

I remember running into something like this with rabbitmq a while ago. I think I ended up turning off rabbitmq before I put my laptop to sleep :(

@sorentwo could you describe a little more what the problem is? I think I'd like to start a discussion on it in on the ElixirForum (on the general topic of sleeping and timers).

from oban.

sorentwo avatar sorentwo commented on July 30, 2024

could you describe a little more what the problem is? I think I'd like to start a discussion on it in on the ElixirForum (on the general topic of sleeping and timers).

Sure, I can explain to the best of my ability.

The producer uses :timer.send_interval/2 to repeatedly send the producer a poll message every second. The :timer module uses a separate process to manage the timer state and it will keep sending the producer the :poll message regardless of whether the producer has handled the previous message. Apaprently, and here I'm hypothesizing, the timer process either doesn't sleep when the laptop is suspended, or it tries to catch up rapidly when the laptop comes back from being suspended.

After researching the underlying issue a bit more (thanks for prompting me) I'm going to switch to using recursive send_after instead of utilities through the :timer module. That will be more efficient in overall and will also prevent this issue entirely.

from oban.

axelson avatar axelson commented on July 30, 2024

Oh nice, that makes sense as a fix, especially given how this loop is being used 👍

My laptop thanks you!

from oban.

tomtaylor avatar tomtaylor commented on July 30, 2024

Thanks @sorentwo!

from oban.

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.