Tagged Questions
2
votes
1answer
33 views
Need a thread-safe asynchronous message queue
I'm looking for a Python class (preferably part of the standard language, rather than a 3rd party library) to manage asynchronous 'broadcast style' messaging.
I will have one thread which puts ...
0
votes
0answers
31 views
Order of Beanstalkd jobs
I have a beanstalkd jobs with only one worker.
First question: Are the jobs processed in the same order as they are puted in the tube?
Second: if I'll use multiple workers, how can I manage ...
0
votes
0answers
28 views
Communication bridge between different users
I need to create some "queue system" (sorry, don't actually know how to call this). The idea is
User A have one process up and running
User B need to send a queue to the A's process, to instruct it ...
1
vote
0answers
42 views
Can a worker send a message back to the producer
I have a NodeJS application with the following situation: I receive a request from a user to calculate something that requires using a very complex mathematical formula. Currently, I run this entire ...
0
votes
1answer
63 views
Is it a bad idea to use an event queue for cron-like purposes?
To give a little more context, I've got a stateful application where tasks have the following state machine:
The states are served and unserved
The starting state is unserved.
The transition table ...
1
vote
0answers
86 views
iron.io like services with HTTP API [closed]
I'm feeling iron.io's queuing/processing/datastore menage.
Just wanted to know if anyone has found any comparable or better cloud based queuing processing services that are worth test driving.
I'm ...
-1
votes
1answer
170 views
Consuming messages from remote ActiveMq queue
How do I use Apache-camel's activemq component to connect to a remote Queue hosted on ActiveMq ????
0
votes
0answers
82 views
How to balance queues in Rabbitmq?
Producer creates a large workload and workload is split up and sent to multiple queues. Each queue has local workers that process the jobs. Because work might be done sooner for some queues, is there ...
0
votes
1answer
12 views
Independent ordered queues for job that is process exactly same way
I am looking for a queuing tool to help me process jobs in order. I will use an example of user joining a website to help convey the problem, in real life they are more dull jobs which can each take ...
0
votes
0answers
67 views
secure disk-based queue?
I'm looking at polyglot web server & queue implementations, ala Mongrel2 (based on ZeroMQ), gWan or resorting to direct queue mechanisms like RabbitMQ, ZeroMQ, etc.
One method we'd used (ages ago ...
4
votes
1answer
199 views
Akka: Adding a delay to a durable mailbox
I am wondering if there is some way to delay an akka message from processing?
My use case: For every request I have, I have a small amount of work that I need to do and then I need to additional ...
0
votes
1answer
139 views
Manage downloading queue in android
How to make a queue for downloading large images...
I used Service for that. The queue is also dynamic. If user starts downloading for 3 images, I start my service for downloading 3 images. but user ...
0
votes
1answer
97 views
Distributed rate limiting
I have multiple servers/workers going through a task queue doing API requests. (Django with Memcached and Celery for the queue) The API requests are limited to 10 requests a second. How can I rate ...
0
votes
1answer
53 views
Is there a durable queue library for the JVM?
I'm looking for the functionality of a BlockingQueue that queues to disk instead of memory. I'd rather avoid a heavyweight solution (e.g. JMS). Ideally the queue should run in the same process as the ...
1
vote
1answer
221 views
Where to initialize MassTransit in an Asp.Net MVC 4 application?
I have a simple solution with 3 projects:
Asp.Net MVC4 Web app - the main website
Console App - task runner
Console App - task runner
I wish to use MassTrasnsit to serve as a queue so that actions ...