Giter VIP home page Giter VIP logo

Comments (15)

weyoss avatar weyoss commented on July 18, 2024

Hey @hiendaovinh! Thank you for reporting this issue.

I'm going to see what went wrong ASAP.

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

My first though is, this error may occur only in one case: When you create a producer instance, it will try to connect to Redis immediately. At time when your producer instance is not yet fully UP, you tried to publish too many messages. So in this case I expect an exception to be thrown (MaxListenersExceededWarning).

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

After a quick analysis, it seems like you tried concurrently from many places, using a single producer instance which has not yet connected to Redis, to publish many messages.

Just to keep things simple and to avoid this kind of errors, maybe producer instances should be manually started using the run() method, the same way as for consumers.

from redis-smq.

hiendaovinh avatar hiendaovinh commented on July 18, 2024

Yes @weyoss,
I was using a single producer to produce multiple messages concurrently. Do you have any recommendation for this kind of pattern? Should I create multiple producers? I got like a thousand of messages to process.

from redis-smq.

hiendaovinh avatar hiendaovinh commented on July 18, 2024

You were mentioning run() but afaik it's automatically called at constructor.
Should I listen for up events before start producing?

from redis-smq.

hiendaovinh avatar hiendaovinh commented on July 18, 2024

Yeah, I can confirm this will work. I think you should update your documentation.

const producer = new Producer(config)
producer.once(events.UP, () => {
  producer.produce(message, err => {})
  ...
})

Although producers automatically run, it doesn't guarantee that they will be ready. We need to wait for the signal before processing to avoid this kind of warning.

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

Do you have any recommendation for this kind of pattern? Should I create multiple producers? I got like a thousand of messages to process.

Producing concurrently many messages, a thousand or a million messages, is totally fine as well as your system can handle it. So the recommended way is to use a single producer instance.

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

You were mentioning run() but afaik it's automatically called at constructor.

At this time the run() method is automatically called upon initialization. But I mean as an improvement it shouldn't be that way and this should be changed to manually calling the run() method, like you do for consumers. The point is that the run() method accepts a callback and once the producer is ready and running the callback get called. After that you can do whatever you want with your producer.

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024
const producer = new Producer(config)
producer.once(events.UP, () => {
  producer.produce(message, err => {})
  ...
})

This is a workaround, it should be fine for now.

from redis-smq.

hiendaovinh avatar hiendaovinh commented on July 18, 2024

Agree. Thank you for your time!

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

It was my pleasure.

Reopening this issue as an improvement is required to be made to avoid this kind of issues.

from redis-smq.

hiendaovinh avatar hiendaovinh commented on July 18, 2024

I think we should just put a notice to the documentation for awareness and let people decide how to use it properly.

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

I think we should just put a notice to the documentation for awareness and let people decide how to use it properly.

Starting with v7.0.6, the proper way is to run your producer instance using the run() method before producing messages.

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

See https://github.com/weyoss/redis-smq/blob/master/docs/api/producer.md#producerprototyperun

from redis-smq.

weyoss avatar weyoss commented on July 18, 2024

Closing as resolved.

from redis-smq.

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.