Tagged Questions
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
423 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 ...
3
votes
1answer
456 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
97 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
264 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 ...
1
vote
0answers
19 views
Is there a Zend_Queue_Adapter_Beanstalkd?
Before going to write my own Adapter I am looking for an existing Zend_Queue Adapter that supports beanstalkd.
Is there a Open Source Adapter/Implementation somewhere for Beanstalkd in the Zend ...
1
vote
1answer
66 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
875 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
1answer
486 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
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 ...
0
votes
2answers
112 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
77 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
0answers
248 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
167 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
2answers
916 views
Checking the status of my PHP beanstalkd background processes
I have a website written in PHP (CakePHP) where certain resource intensive tasks are handled by a background process. This is done through the Beanstalkd message queue. I need some way to retrieve the ...