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.

learn more… | top users | synonyms

0
votes
0answers
13 views

Maximum length of data that Gearman client could pass to worker

I'm using Gearman to distribute some tasks. In one of these tasks, the data passed to worker is extremely long, and I noted that the data received by the worker was incomplete. So is there any limits ...
0
votes
0answers
49 views

Gearman callback issue in C

I'm trying to write a worker and a client in C for Gearman. I started using the examples provided with the Gearman distribution (gearmand-0.10). In particular I'm using reverse_worker.c and ...
0
votes
0answers
28 views

Gearman python client - Key error when trying to get job status

I am new to python and Gearman. I am trying out a sample to get the status of asynchronous job. I followed the solution given here How to get status of Gearman Jobs by their uniq id? Here is my ...
0
votes
0answers
22 views

What's the difference between php's gearman job and task

I'm trying to understand gearman but until now I can't figure out what's the difference between task and job. I'm trying to create a client which will parse periodically ( every 10 minutes ) a xml ...
1
vote
1answer
75 views

PHP asynchronous tasks - sending results to browser when ready

In PHP, I want to run several independent tasks in parallel. Each task produces a result that I want to send back to the visitor's browser as the results are ready. The idea is to use load a page ...
0
votes
0answers
121 views

mod_fcgid: process X graceful kill fail, sending SIGKILL

We run in performance problems with our Server. From time to time at some pages, which require some more data, the site is loading for like 45 sec. and at the end it comes the Internal Error 500 Page. ...
0
votes
0answers
25 views

Cannot compile gearman - configure script fails

My system is Red Hat Enterprise Linux Server release 5.7 (Tikanga). I am trying to run the configure script , and I am getting the following error: checking for the toolset name used by Boost for ...
2
votes
0answers
51 views

Background Job Status from Gearman

I have a web-based script which creates a background job (executes SSH commands) in Gearman, this is successful. However when I try to retrieve the status of the job in subsequent web requests I am ...
0
votes
1answer
36 views

Gearman Task Completion Callback

It's possible to set a callback when a single task has finished with setCompleteCallback() - is it possible to set a callback when an entire batch of tasks has completed (when run in parallel), for ...
0
votes
1answer
54 views

Slow Form Processing in PHP - Need Queue?

I have a web form which I want to validate the inputs, and if it passes validation, send the info to a web service, and save to mySQL as a backup. If there is an error either sending to the web ...
0
votes
1answer
42 views

Unable to run “gearman” command line tool with gearman 1.1.6

I am trying to run the example on "http://gearman.org/getting_started" on Ubuntu in VirtualBox environment. At first I tried to download an old version 0.16 by using apt-get install ...
1
vote
1answer
32 views

Gearman (perl extension): Send message from worker to client

I'm working on a distributed job execution system with gearman (perl extension). When the work retrieves a foreground job, I hope the client could get the hostname of the worker's machine, which ...
0
votes
0answers
18 views

Task quantity in gearman queue

How to recieve current task quantity in gearman queue or active task quantity in php? I'm using library http://www.php.net/manual/ru/class.gearmanclient.php
1
vote
1answer
55 views

Delay a gearman job in php

I have a Gearman Work in php that processes background tasks from client. From time to time I am not able to process that job. I would need a way to delay retry that job after 5 minutes. How can I do ...
0
votes
1answer
85 views

Windows cygwin gearman ./configure shows “configure: error: Unable to find libevent” error

I am trying to install gearman http://www.phpvs.net/2010/11/30/installing-gearman-and-gearmand-on-windows-with-cygwin/ I downloaded "libevent-2.0.21-stable.tar.gz" and extracted in cygwin's home/libs ...
0
votes
1answer
38 views

Running gearman on a Heroku Worker

I have a PHP app running on heroku (cedar stack). I'm at the point where I need to start passing jobs off to workers. I've looked a both RabbitMQ and gearman. It seems like the best / simplest ...
1
vote
1answer
102 views

gearman task queue overflows with compleated tasks

