Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
2k views

Best way to use a DB table as a message/job queue

I have a databases table with ~50K rows in it, each row represents a job that need to be done. I have a program that extracts a job from the DB, does the job and puts the result back in the db. (this ...
8
votes
1answer
1k views

Stats/Monitor/Inspector for beanstalkd

Does anyone know of an app that can monitor a beanstalkd queue? I'm looking for something that shows stats on tubes and jobs, and allows you to inspect the details. I'm not really picky about ...
6
votes
2answers
260 views

Method for self-rearranging job queue

I have a job queue (using Amazon SQS) which hands off jobs to many machines for fetching and processing various documents over HTTP. There are hundreds of different hosts which are accessed, and there ...
6
votes
9answers
3k views

job queue implementation for python

Do you know/use any distributed job queue for python? Can you share links or tools
5
votes
3answers
598 views

How should I best structure my web application using job queues [and Perl/Catalyst]?

I'm writing a web application using the Catalyst framework. I'm also using a Job Queue called TheSchwartz. I'm wanting to use a job queue because I'm wanting as much of the application specific code ...
5
votes
9answers
580 views

Queueing solutions for ASP.NET MVC

I looking into the concept of queueing for web apps (i.e. putting some types of job in a queue for completion by a seperate worker, rather than being completed in the web request cycle). I would like ...
4
votes
3answers
1k views

how to manage and queue background jobs

A web app that launches cpu intensive background jobs in the background whenever users call it. example: youtube.com. people upload videos, it gets converted in background job. how can you deal with ...
4
votes
5answers
911 views

What's the best way to build a queue for long-running jobs in a Grails app?

I have a Grails app that has some computationally intensive optimizations with a running time of ~5 minutes (perhaps more). Currently, I'm doing these in the main request thread, i.e. it takes 5 ...
4
votes
5answers
2k views

What's the best way of implementing a messaging queue table in mysql

It's probably the tenth time I'm implementing something like this, and I've never been 100% happy about solutions I came up with. The reason using mysql table instead of a "proper" messaging system ...
3
votes
2answers
356 views

Job queue in node.js

I'm looking for a job queue manager in node.js which can be invoked by php. This is for a web application which needs to send emails, create pdf files and so on which I'd like to perform asynchronous ...
3
votes
1answer
157 views

What Constitutes a Retry in the Job Queue?

I originally posted this question over at the Zend Forums but figured it would also be wise to post here. What has to happen, exactly, for a job to retry? I've tried timeouts, 50x response codes, and ...
3
votes
6answers
355 views

async execution of tasks for a web application

A web application I am developing needs to perform tasks that are too long to be executed during the http request/response cycle. Typically, the user will perform the request, the server will take ...
2
votes
2answers
359 views

C# Job Queue Implementation with delayed event notification

I'm looking for an existing job-queue implementation in .Net (3.5) and I was wondering if anyone has suggestions for a good one. I assume that no job queue will be able to do exactly what we want, so ...
1
vote
1answer
62 views

gearman and retrying workers with unreliable external dependencies

I'm using gearman to queue a variety of different jobs, some which can always be serviced immediately, and some which can "fail", because they require an unreliable external service. (For example, ...
1
vote
2answers
198 views

Any job queue systems that allow scheduling jobs by date?

I have a Django application. One of my models looks like this: class MyModel(models.Model): def house_cleaning(self): // cleaning up data of the model instance Every time when I update an ...
0
votes
1answer
86 views

Can multiple gearman servers share the same libdrizzle queue?

Can multiple gearman servers share the same gearman queue, via libdrizzle? I'm wondering if this will eliminate the gearman server as a single point of failure--if I have multiple web nodes, each ...
0
votes
0answers
73 views

Question about Job Queue management for PHP developer new to using worker processes

I'm attempting to create my first load-balanced PHP application that makes use of worker processes/servers. I use cloudcontrol for my hosting since they provide the convenience of a managed server ...
0
votes
1answer
311 views

C# .NET workload processing a'la job queue processing examples ideas?

As part of my constant learning curve into what you can do to make apps scale better, I am currently trying to get a direction to go with queuing, i.e. job queuing or workload processing whichever ...
0
votes
1answer
324 views

Postbone Job Queue with Gearman

I want to extract some of the time consuming things into a queue. For this I found Gearman to be the most used but don't know if it is the right thing for me. One of the tasks we want to do is queue ...
0
votes
1answer
111 views

Have any good links/articles on job queuing & db sharding?

Does anyone have good links on how/when/why to use job queuing to scale web apps? Also, articles on db sharding would be useful too :)