Questions tagged [beanstalkd]

Beanstalkd is a simple, fast work queue.

Beanstalkd is a simple, fast work queue.

Its interface is generic, but was originally designed for reducing the latency of page views in high-volume web applications by running time-consuming tasks asynchronously.

401 questions
3
votes
1 answer

Beanstalkd bind address being ignored

I am having trouble getting Beanstalkd to bind to right address. I am running Debian 8. Installed beanstalkd using apt. If I run service beanstalkd start the bind goes wrong. I am unable to connect using private network address. I also have this…
Firze
  • 3,939
  • 6
  • 48
  • 61
3
votes
0 answers

Laravel queue external server

I have the following servers configured: App Server is running LAMP with Laravel 5.1 Queue Server is running Beanstalkd and Supervisord I want to be able to send jobs in Laravel on the App Server to the Queue Server which will simply run a DB…
Bill Riess
  • 334
  • 1
  • 3
  • 10
3
votes
1 answer

How to push back a job to the last of the queue in Laravel Beanstalk?

How can I push a job back into the queue. I tired $job->release() but it is pushing back on to the queue so the next job in the queue is that same job, I want the job send back to the last of the queue,which executes last. How can I do that?
AH.
  • 741
  • 1
  • 12
  • 27
3
votes
2 answers

How to profile a PHP shell script app or worker using Blackfire

I noticed that when I have an endless worker I cannot profile PHP shell scripts. Because when it's killed it doesn't send the probe. What changes shall I do?
Pentium10
  • 204,586
  • 122
  • 423
  • 502
3
votes
1 answer

Setup Remote beanstalkd Laravel 4.2

My stack set-up consists of the following: www.main.com - Main Server (Main Application code & supervisord) www.queue-server.com - Beanstalkd installed here (No code here only beanstalkd) I'm using Laravel 4.2. I have setup Supervisord on…
Ravikumar Sharma
  • 3,678
  • 5
  • 36
  • 59
3
votes
3 answers

Laravel queue retries delay

I am building a large application using Laravel and find the use of queue in this application. I am now using beanstalkd service for this. However, I am stuck in finding an answer for this set up. Is there a way to put the queue retries be processed…
jellyfication
  • 170
  • 2
  • 12
3
votes
1 answer

Why is the job failing in Beanstalkd queue - Laravel 4.2

I have "randomly" some jobs failing in my beanstalked queue. Two questions: 1/ By looking at the failed job table in the DB how can I interprate what is logged inside? The Data closure means "nothing" when reading it raw. Is there something to do…
commandantp
  • 947
  • 1
  • 12
  • 25
3
votes
0 answers

Beanstalkd doesn't write logs

I am running beanstalkd on ubuntu 14.04 My question is that I don't see any logs from this service at all. Of course I have made entries in defaults, as well as I tried to change init.d script. But it seems beanstalk doesn't make any logging at all…
Jevgeni Smirnov
  • 3,787
  • 5
  • 33
  • 50
3
votes
1 answer

Running beanstalkd worker on a remote server

My stack set-up consists of the following Machine1 - Main Server (Running laravel) Machine2 - MySql Server for the laravel codebase Machine3 - Beanstalkd worker I have setup Supervisord on Machine1 and added the following queue…
dylanfa88
  • 65
  • 3
  • 9
3
votes
2 answers

How to load Pheanstalk in PHP?

I'm trying to get Pheanstalk working for PHP but I can't load it. I downloaded the source code from https://github.com/pda/pheanstalk, I moved src/Pheanstalk to my project directory, and then did the following in test.php: use…
bodacydo
  • 75,521
  • 93
  • 229
  • 319
3
votes
0 answers

Doctrine's persisted data is NOT accessible by other queries immediately

I am using the beanstalkd task queue in order to postpone some heavy Doctrine operations, but this can be reproduced in any other similar system like RabbitMQ, etc. Client (producer) side $entityManager =…
Vlad
  • 655
  • 6
  • 12
3
votes
1 answer

Read-only queue for distributed event throttling?

I'm looking for a way of throttling various processes on a cluster-wide basis. This requires some kind of centralised control that can cope with an arbitrary number of event consumers. The thought that I had involves a read-only queue that generates…
Synchro
  • 35,538
  • 15
  • 81
  • 104
3
votes
0 answers

Node.js + Beanstalkd (Nodestalker) ECONNRESET

I've been working on a large, multi-server Node.js deployment. The tech stack: Server 1 (Ubuntu 12.04): Node.js API Server (Express app, used for input) Node.js Push Server (100 workers, used to send out results) Redis Beanstalkd Server 2-4…
Swoop
  • 31
  • 2
3
votes
2 answers

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 together. To accomplish this, I have the…
Timmy
  • 12,468
  • 20
  • 77
  • 107
3
votes
1 answer

How to use Models in a Laravel Queue

I'm trying to import a mailing list from CSV to my DATABASE. I have two models in my Laravel which is responsible for doing this: Target and Mailing (one Target has many Mailings) I'm using Queue system with Beanstalkd. I'm…
Rodrigo Souza
  • 7,162
  • 12
  • 41
  • 72