I'm using Gearman Job server in my project. I use 'gearman-ruby' gem. There is a queue of tasks in app. One task have 4 parts. Appropriately I have 4 workers to solve this parts of task. My system ...
2
votes
0answers
30 views

Jobs in a queue is dropped unexpectedly in Gearman

I'm dealing with a very strange problem now. Since I queue the jobs over 1,000 at once, Gearman doesn't work properly so far... The problem is that, when I reserve the jobs in background mode, I ...
1
vote
2answers
81 views

Gearman commands and service don't work the same

I ran into a strange problem when testing my gearman settings. Since I have only one PC and would like to test gearman cross-platform features, I installed gearman job server on Ubuntu 12.04 on the ...
2
votes
0answers
70 views

How to effectively implement an algorithm [closed]

We've recently worked with a mathematician to build us an algorithm. The algorithm will look at click data and will continuously update data associated with the user, the content, and the content's ...
4
votes
1answer
69 views

Sharing curl handler among gearman workers

I've a gearman worker (called "manager") which reads a list of urls and then calls, for each of them, another gearman worker (called "dependent") which fetches the content of passed url and does some ...
0
votes
0answers
49 views

python gearman connection

I have python gearman worker on 192.168.1.2 and client on 192.168.1.10. but when run client this error Occured: raise ServerUnavailable('Found no valid connections: %r' % self.connection_list) ...
0
votes
0answers
30 views

links of page with gearman worker

.hello how can get links of website with gearman worker? this is my code but get this error:Segmentation fault (core dumped) worker: $gmworker= new GearmanWorker(); $gmworker->addServer(); ...
0
votes
1answer
84 views

PHP Gearman - idle when no workers available

