Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 15, 2017 01:00 pm

Making Things Faster With Gearman and Supervisor

Sometimes our services need to perform some huge tasks after user interaction. For example, we need to send a letter, generate a report file, or call external APIs. These kinds of tasks can be slow because of third parties and can consume the resources of your server.

In this case, an application can become a snake eating an elephant, as in the book The Little Prince. You take some data from a user and make him wait because the snake needs some time to digest an elephant (or something else that your app needs to do):

A snake eating an elephant

To process this functionality faster, you need to make the parts of your application asynchronous. You can achieve this by delegating this task to a more powerful server or running it in a background process.

And Gearman is a proper tool that can be used to do this.

What Are We Going to Do?

In this tutorial, we will create a simple application that will delegate a task from a client to the Gearman worker. Our application will calculate a Fibonacci sequence in three processes. To run worker processes, we will install and configure Supervisor.

Please note that the examples in this tutorial need PHP7 to run.

So What Is Gearman Anyway?

First, let's discover what is Gearman from its homepage:

Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages. It can be used in a variety of applications, from high-availability web sites to the transport of database replication events. In other words, it is the nervous system for how distributed processing communicates.

In other words, Gearman is a queuing system that is easy to scale on many servers and flexible to use because of multi-language support.

Install Gearman

If you are running Debian/Ubuntu, run the following command to install Gearman with the necessary tools and PHP extension:

After that, run the Gearman server and check the status:

But you will not see anything helpful after the status command because we haven't started any worker yet. Just remember this until we need it.

Create a Client

And we are ready to start a script called client.php. This script will create a Gearman client and send information to a server on the same machine:

You may have noticed that we sent numbers in a JSON format. Gearman clients and workers talk to each other in a string format, so one of the ways to serialize an array is to use the json_encode() function or something similar.

After receiving an answer from the worker, we will unserialize it with json_decode() and output as CSV rows:

We have just finished our client script, so let's run it from terminal:

But it will be stuck without any output. Why? It is waiting for a worker to connect.

Create a Worker

It's time to create a worker to do the job that was ordered by the client. We will require a file with the fibonacci() function and create a new Gearman worker on the current server:

After this, we will add a new function called the same as we called it in the client code:

And, of course, don't forget to wrap your answer to JSON format. The last thing to do is loop the worker script to use it many times without restarting:

We can run the worker script in the background:

At this moment, you may already have observed that the client script has ended its job and written something like this:

Check the Gearman Status

Finally, we have our worker running, so we can check the status again:

In each row, there is a function name and three numbers: the number of tasks in the queue (0), the number of jobs running (1), and the number of capable workers (2).

Of course, to add more workers, you can run more worker scripts. To stop each of them, you can use killall.  But there is a great tool to manage workers, and it is called Supervisor.

A Few Words About Supervisor

As the manual says:

Supervisor is a client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems.

Let's install it and create the basic configuration file:

In the editor that opens, we will create a basic configuration for a Gearman worker:

This will say to Supervisor that the worker must run in three processes and restart when ended. Now save the configuration file, reload Supervisor, and check the status of the running processes:

We can see three workers that are ready to take jobs from client scripts.

Conclusion

We've completed the basic tasks to install and configure Gearman. Now you are free to play with example code, so try to make the following changes to the code:


  • Add some worker process in the background, like sending an e-mail.

  • Play with task priorities using GearmanClient::doHigh.

  • Chunk data using GearmanJob::sendData, which can be useful in the case of long tasks that can be observed by the status bar.

Also, you can scale the power of your workers by increasing the number of processes or running them on a faster server. And don't forget to use Supervisor to make your workers run.

If you have any questions, don't hesitate to ask questions in the comments to the article. 

Further Reading and Related Links


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code