Giter VIP home page Giter VIP logo

Comments (8)

elephantum avatar elephantum commented on July 26, 2024

As far as I understand reading None is not an issue at twitter. AFAIK: they have some (3, I guess) kestrel servers and a lot more workers. Each worker does the following: choose random server, read message, process message, repeat (may be chosen server is used for several iterations since operation like /close/open exists).

Anyway workers outnumber servers and choose server at random, so, eventually, each server would be read without any complicated logic.

from kestrel.

Suhail avatar Suhail commented on July 26, 2024

I resolved it to the following:

  • Connect to random queue
  • Read item
  • Continue to read items until queue hits 0, if it hits 0 connect to a NEW queue via round robin.

When all queues are zero, it will simply just bounce between them (which is kind of shitty) so I set a higher /t=/open

from kestrel.

robey avatar robey commented on July 26, 2024

both of those sound fine. we pick servers at random, and if the queue is empty, sleep for a while (exponential backoff) and then try another.

jkalucki has been experimenting with a much more aggressive client in the "grabby-hands" project.

from kestrel.

ebarlas avatar ebarlas commented on July 26, 2024

Would it make sense to select a kestrel server based on the hash of a queue name? It seems to me that would be most efficient, though you may end up with small queues on some kestrel servers and large queues on others.

from kestrel.

robey avatar robey commented on July 26, 2024

having a queue exist on only one (or even a subset) of the kestrels in a cluster would defeat the purpose of having the cluster, though.

from kestrel.

ebarlas avatar ebarlas commented on July 26, 2024

It's been a year since this thread was active. Any news on ways to distribute kestrel? Preferred or best client policies?

from kestrel.

robey avatar robey commented on July 26, 2024

we still generally have clients pick a server at random in ruby, using kestrel-client (https://github.com/twitter/kestrel-client). in java/scala, we have most clients connect to every server at once and launch a timeout-get on each one to minimize latency. those use grabby-hands (https://github.com/jkalucki/grabby-hands).

is that what you meant?

from kestrel.

ebarlas avatar ebarlas commented on July 26, 2024

Yeah, that's exactly what I was wondering. I will look into those clients.

from kestrel.

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.