Is it possible to idle the Client when all workers are working? I have the following case: $client= new GearmanClient(); $client->addServer(); $data = array(thousands of entries); foreach($data ...
0
votes
1answer
47 views

Permission problems with Gearman worker

Here is the scenario: I have a web application (php, mysql) which writes pdf files to a given directory: /var/www/myapp/tmp. I then use Gearman (worker php script run from terminal) to generate ...
0
votes
1answer
199 views

How to install Gearman with PHP Extension

I'm trying to install Gearman with PHP Extension to use it with PHP-CLI. I have a Debian 6.0.5 with php5-cli and php-pear installed. Thats what I tried # apt-get install php5-dev # apt-get install ...
1
vote
1answer
59 views

How do I access my PHP apps public functions within a Gearman worker?

In my app a user can upload several photographs at once. Once these are received by the server the following happens: A Gearman worker job is scheduled which processes all the uploaded images, ...
0
votes
1answer
49 views

GearMan Background Tasks

I have to use Gearman for background tasks. someone tell me that there is a user interface for gearman, i am not able to find out any good tutorial related to gearman so through i can start learning ...
0
votes
1answer
102 views

pecl - gearman - Unable to load dynamic library?

I'm setting up the default instance for a new Amazon Elastic Beanstalk cluster however I'm having issues installing the gearman php client via pecl. I ran pecl install mongo without any issues, but ...
7
votes
1answer
426 views

gearman gives me GEARMAN_COULD_NOT_CONNECT, it is definitely running

My dev server is Debian Squeeze and I'm running Gearman 1.1.5 which I compiled from source along with the php pecl extension v1.1.1 If I run the reverse_client.php script I get the ...
0
votes
1answer
136 views

How to install mmoreramerino/GearmanBundle with Symfony 2.1.x?

I am pretty new to Symfony 2 and brand new to Gearman. I am looking for a bundle to integrate Symfony 2 with Gearman. mmoreramerino's bundle seems to be the most popular bundle according to ...
2
votes
1answer
330 views

Gearman throws GEARMAN_COULD_NOT_CONNECT on php example

I installed gearmand 1.1.5 on my server, and tried the examples provided with the installation after starting the server. They work pretty correctly (the echo example works, the reverse doesn't work ...
0
votes
0answers
59 views

determining proper gearman task function to retrieve real-time job status

Very simply, I have a program that needs to perform a large process (anywhere from 5 seconds to several minutes) and I don't want to make my page wait for the process to finish to load. I understand ...
0
votes
1answer
122 views

php - try/catch gearman not catching timeout warning

I'm using the php gearman client and I'm trying to catch/ignore any errors in the event the gearman server is offline: try { $gearman = new GearmanClient(); ...
0
votes
0answers
44 views

gearman is returning old worker results

I have a PHP gearman client and worker. I am testing my worker with very minimal output to ensure all is working as intended. Strangely, I am getting old results from previous workers and I can't ...
3
votes
2answers
113 views

Adding a new job with GearmanManager?

I'm still new to the whole Gearman and GearmanManager cycle. I have a working server and have verified my jobs run if they're already in my queue (MySQL table) when the server starts. However, I need ...
0
votes
2answers
113 views

php callback function in class not being called

Given this line of code to callback a function and the callback function itself: Class MyClass { public function doThings() { ...
0
votes
1answer
153 views

PHP Gearman Duplicate tasks

I got: Debian 6 nginx 1.2.6 PHP 5.3.20-1~dotdeb.0 (fpm-fcgi) (built: Dec 24 2012 11:53:16) gearmand 1.1.4 pecl gearman ext 1.1.1 And I got two scripts (Probably I copied them from php.). Client: ...
0
votes
2answers
167 views

How to make async http request in php across datacenters

We are working on Kafka based event collection pipeline which will accept incoming event through HTTP GET / POST requests. It should be able to receive event by user browser as well as web server ...
0
votes
1answer
271 views

gearman issues & php cli

I'm having some gearman issues when trying to run commands in terminal using php cli. For example I run this command: gearmand --log-file=/var/log/gearman-job-server/gearman.log and get: gearmand: ...
0
votes
1answer
106 views

Issues installing gearman on MAMP running OS X 10.8

As the title states I am having some issues when installing gearman for PHP in a MAMP environment. Here's what I've done so far: I've downloaded the latest PECL version and run these commands based ...
0
votes
1answer
54 views

gearman worker doesn't receive input

machine 1 - client using PHP api $client = new \GearmanClient(); $client->addServer(..); $client->doBackground('demotask', 'hello world'); machine 2 - workers - not using PHP api, directly in ...
0
votes
1answer
96 views

dynamically load-balanced task queue

Set up Front-end machine receives web requests and puts 3 different kinds of tasks into Gearman server. 3 worker machines registered with that gearman server, each can perform any of those tasks. ...
0
votes
0answers
38 views

How to setup Gearman to execute a application on one particular server?

Here is my situation: I have multiple servers under a load balancer. My users are able to upload files to the server. These files need to modify and sent to another server. So to do that I decided to ...
2
votes
1answer
55 views

python - gearman - keep getting typeerror

I have a simple python script to send gearman tasks: Client: # "source" is a simple tuple client = GearmanClient(['localhost']) client.submit_job('queue_feed', ...
0
votes
0answers
84 views

Is GearmanManager a stable and robust solution to manage workers? [closed]

I'm investigating Gearman to distribute the load of generating images from pdf files for my PHP/MySQL web application. I came across GearmanManager which claims to make worker deployment very easy. ...
0
votes
0answers
76 views

What is the best way to automatically start and keep alive a gearman worker

Background info: My app uses a typical newsfeed/activity stream where I fan out activity_id's into users activity streams upon the event taking place. The activity streams are arrays of ...
0
votes
1answer
122 views

Modularising Gearman workers in Perl

I need to modularise gearman workers in Perl, so that I can just register different worker function name and their implementation and reuse all the other code. use strict; use warnings; use ...
0
votes
2answers
334 views

Installing gearman on windows 7 through cygwin and get “configure: error: Unable to find libevent”

I'm a newbie trying to install gearman on windows through cygwin using the tutorial here: http://www.phpvs.net/2010/11/30/installing-gearman-and-gearmand-on-windows-with-cygwin/ I need to install ...
0
votes
1answer
81 views

How to set a timeout for a gearman job

I want to set a timeout duration for Gearman jobs. For instance, I don't want a gearman job to run for more than 30 seconds, and if the job is running for more than 30 seconds it should be stopped and ...

1 2 3 4 5