Tagged Questions
Gearman is a system to farm out work to other machines, dispatching function calls to machines that are better suited to do work, to do work in parallel, to load balance lots of function calls, or to call functions between languages.
22
votes
9answers
2k views
Stopping gearman workers nicely
I have a number of Gearman workers running constantly, saving things like records of user page views, etc. Occasionally, I'll update the PHP code that is used by the Gearman workers. In order to get ...
11
votes
3answers
4k views
Rabbitmq or Gearman - choosing a jobs queue
At work, we need to build a jobs server for things like sending emails, building PDFs, crunching some data, etc. Obviously, we'd like to build on some sort of generic queueing system. I'm familiar ...
10
votes
6answers
2k views
Any way to access Gearman administration?
I want to be able to query a gearman server to determine how many instances of a worker I have running (basically I want to make sure that RunTaskA is available and RunTaskB is available if there are ...
7
votes
2answers
230 views
Task Scheduling with complex dependencies
I'm looking for a way of scheduling tasks where a task starts once several previous tasks have completed.
I have several hundred "collector" processes which collect data from a variety of sources and ...
7
votes
2answers
818 views
Any Gearman tutorial?
I am looking for a comprehensive Gearman tutorial (preferably with the PHP API). I am trying to understand the flow of the process. I set the daemon running, create clients and workers, but how do I ...
6
votes
1answer
1k views
Resque or Gearman - choosing the right tool for background jobs
We are developing a web application wherein with about 50% of write requests, we end up pushing data to multiple data stores and inserting and updating significant number of records in those data ...
5
votes
2answers
567 views
Schedule a job in Gearman for a specific date and time
From what I can see Gearman does not support scheduled jobs or delayed jobs. I was thinking that perhaps the scheduled job could be queued in at first and then added to the Gearman queue after the at ...
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
2answers
186 views
Remove all Gearman jobs from the Gearman Job Server
Is there a way to remove all Gearman jobs from the Gearman Job Server? I have a PHP application that runs Gearman jobs in the background. For my unit tests I need to ensure that a) there are no jobs ...
4
votes
1answer
133 views
GearmanManager in background
We were using Gearman/PHP on Ubuntu to delegate our processes. On this (development) machine we were opening few terminal windows to start clients and workers respectively, but now on live machine we ...
4
votes
1answer
892 views
Gearman vs ZeroMQ
Has someone some feedback about distributed architectures with these engines? Which is the best, or in which cases which is the best election?
Regards!
4
votes
1answer
842 views
asynchronous processing with PHP - one worker per job
Consider a PHP web application whose purpose is to accept user requests to start generic asynchronous jobs, and then create a worker process/thread to run the job. The jobs are not particularly CPU or ...
4
votes
1answer
661 views
Simulating Google Appengine's Task Queue with Gearman
One of the characteristics I love most about Google's Task Queue is its simplicity. More specifically, I love that it takes a URL and some parameters and then posts to that URL when the task queue is ...
4
votes
3answers
1k views
Queuing systems - what is a good way to start up multiple workers?
How have you set-up one or more worker scripts for queue-oriented systems?
How do you arrange to startup - and restart if necessary - worker scripts as required? (I'm thinking about such tools as ...
3
votes
1answer
86 views
Segmentation Fault running Gearman PHP from the Command Line
I'm using Ubuntu Natty with PHP 5.3.5 and PECL Gearman 0.8.0. Here's the version info:
PHP 5.3.5-1ubuntu7.3 with Suhosin-Patch (cli) (built: Oct 13 2011 22:20:48)
Copyright (c) 1997-2009 The PHP ...
3
votes
2answers
300 views
Gearman with multiple servers and php workers
I'm having a problem with gearman workers running on multiple servers which i can't seem to solve.
The problem occurs when a worker server is taken offline, rather than the worker process being ...
3
votes
2answers
311 views
Problem With Gearman Job Status
I have a Gearman server running a process which takes a few minutes to finish. I'm running a progress bar to show completion, and am attempting to get the percentages for the bar using the Gearman PHP ...
3
votes
1answer
366 views
Gearman + SQLAlchemy - keep losing MySQL thread
I have a python script that sets up several gearman workers. They call into some methods on SQLAlchemy models I have that are also used by a Pylons app.
Everything works fine for an hour or two, then ...
2
votes
2answers
59 views
Starting multiple upstart instances automatically
We use PHP gearman workers to run various tasks in parallel. Everything works just fine, and I have silly little shell script to spin them up when I want them. Being a programmer (and therefore ...
2
votes
1answer
83 views
Detecting no available server with PHP and Gearman
I'm currently making use of Gearman with PHP using the standard bindings (docs here). All functioning fine, but I have one small issue with not being able to detect when a call to ...
2
votes
1answer
126 views
Attempting to install gearmand on AWS Linux EC2, yum can't find necessary packages with default repos
I'm attempting to install gearmand on a micro EC2 instance running Amazon Linux 64 bit by following this guide: http://planet.mysql.com/entry/?id=28654
But I'm running into a problem with
sudo yum ...
2
votes
1answer
128 views
How to get status of Gearman Jobs by their uniq id?
I need to get status of Gearman jobs by these uniq id, not by open handlers, as desribed every place I seen
Is it possible? using in python-gearman v. 2...
Thanks for assistance!
2
votes
2answers
310 views
Constantly Running Gearman Worker
I have a process I'd like to be able to run in the background by starting up a Gearman Client any time.
I've found success by opening up two SSH connections to my server, and in one starting the ...
2
votes
2answers
167 views
PHP-Java interop - Gearman or PJB?
Which is the overall best option for calling Java from PHP?
Gearman
PHP/Java Bridge
or something else entirely? By "best" I mean easy to use, reliable, transparent (for debugging purposes) - the ...
2
votes
1answer
273 views
Gearman & PHP: Proper Way For a Worker to Send Back a Failure
The PHP docs are a bit fuzzy on this one, so I'm asking it here. Given this worker code:
<?php
$gmworker= new GearmanWorker();
$gmworker->addServer();
$gmworker->addFunction("doSomething", ...
2
votes
1answer
269 views
Installing gearman with libdrizzle on mac osx
Anyone could install gearman with libdrizzle enabled for mac os?
I'm using mac ports but it fails to install it with libdrizzle enabled
2
votes
1answer
710 views
Scheduling with gearman vs. cron?
I have noticed a lot of people discussing Gearman and it's scheduling features making it enable to distribute work onto other servers. However, I have not yet seen a comparison to native cronjobs.
...
2
votes
3answers
472 views
Gearman architecture queries
I am new to Gearman. I have following queries about optimized Gearman usages:
1) I think worker expects job as a "string". Can I send an Array or Hash as Job to worker? If not, is JSON the best Job ...
1
vote
0answers
114 views
Gearman Job Server / Ubuntu [migrated]
I have Gearman installed, running and passing jobs around perfectly fine but only when I manually start up the job queue with this command:
/usr/sbin/gearmand -p 4730 -vvvv -u gearman
If I do this ...
1
vote
0answers
37 views
PHP Gearman Task sometimes returns empty object
I have a simple Gearman client and worker. I am running both on my Ubuntu desktop. I have installed the gearman-beta pecl package and the version of Gearman from synaptic.
My problem is that ...
1
vote
0answers
64 views
Gearman Cannot connect to server
Does anyone have any idea what could be causing this problem in Gearman?
PHP Warning: GearmanClient::doBackground():
gearman_connection_flush:could not connect
I am trying to connect to ...
1
vote
0answers
55 views
how to monitor gearmand daemon by Monit?
So the configuration file for monitoring gearman server is:
set logfile /var/log/monit.log
check process gearmand with pidfile /var/run/gearmand.pid
start program = "sudo gearmand ...
1
vote
1answer
62 views
gearman and retrying workers with unreliable external dependencies
I'm using gearman to queue a variety of different jobs, some which can always be serviced immediately, and some which can "fail", because they require an unreliable external service. (For example, ...
1
vote
1answer
46 views
Gearman with PHP/Net_Gearman, workers that perform jobs that are invoked from other workers become unresponsive
I'm using gearman to distribute long running tasks across multiple worker servers. For one of my worker tasks, I attempt to invoke another background job. The background job is performed by another ...
1
vote
1answer
63 views
How can I use Gearman for File Processing Without Killing the DB?
I'm currently designing a system for processing uploaded files.
The files are uploaded through a LAMP web frontend and must be processed through several stages some of which are sequential and others ...
1
vote
1answer
99 views
Gearman (using PHP) - Possible to send job / message to ALL workers?
I'm new to Gearman, but I understand the general concepts. I realize that this isn't something that you would normally want to do... But I was wondering if there is a way to send a "job" to ALL ...
1
vote
1answer
44 views
Security — sharing gearman job ID's with client, bad practice?
I'm planning on incorporating the Gearman job server into my website's architecture. One task in particular that I'm planning on using gearman to accomplish is Facebook authentication with my website.
...
1
vote
1answer
196 views
Gearman , php extension problem : Class 'GearmanWorker' not found in .. using terminal but works on browser
I've installed gearman on ubuntu 10.04 recently and installed it's pecl extension. Now , when I run a php file in the browser that contains :
$client = new GearmanWorker();
die(var_Dump($client));
...
1
vote
0answers
71 views
php GearmanClient timeout
I'm using the gearman pecl extension in php, and want to have a timeout for a function call.
Two use cases: (1) no running workers, (2) worker takes too long to complete
If everything is running, the ...
1
vote
1answer
81 views
Gearman Manager global variable == NULL
I am using Brian Moon's Gearman Manager that allows me, for example, to send worker's to background.
The problem I'm facing is when I want to use a variable that was defined outside of function by ...
1
vote
0answers
55 views
Versioning gearman workers
I'm converting a linear processing system to Gearman but I haven't actually deployed Gearman on a production environment.
We have a deployment chain in regards to pushing new versions of source code ...
1
vote
1answer
85 views
Creating a Gearman Worker in C
I've been trying to implement a Gearman worker with their C API (libgearman). But their documentation for the C API is poor and not complete. Although its very similar to creating workers in other ...
1
vote
1answer
88 views
Open Source framework for keeping things updated?
So here's the problem I'm trying to solve:
We have a website, and we want to keep information about things on the website more-or-less up-to-date in our search index. We have finite resources to ...
1
vote
2answers
239 views
Gearman with PHP - threads in worker
I have a problem with Gearman and the worker for PHP.
I want to run the same function at the same time. But now Gearman seems to make it a queue.
The output I'm searching for is:
$ ./daemon.php
...
1
vote
1answer
178 views
How to install GearmanManager on Amazon AMI EC2 Micro Instance?
I believe amazon's linux is CentOS/RHEL based but I cannot install GearmanManager on the server.
How do I go about doing this?
[root@ip-10-100-100-10 install]$ ./install.sh
Detecting linux distro ...
1
vote
2answers
397 views
Gearman + Net_Gearman + Windows
I'm trying to install Gearman + Net_Gearman + GearmanManager on a windows machine (2003 server).
At this moment, I executed correctly the java version of the Job Server (java-gearman-service), ...
1
vote
2answers
233 views
Threaded vs. asynchronous image processing?
I have a Python function which generates an image once it is accessed. I can either invoke it directly upon a HTTP request, or do it asynchronously using Gearman. There are a lot of requests.
Which ...
1
vote
1answer
703 views
Web UI for Gearman or Alternativess for PHP Job Queue
We develop a suite of PHP SASS applications and we use Gearman to process tasks in the background both synchronously and asynchronously. We love everything Gearman has to offer but we've beginning to ...
1
vote
2answers
304 views
Is it possible to empty a job queue on a Gearman server
Is it possible to empty a job queue on a Gearman server? I am using the python driver for Gearman, and the documentation does not have any information about emptying queues. I would imagine that this ...
1
vote
1answer
254 views
Queue System Farm questions
Until now, we haven't really needed to implement a queue system in our infrastructure, but now we need some features that cannot be done thru cron jobs (too slow).
Our infrastructure is LAMP (PHP) ...