Coder Social home page Coder Social logo

Comments (4)

merlimat avatar merlimat commented on July 19, 2024

The PartitionedConsumerImpl uses a specific internal executor to handle that. See at :

https://github.com/yahoo/pulsar/blob/master/pulsar-client/src/main/java/com/yahoo/pulsar/client/impl/PartitionedConsumerImpl.java#L47

The individual ConsumerImpl instances inside the PartitionedConsumerImpl will use that internalListenerExecutor to push messages into the common queue. If the application stops calling receive(), the common queue will get full and that will block the internal listener thread, but that will not block the IO threads, since they will just enqueue on the individual queues (which don't have size limit) and move on.

from pulsar.

sschepens avatar sschepens commented on July 19, 2024

Yes, I realize it will not block IO threads, but it will block other PartitionedConsumerImpl that are using the same internalListenerExecutor, a Client creates an internalListenerExecutor of size 1 by default, but even increasing the size is not a really good solution. If we intend on creating many consumers, it's not a good solution to have 1 thread per consumer, it doesn't scale.
It would be great if PartitionedConsumerImpl could be a little more smart about handling messages, but this would probably need more communication between PartitionedConsumerImpl and its internal ConsumerImpl than we currently have. For example, ConsumerImpl could try and add a message to PartitionedConsumerImpl if it doesn't succeed then it could just remain in the queue, then, PartitionedConsumerImpl could somehow notifying it's internal consumers that it has space so they pop messages from their queues.

from pulsar.

merlimat avatar merlimat commented on July 19, 2024

OK, that is a good point.

The key part is to leave the messages in the single topics queues, so that we can stop the broker from pushing more messages. If that can be done without recurring to blocking the intermediate listener thread, that would be great.

from pulsar.

merlimat avatar merlimat commented on July 19, 2024

Fixed by #106

from pulsar.

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.