The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
21 views

MSMQ as a job queue

I am trying to implement job queue with MSMQ to save up some time on me implementing it in SQL. After reading around I realized MSMQ might not offer what I am after. Could you please advice me if my ...
0
votes
1answer
78 views

Zend Framework ZEND_QUEUE implementation

I am new to ZEND and I am working on the version (ZEND 1.11.1) I am trying to implement the ZEND_QUEUE in my zend application and there is no proper tutorial for me. All through I am trying to ...
0
votes
1answer
41 views

Designing a job queuing system where only one job per user can be processed by workers any given time

I've a single job queue with multiple workers watching this queue. (each job corresponds to a single user). There might be multiple jobs per user in the queue at any given time. I do not want my ...
1
vote
0answers
24 views

How a job queueing software works

I have a small website where and i am allowing people to sign up for accounts.I want after someone has signed up,he/she is sent a welcome email and a confirmation email.I want to attempt to do this ...
1
vote
0answers
38 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 ...
2
votes
0answers
117 views

How to process scheduled, recurring jobs with Kue?

In my webapp, users can create recurring invoices that need to be generated and sent out at certain dates each month. For example, an invoice might need to be sent out on the 5th of every month. I am ...
0
votes
3answers
155 views

Distributed failsafe jobqeues for JVM

I need to implement a job queue for a distributed JVM application. The queue(s) must hold a group of jobs (i.e. Java runnables) that have to be executed in sequential order. There will be hundreds of ...
0
votes
1answer
61 views

Is there a job queue system that allows tasks to be dependent on other tasks?

For example, I'm working on a deployment app. Let's say we deploy 4 branches from SVN, that requires 4 svn export from subversion. This may take a while depending on the branch we check out so I was ...
0
votes
0answers
35 views

Ideas on frameworks in .NET that can be used for job processing and notifications

Scenario: We have one instance of WCF windows service which exposes contracts like: AddNewJob(Job job), GetJobs(JobQuery query) etc. This service is consumed by 70-100 instances of client which is ...
0
votes
0answers
81 views

Failed to use multiprocessing.joinableQueue, PicklingError

I have a Class which run other modules as process using the following method: def RunTest(self, testName, argsTuple): test = self.__importTest(testName) self.tests[testName] = {} ...
5
votes
0answers
156 views

Job queue manager with RPC interface

I need a job queue manager that I can control over the Internet. It should be able to execute and stop processes, check on their status (ideally notice and execute some code when a process exits), ...
0
votes
0answers
28 views

Transaction in Rescheduling job

My job queue is circular job queue. As soon as job is completed I am rescheduling the job. I am using unique ID to avoid duplication of the job in the queue. So how it works ? Worker will send ...
0
votes
0answers
20 views

Relationship b/w job and worker

My Job Queue description is: There are n circular job in queue. When a job is scheduled it creates a persistence connection with server (We can assume it as IMAP connection as all problem arrives ...
1
vote
0answers
65 views

Http xmpp multithread process

I am using a python library called sleekxmpp to imeplement xmpp protocol. Actually, the whole process is, a client send a http request to me, then I need to send xmpp messages to other clients through ...
1
vote
2answers
77 views

Is it good to have job details in the job queue table itself or have the details in a separate table?

I am currently designing a module where a service or console application will be reading Job from a JobQueue table. I have designed the JobQueue table with the following info in it: JobId: int ...
13
votes
0answers
1k views

Resque vs. Sidekiq [closed]

I'm working on a project with a friend where we've been using Resque for processing various commands from data input inside our rails application on a minute to minute basis. We've been messing ...
0
votes
1answer
97 views

How to retrieve the list of scheduled jobs in a job queue?

I am assigned with a task to check if a job is currently present in a job queue as scheduled job. The matching criteria is the name of the job - as long as the job name matches the specified one then ...
1
vote
1answer
328 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, ...
2
votes
1answer
445 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
1answer
353 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 ...
5
votes
2answers
2k 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 ...
2
votes
2answers
1k 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 ...
6
votes
2answers
370 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 ...
0
votes
1answer
472 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
657 views

Postpone 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 ...
3
votes
1answer
224 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 ...
1
vote
2answers
392 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 ...
13
votes
4answers
3k 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 ...
5
votes
3answers
4k views

how to manage and queue background jobs [closed]

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 ...
3
votes
7answers
513 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 ...
5
votes
3answers
846 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
990 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 ...
13
votes
9answers
8k views

job queue implementation for python

Do you know/use any distributed job queue for python? Can you share links or tools
5
votes
6answers
2k 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 ...
0
votes
1answer
159 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 :)
5
votes
5answers
4k 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 ...
11
votes
4answers
3k 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 ...