GithubHelp home page GithubHelp logo

Comments (6)

jnunemaker avatar jnunemaker commented on July 28, 2024

Correct me if I'm wrong, but wouldn't that limit the number of workers to one per queue or cursor? Also, there would need to be some work involved to make sure you didn't lose any jobs if the cursor closed I'm thinking.

On Thursday, November 3, 2011 at 1:39 PM, Greg Weber wrote:

  • [http://www.captaincodeman.com/2011/05/28/simple-service-bus-message-queue-mongodb/](C# demonstration code)
  • [https://gist.github.com/665978](Ruby tailable cursor code).

Reply to this email directly or view it on GitHub:
#33

from qu.

gregwebs avatar gregwebs commented on July 28, 2024

Yes, you will still need to modify members of the collection to mark them
as finished so you know how to recover. This could be done by unsetting a
created_at field. You probably do only want to have one tailing cursor, but
that process could broker the queue to any number of consumers.
.
On Thu, Nov 3, 2011 at 11:42 AM, John Nunemaker <
[email protected]>wrote:

Correct me if I'm wrong, but wouldn't that limit the number of workers to
one per queue or cursor? Also, there would need to be some work involved to
make sure you didn't lose any jobs if the cursor closed I'm thinking.

On Thursday, November 3, 2011 at 1:39 PM, Greg Weber wrote:

  • [
    http://www.captaincodeman.com/2011/05/28/simple-service-bus-message-queue-mongodb/](C#demonstration code)
  • [https://gist.github.com/665978](Ruby tailable cursor code).

Reply to this email directly or view it on GitHub:
#33


Reply to this email directly or view it on GitHub:
#33 (comment)

from qu.

bkeepers avatar bkeepers commented on July 28, 2024

That's a really interesting idea. It would be great if you could use a tailable cursor with the findAndModify command.

Any idea how we could do this without creating contention between workers?

from qu.

gregwebs avatar gregwebs commented on July 28, 2024

You still have to use findAndModify to flag a document as finished
processing. Using the broker technique means only the broker accesses the
database, so there is no database contention between workers and the broker
can also supervise workers.

Other articles on this approach:

  • a benchmark demonstrating very good performance [1]
  • others using findAndModify instead of RabbitMQ [2]
  • a Lift chat app using tailable cursors [3]

[1] http://www.shtylman.com/archives/217
[2] http://blog.boxedice.com/2011/09/28/replacing-rabbitmq-with-mongodb/
[3] http://amoss.me/lift-chat-with-mongodb-tailable-cursors

On Thu, Nov 3, 2011 at 1:38 PM, Brandon Keepers <
[email protected]>wrote:

That's a really interesting idea. It would be great if you could use a
tailable cursor with the findAndModify command.

Any idea how we could do this without creating contention between workers?


Reply to this email directly or view it on GitHub:
#33 (comment)

from qu.

mattparlane avatar mattparlane commented on July 28, 2024

Hi all... I thought I'd drop by to say I've logged a feature request to have findAndModify return tailable cursors:

https://jira.mongodb.org/browse/SERVER-11753

This would allow blocking reads instead of polling (via tailable cursors), plus the guarantee that only one consumer would get any given job (via findAndModify). Please vote for it if you're interested in this functionality.

from qu.

jnunemaker avatar jnunemaker commented on July 28, 2024

If anyone wants to tackle this feel free to create a new backend like tailable_mongo or something.

from qu.

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.