Tagged Questions

Beanstalk is a simple, fast work queue.

learn more… | top users | synonyms

10
votes
1answer
2k views

PHP asynchronous processing with beanstalkd. Do you recommend it?

would you recommend using beanstalkd [ http://kr.github.com/beanstalkd/ ] for asynchronous processing in PHP ? I need some feedback/comments pros-cons, from anyone that has used this lib. Thanks,
9
votes
4answers
422 views

What do I use when a cron job isn't enough? (php)

I'm trying to figure out the most efficient way to running a pretty hefty PHP task thousands of times a day. It needs to make an IMAP connection to Gmail, loop over the emails, save this info to the ...
8
votes
3answers
2k views

delayed_jobs vs resque vs beanstalkd?

Here is my needs: Enqueue_in(10.hours, ... ) (DJ syntax is perfect.) Multiply workers, concurrently. (Resque or beanstalkd are good for this, but not DJ) Must handle push and pop of 100 jobs a ...
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 ...
7
votes
4answers
1k views

Message Queues Vs DB Table Queue via CRON

We have a large project coming up soon with quite a lot of media processing (Images, Video) as well email output etc, the sort of stuff normally we'd put into a table called "email_queue" and we use a ...
5
votes
2answers
1k views

Simple scalable work/message queue with delay

I need to set up a job/message queue with the option to set a delay for the task so that it's not picked up immediately by a free worker, but after a certain time (can vary from task to task). I ...
4
votes
1answer
572 views

how can i get a LIST OF ALL jobs in beanstalk tube?

i have beanstalk on my server telnet localhost 11300 use my_tube USING my_tube peek-ready FOUND 11065 41 {"ts":1295537419,"data":{"nid":"212156"}} now my question is: how can i get a list of all ...
3
votes
1answer
452 views

Pheanstalk Questions

I'm looking to run a persistent instance of a python interpreter that can be passed input. The entire system designed to do this will be written in PHP. I've noticed the Pheanstalk package for use ...
2
votes
2answers
94 views

beanstalkd - what happens to reserved, but not completed jobs?

I've created a PHP script that reads from beanstalkd and processes the jobs. No problems there. The last thing I've got to do is just write an init script for it, so it can run as a service. ...
2
votes
1answer
258 views

How to set up Beanstalkd with PHP

Recently I've been researching the use of Beanstalkd with PHP. I've learned quite a bit but have a few questions about the setup on a server, etc. Here is how I see it working: I install Beanstalkd ...
2
votes
1answer
1k views

zeroMQ vs node.js vs beanstalkd vs Twisted

I have the following requirements: Reliable messaging: ensured delivery, in-order, no-duplication Message filtering and routing based on customizable criteria Message multi-cast Message recipient ...
2
votes
1answer
127 views

ruby process when server is free

I want to run a Stalker job, only when the CPU load is less so that the site wont be affected. The job is to convert videos from any format to flv and mp4. so its a pretty expensive job. how can i ...
2
votes
2answers
352 views

Rails: Can I run backgrounds jobs in a different server?

Is it possible to host the application in one server and queue jobs in another server? Possible examples: Two different EC2 instances, one with the main server and the second with the queueing ...
2
votes
3answers
450 views

beanstalkd interface/GUI

Does anyone know of any interface to administer beanstalkd? What I'm looking for vaguely is something like PhpMyAdmin for MySQL. Doesn't have to be PHP or web-based, could be any interface, GUI ..etc ...
2
votes
2answers
362 views

Conditional Work Queue Insertion for beanstalkd?

I'm using the Perl client of beanstalkd. I need a simple way to not enqueue the same work twice. I need something that needs to basically wait until there are K elements, and then groups them ...
2
votes
4answers
1k views

Problems on select module on Python 2.5

I have an application in Python 2.5 that listens to a beanstalk queue. It works fine on all machines I tested so far, except from my newly acquired MacBook Pro. On that computer, when I try to run ...
1
vote
1answer
64 views

Best solution for running multiple intensive jobs at specific times

We have a web app that uses IMAP to conditionally insert messages into users' mailboxes at user-defined times. Each of these 'jobs' are stored in a MySQL DB with a timestamp for when the job should ...
1
vote
1answer
43 views

Java based task processing server

Looking for a base framework for a small, lightweight server that can efficiently pull jobs/messages off of something like beanstalk or SQS and process them. Octobot ...
1
vote
1answer
117 views

Beanstalkc Timeout Question

I am using beanstalkc in Python for a queuing process for a program which has to parse a list of URLs. Hence I am using timeout in beanstalk for avoiding huge time consumption by any URL. But even ...
1
vote
1answer
146 views

Beanstalkc Noob question

I have a function named "spider" which takes "seed" as an argument "seed" is basically the name of the url I send to spider function. Now my question is how do I use beanstalkc in python to queue the ...
1
vote
1answer
175 views

how to get priority of current job in beanstalkd?

telnet localhost 11300 USING foo put 0 100 120 5 hello INSERTED 1 now, how can i know what is the priority of this job when i reserve it? and can i release it by making the new priority equals to ...
1
vote
1answer
863 views

How to run multiple beanstalk worker using php

As of now, I am running only one beanstalk worker thread for my project, which handles both cron based jobs and real time jobs. So, I want to separate it out into two workers. One worker is used to ...
1
vote
2answers
215 views

Database Backed Work Queue

My situation ... I have a set of workers that are scheduled to run periodically, each at different intervals, and would like to find a good implementation to manage their execution. Example: Let's ...
1
vote
1answer
481 views

Using ffmpeg, PHP and beanstalk

I am very new to ffmpeg and beanstalk and I need a little help. I want to use beanstalk to queue files for ffmpeg to convert. I've downloaded, installed and started beanstalkd (also installed libevent ...
1
vote
2answers
146 views

How to test (Bean)Stalker using rspec?

I've this file called jobs.rb require File.expand_path("../environment", __FILE__) job "do.stuff" do |args| $value = 10 end Then I've this spec file called jobs_spec.rb require ...
1
vote
2answers
201 views

Catch beanstalkd DEADLINE_SOON event in php

I'm using Beanstalkd message queue for ffmpeg processing video in my project. I use pheanstalk PHP client for beanstalkd queue. My worker looks like: ... // get latest job $job = ...
1
vote
1answer
285 views

Output from beanstalkd

I want to monitor what jobs are flowing through a beanstalkd queue. Is there a way I can do this through command line. On running beanstalkd on command line no output is displayed. Essentially I am ...
1
vote
1answer
234 views

stalker beanstalkd, error with rails log file when loading rails env

config/workers.rb require File.expand_path("../config/environment", __FILE__) when I run stalk ./config/workers.rb I get the following (notorious) error: log/development.log Rails Error: ...
1
vote
2answers
467 views

node.js / ruby integration with beanstalkd

This is related to another question specific to payment processing, and that is my example use case, but I was considering trying to integrate node.js and ruby on the same server using beanstalkd. ...
1
vote
1answer
109 views

beanstalkd has a limit on tubename?

I was trying to add this tubename to beanstalkd "video_convert_and_snap". it gives me an error that this is an invalid tubename. Any idea, why?
1
vote
4answers
548 views

How can I secure memcached/beanstalkd in a hostile cloud environment?

Here's how my servers (in Amazon EC2) would look like: Server 1 Server 2 Server 3 __________________________ _____________________ ...
1
vote
1answer
230 views

beanstalkd weirdness, returns invalid jobs

beanstalkd is playing tricks on me. As you can see from the following series of commands, there are ready jobs, but I cant peek, delete, or do anything with them. watch ab_similar_sync_node WATCHING ...
1
vote
3answers
253 views

BeanStalkd on Solaris doesnt return anything when called from the python library

i am using Solaris 10 OS(x86). i installed beanstalkd and it starts fine by using command "beanstalkd -d -l hostip -p 11300". i have Python 2.4.4 on my system i installed YAML and beanstalkc python ...
1
vote
3answers
1k views

Connecting http request/response model with asynchronous queue

What's a good way to connect the synchronous http request/response model with an asynchronous queue based model? When the user's HTTP request comes it generates a work request that goes onto a queue ...
0
votes
0answers
22 views

Ruby Jobs with Beanstalkd and Stalker - Nonrecurring & Specific Times

Right now I am using Beanstalkd/Stalker & Clockwork(to key recurring jobs) to process background jobs in my ruby web app. I have some new jobs that are very time specific (down to the exact ...
0
votes
2answers
109 views

Is it ok to use PHP-FPM to manage queue consumers?

There's a beanstalkd queue, which gets filled with a lot of tasks say every 10 minutes and it is top priority that each task is processed ASAP. Task can take more that a few milliseconds to complete ...
0
votes
1answer
76 views

How to access beanstalk queue on multiple web servers

I have installed beanstalk on one server.we have multiple production servers on which we want to use beanstalk. Currently only 1 web server has access to beanstalkd. How to configure or use ...
0
votes
1answer
39 views

Detect which worker returned a TTR-expired job to the queue?

I have multiple workers processing requests in a beanstalkd queue using beanstalk-client-ruby. For testing purposes, the workers randomly dive into an infinite loop after picking up a job from the ...
0
votes
1answer
138 views

Beanstalk vs DB

I am writing a db logging ruby gem which will simply take out a job from a Beanstalk queue and write it in the DB. That is one process on Server A puts a job (that it wants to log) in the Beanstalk ...
0
votes
0answers
51 views

Testing the mails pushed to stalker and beanstalk

I used email-spec for testing my mails. Email-spec enqueues the mails in a stack and does not deliver the mails in the test environment. All my test were working fine. I used stalker to send the mails ...
0
votes
1answer
111 views

Stalker Timeout - How do I change the timeout settings?

I have some jobs that run longer than 119 seconds during peak times and I keep getting the stalker error below when it does. I am using stalker, beanstalkd and clockwork for my background processing. ...
0
votes
0answers
247 views

I'm putting jobs into a beanstalk queue, but watch and reserve not working

I'm using Beanstalkd via the PHP API (pheanstalk). When I put jobs into the queue, everything seems fine, but I can't seem to be able to retrieve the jobs at the worker end. After I set it up; it ...
0
votes
1answer
164 views

How can I monitor a PHP script with BluePill?

I've created a Beanstalkd worker script (using Pheanstalk library) to handle the thumb nailing of images when uploaded and wanted to implement BluePill to monitor/daemonize the worker script but the ...
0
votes
0answers
103 views

rails mysql update sequence not saving?

I've got a mysql database with Rails 3.0.3 and a model that uses paperclip. A background process powered by beanstalkd/stalker works the request. I have a processing boolean that I turn to false at ...
0
votes
1answer
75 views

What are some beanstalkd libraries for Ruby on Rails?

One of them is Stalker, but I heard there are other good ones. Anyone know the other beanstalk libraries?
0
votes
1answer
164 views

beanstalkd storage backend

I would like to know if thers any db storage for beanstalkd queue system http://kr.github.com/beanstalkd/ My primany intention is to analyse the job status , completed or dumped or in process or ...
0
votes
3answers
463 views

Running stalker (Ruby gem) as a daemon

Is it possible to run the Ruby gem stalker as a daemon? Something like as stalk jobs.rb -d. Should I just use stalk jobs.rb &?
0
votes
1answer
141 views
0
votes
1answer
255 views

Use beanstalkd, for periodic tasks, how to always make a job replaced by its latest one?

I am trying to use beanstalk for queuing a large number of periodic tasks (for example, tasks need processed every N minutes), for each task, if the last queued job is not completed (not reserved, i ...
0
votes
1answer
211 views

beanstalkd c client library

We are going to implement a fairly complex new service in an asynchronous way, introducing asynchronous processing as well. For this, we have selected beanstalkd message queue service, as it fits best ...

1 2