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
0
votes
1 answer

beanstalkd + pheanstalk rush condition

I have beanstalkd setup. I'm using the pheanstalk php library for adding jobs and for my workers. Adding jobs is working correctly and I am logging the job id's in my database for later reference. No job id's are being skipped IE: they go in there…
hcker2000
  • 603
  • 1
  • 6
  • 30
0
votes
1 answer

Unable to start beanstalkd after the installation

After the installation of beanstalkd on my ubuntu 13.04 I run "beanstalkd -l 127.0.0.1 -p 11300" command to start it CLI returned: beanstalkd: net.c:119 in make_server_socket: bind(): Address already in use beanstalkd: main.c:64 in main:…
0
votes
1 answer

Laravel 4 - how to use the package class as a queue worker

I have built my first Laravel 4 package. I have used artisan to create the structure. I need to use the package to process a queue (as the worker). I am using the builtin Beanstalk queue and have it configured and I am able to add to the queue. What…
Dave
  • 21
  • 1
  • 5
0
votes
1 answer

Beanstalkd server unavailable issue?

I'm wanting to use beanstalkd with Laravel 4, so I can queue my mail for sending. I noticed that laravel 4 has beanstalkd ready to roll out of the box (with a few config settings to set). My issue if with using a GUI to monitor beanstalkd. I've…
JasonMortonNZ
  • 3,752
  • 8
  • 34
  • 56
0
votes
1 answer

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 workers to process more than 1 job per user at any…
Nands
  • 1,541
  • 2
  • 20
  • 33
0
votes
1 answer

Identifying and differentiating among workers when using Backburner for Beanstalkd

I'm trying to use Backburner (a Ruby client for Beanstalkd) in my application to create, say, 50 workers all watching the same tube for incoming jobs. The problem is, each of those 50 workers, when performing a job, does some heavy file…
Vicky Chijwani
  • 10,191
  • 6
  • 56
  • 79
0
votes
1 answer

beanstalkd: unknown flag: -d

I have installed beanstalkd using sudo apt-get install beanstalkd which installed beanstalkd version 1.7 now to start the beanstalkd process I am using the command sudo beanstalkd -d -l 127.0.0.1 -p 11300 -z 1000000 I am getting a response…
Ashish
  • 271
  • 2
  • 15
0
votes
1 answer

When using Backburner for beanstalk how do I start workers while in development?

I've read though the Backburner Tutorial but it kind of glosses over what workers are exactly, and it seems as though god is used for production environments, but all the other examples just show Backburner.work being used, which doesn't process…
0
votes
1 answer

Stalker vs. Beaneater for Beanstalkd

I'm currently using Stalker for my rails app. But I just ran into Stalker's timeout error/limit of 2 minutes. I saw another question on the subject, and someone answered that Stalker doesn't implement beanstalkd's touch method, though I see that…
0
votes
2 answers

Stalker/beanstalk process jobs asynchronously

Ok I'm doing some testing with Stalker and Beanstalkd. My objective is to offload 500kb post requests to queue and process them asynchronously. So far in my testing I have this very simple example. #worker.rb require 'stalker' include Stalker job…
Derek Organ
  • 8,323
  • 17
  • 56
  • 75
0
votes
1 answer

Beanstalkd server not running its jobs

I'm trying to start beanstalk server, and made 1 job to test it, but instead i got nothing. Here is my code: require 'stalker' include Stalker job 'test.job' do somefile = File.new("somefile") end Im using stalker gem to connect ruby and…
Avdept
  • 2,261
  • 2
  • 26
  • 48
0
votes
1 answer

multiple beanstalkd clients to process one job

Is there a possibility in beanstalkd to process one job by multiply clients? How job should be deleted in this case? I would like to send message from one server to 10 another servers, so job will be completed on all of them - it is about update…
Pavel B
  • 36
  • 2
0
votes
1 answer

Beanstalk and Time Syncronization between computers on LAN

Long story short I've had a lot of issues with my tools hitting my MySQL DB server too hard. So I created a set of tools (PHP and Ruby) that use Beanstalk to communicate what I want done on the DB to a set of always running DB connections. Beanstalk…
Gabe Spradlin
  • 1,937
  • 4
  • 23
  • 47
0
votes
1 answer

Getting jobs from beanstalkd - timed out exception

I am using Python 2.7, beanstalkd server with beanstalkc as the client library. It takes about 500 to 1500 ms to process each job, depending on the size of the job. I have a cron job that will keep adding jobs to the beanstalkd queue and a "worker"…
Sagar Hatekar
  • 8,700
  • 14
  • 56
  • 72
0
votes
2 answers

FFMpeg + Beanstalk: How to pass the processes to it or achieve the same result without using Beanstalk

My problem is that FFMpeg and Mencoder are extremely resourceful and running even one process of it makes HTTPd slow down but multiple processes of (FFMPEG /Mencoder) just hang it (HTTPd) completely. I would like my conversions to be processed with…
Ilia Ross
  • 13,086
  • 11
  • 53
  • 88
1 2 3
26
27