Skip to main content
1 vote
0 answers
67 views

I have a Gearman worker that forks multiple child processes using pcntl_fork() to handle parts of a job concurrently. Here's a simplified version of the worker script: <?php $worker = new \...
user2531657's user avatar
0 votes
0 answers
60 views

I am trying to use Gearman with my Spring project. But when i try to connect to the job server, it gets stuck, no exception, the client seems to go into some kind of endless loop. I use docker for the ...
M364M4N cro's user avatar
0 votes
1 answer
440 views

I have installed Gearman on my system and when I run php --info | grep gearman I've got php --info | grep gearman gearman gearman support => enabled libgearman version => 1.1.19.1+ds Also, I ...
Jake's user avatar
  • 71
0 votes
0 answers
47 views

I have implemented connection pool in php with gearman. An old man techinque I know. The concept is start a worker with x number of connections. the client requests a connection and worker gives that. ...
user2678738's user avatar
0 votes
1 answer
484 views

I am trying to install Gearman client worker on Centos server. PHP has been installed and all required gearman-php module also installed. when executing command gearmand -d it gets executed ...
Abhinav's user avatar
  • 709
0 votes
1 answer
155 views

I have a Gearman worker in a shell script started with perp in the following way: runuid -s gds \ /usr/bin/gearman -h 127.0.0.1 -t 1000 -w -f gds-rel \ -- xargs /home/gds/gds-rel-worker.sh < /...
Georgi D. Sotirov's user avatar
0 votes
1 answer
380 views

I tried to use this instruction to install Gearman PHP Extension for php 7.4 on MacOS: tar xzf gearman-X.Y.tgz cd gearman-X.Y phpize ./configure make make install and get error at ./configure dev/...
Larest's user avatar
  • 396
0 votes
0 answers
30 views

I want to implement a rule which sets the status to WARN in case of a concrete error.Can someone please help.
JBOSSUSER's user avatar
0 votes
0 answers
123 views

We often used the following code to connect to gearman server to get job: gm_worker = gearman.GearmanWorker(['localhost:4730']) gm_worker.set_client_id('xxxworker') gm_worker.register_task(b'xxx', ...
Howard's user avatar
  • 31
1 vote
1 answer
716 views

Iam new to Gearman and I have followed the procedure to install Gearman as suggested in How to install Gearman with PHP Extension. Installation procedure at the end displayed a message that Gearman ...
Abhinav's user avatar
  • 709
0 votes
1 answer
246 views

I'm trying to setup gearman on Ubuntu, installations is failed and showing the below error. PHP Warning: PHP Startup: Unable to load dynamic library 'gearman.so' (tried: /usr/lib/php/20170718/gearman....
nikhil gantyala's user avatar
1 vote
1 answer
3k views

I am running a Docker through docker-composer up. Its a LAMP environment and works fine. I have a docker file where i am installing few Apache modules and loading them. After the Docker container is ...
Edi 0's user avatar
  • 212
0 votes
1 answer
1k views

With the aid of this question here, I've been busy taking over an woefully undocumented gearman setup from a previous dev. Funnily enough, I've never seen such a woefully poor excuse for documentation ...
John Lewis's user avatar
2 votes
3 answers
569 views

I am trying to encrypt the connection from an application running on php 5.6.40 to gearman server(version 1.1.12). I have started gearman server enabling ssl and passed the ca file, certificate and ...
Rohith Mohan's user avatar
1 vote
1 answer
96 views

Would appreciate some help understanding typical best practices in carrying out a series of tasks using Gearman in conjunction with PHP (among other things). Here is the basic scenario: A user ...
DMK's user avatar
  • 53

15 30 50 per page
1
2 3 4 5
33