beanstalkd Questions

1

I have installed beanstalkd using homebrew but am unable to increase the maximum job size. This is normally done by passing the -z argument as "-z byte_size" All attempts to edit the formula for ...
Highpitched asked 26/1, 2017 at 18:28

8

Solved

I have added some jobs to a queue in Laravel. However, I forgot to put $job->delete() in the function and there is an error in my function. This means the job is never ending. It keeps going bei...
Eulaeulachon asked 10/12, 2013 at 15:32

2

Solved

I'm working on beantalkd and supervisord for my Laravel project with homestead vm. Everytime i vagrant up the homestead vm, the supervisord does not start. I have to manually type below for it to r...
Peregrine asked 12/9, 2015 at 10:50

8

Solved

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 lan...
Troth asked 17/2, 2010 at 18:38

2

Solved

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?
Consistent asked 4/6, 2015 at 13:49

2

Solved

Is there much difference between using Beanstalkd and a database driver for queues? What would some pros and cons be? The database queue seems to easier to setup and run, what should I know about...
Jeannettejeannie asked 28/6, 2015 at 4:43

3

Solved

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. Howe...
Orchardman asked 8/11, 2011 at 12:15

0

I am trying to set up an API which uses a queue system on another server to handle the requests. Let me start what I am trying to accomplish without the queue system (no authorization to keep it si...
Suchlike asked 8/5, 2017 at 10:29

1

I am trying to set up an API system that synchronously communicates with a number of workers in Laravel. I use Laravel 5.4 and, if possible, would like to use its functionality whenever possible wi...
Dorian asked 22/3, 2017 at 15:11

2

Solved

I am having a weird issue while throwing the exception inside my beanstalkd job class. When I throw a simple exception (throw new \Exception();) outside the job class, it calls the report() method ...
Arv asked 7/6, 2016 at 18:28

6

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, ...
Delvecchio asked 15/6, 2010 at 11:37

1

Solved

I am trying to implement my own beanstalkd client as a way of learning go. https://github.com/kr/beanstalkd/blob/master/doc/protocol.txt At the moment, I am using bufio to read in a line of data d...
Koel asked 30/5, 2016 at 16:47

1

Solved

The following code is a snipet taken from an example of pheanstalk being implemented and working properly (obtained from pheanstalk's github page: https://github.com/pda/pheanstalk): <?php req...
Dunaway asked 22/5, 2016 at 4:52

4

I'm trying to get beanstalk up and running and I'm getting the exception when trying to run Queue::push(): Class 'Pheanstalk_Pheanstalk' not found I've run composer require pda/pheanstalk, and e...
Contain asked 19/6, 2014 at 16:33

1

Solved

I have Ubuntu running XAMPP (the lamp stack: Linux, Apache, MySQL, PHP, Pear). I would like to use PHP and Beanstalkd together to make a simple queue that when a user goes on page1.php, a JOB is se...
Pout asked 20/5, 2016 at 21:55

2

Solved

I was trying to record some data from other table when the jobs fails. It works great in failed jobs table but I cant get the Queue::failing(function($connection, $job, $data) to work every time th...
Dingman asked 25/9, 2014 at 4:17

2

I have a simple web application that is written with the Laravel 4.2 framework. I have configured the Laravel queue component to add new queue items to a locally running beastalkd server. Essentia...
Generous asked 10/11, 2014 at 1:6

1

Solved

I'm running a Laravel queue job called "webhooks" using beanstalkd and supervisord on my Ubuntu server. I can see the job properly running with process ID 4403: webhooks RUNNING pid 4403, uptime 4...
Workingwoman asked 1/6, 2015 at 12:30

1

Solved

I'm using beanstalkd to managed queues. I just realised that if there are jobs in a queue and the beanstalkd process is restarted or crashes then the job is lost forever (or so I think). Is there ...
Atchison asked 27/5, 2015 at 17:54

2

Solved

Hello fellow programmers, I wish everyone a good morning. The Situation Laravel is great. Laravel Mail queues and the beanstalkd integration is great. It took me almost no time to get everything ...
Elsie asked 4/5, 2015 at 8:1

2

Solved

I'm pretty new to the whole Queue'd jobs thing in Laravel 4. I have some process heavy tasks I need the site to run in the background after being fired by the user doing a particular action. When ...
Manganese asked 1/7, 2013 at 14:48

0

I use a remote server to process beanstalkd queues that I would like to use on my application running on Heroku. Is there any way to run Supervisor to monitor that the queue command (Laravel: php a...
Tuttle asked 9/10, 2014 at 11:32

3

I have set up queues in Laravel for my processing scripts. I am using beanstalkd and supervisord. There are 6 different tubes for different types of processing. The issue is that for each tube, ar...
Dinh asked 3/6, 2013 at 13:32

4

Solved

I have a god script that is supposed to keep an eye on two stalker processes. The problem is that after 24h it starts way too many processes. This is the god script. rails_root = File.expand_path...
Seraphic asked 24/10, 2012 at 22:42

1

Solved

I have set my config to use my local beanstalkd server: 'beanstalkd' => array( 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', ) How do I push jobs to anoth...
Mahayana asked 4/7, 2013 at 21:22

© 2022 - 2024 — McMap. All rights reserved.