Download the PHP package exsyst/worker without Composer
On this page you can find all versions of the php package exsyst/worker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download exsyst/worker
More information about exsyst/worker
Files in exsyst/worker
Informations about the package worker
EXSyst Worker Component
Worker subprocess management
Operating system compatibility
This library uses Unix-specific utilities, such as (for finding the process ID of a shared worker, and purging the file descriptors of a shared worker) and (for querying the processor count, if you use the automatic worker pool sizing). If you use these features, please ensure that these programs are installed and executable by PHP.
This library is unsupported on Windows.
Dedicated workers
A dedicated worker is the simplest worker type. It has only one master, and its communication channel is closed (which should stop it as soon as it has finished processing its messages) when its master's reference to it goes out of scope. It allows to run code in isolation from the master.
Here is a minimal example of a dedicated worker. s and s are skipped for brevity.
, as a raw worker
, as an evented worker
Evented workers require . For simple use cases, they can be more complex than raw workers, but for complex use cases, their power will lead to a generally simpler worker implementation.
Dedicated worker pools
A worker pool allows to ease management of multiple, parallel, dedicated workers.
Here is a minimal example of a dedicated worker pool. As in the previous example, s and s are skipped for brevity. is one of the previously seen files.
Shared workers
A shared worker is an evented worker (see above) which can have multiple masters. Instead of communicating with a single master using its standard I/O streams, it listens on a socket, to which any master can connect and disconnect at any time.
A shared worker can't be stopped just by disconnecting it from all of its masters. The only way to gracefully stop it is to send it an appropriate message containing its "admin cookie", which was configured in its bootstrap profile (see below). It can also be terminated by standard POSIX signals, but, in this case, it may leave some garbage behind.
Here is a minimal example of a shared worker. As in the previous examples, s and s are skipped for brevity.
Querying a shared worker's status
You can send a query message to your worker using or . If you have configured an "admin cookie" (see below), your worker can decide to return full information to clients which have it, and only limited information to others.
Your worker's method can return null if your worker doesn't have any interesting status to report. Otherwise, it must return either a (which encapsulates a human-readable string describing its status and/or counters with a name, a numerical value, and an optional unit, minimum and maximum), or just a human-readable string.
This model is designed to ease interfacing with a monitoring system, such as Nagios. If you install , you can even use the standalone command provided in this package, as a Nagios plugin.
Gracefully stopping a shared worker
The library provides two ways of gracefully stopping your shared workers :
- You can call from inside your worker, and then manually clean up all the other resources ;
- You can send an appropriate stop message to your worker using or if you have configured an "admin cookie" (see below).
If you use an "admin cookie", and if your shared worker owns resources (such as, for example, sub-worker pools, or Ratchet server sockets) and has registered them against the event loop, it must, in its method, either unregister them, or stop the loop : the loop will not stop automatically as long as any resources remain registered against it, which will make your shared worker unable to stop if you forget to unregister resources.
Remote shared workers
Shared workers support listening on Unix-domain sockets, as well as Internet-domain sockets. They can therefore be exposed to a network.
A master can connect to a network-exposed shared worker on another machine, as well as stop it if it knows its "admin cookie", but it can't remotely start the shared worker.
Warning : for security reasons, please do not use a (which is the default) on a network-exposed shared worker (see for more info). Instead, consider using a channel factory which uses a safe format, such as a .
Disabling shared workers
You may want to disable shared workers, for example as part of the deployment of a newer release of your application.
To this end, the library provides a kill switch, in the form of a JSON file which contains :
- A flag, which indicates whether shared workers are globally disabled for the current bootstrap profile (and may be used as part of a deployment) ;
- A list of socket addresses which indicate which specific shared workers, if any, are disabled.
You can manipulate the kill switch from the worker factory, for example :
Please note that disabling shared workers will not automatically stop them (and disabling them globally can't, as the library doesn't keep track of a list of all running shared workers). If you want to disable running workers, you must stop them manually, after disabling them (to avoid a race condition, where they could be restarted after you stop them, but before you disable them).
The bootstrap profile
This object contains all the parameters needed to initialize a worker. The library is designed to try and provide default values for mandatory parameters :
- The or executable's path and arguments (by default, will be auto-detected using ) ;
- The preferred identity, which is a system user on behalf of which the workers will prefer to run : if they are started as (or with on Linux), they will to this user (by default, none) ;
- The "stage 1" parts, which are to be executed before ing any scripts (by default, none) ;
- The scripts to (by default, the component will try to find 's autoloader, unless told not to) ;
- The "stage 2" parts, which are to be executed after ing the scripts, but before creating the worker implementation (by default, none) ;
- The name of the variable which will hold the worker implementation (by default, ) ;
- The arguments to pass to the worker implementation's constructor, when it is actually created using its constructor (by default, none) ;
- The "stage 3" parts, which are to be executed after creating the worker implementation, and which can refer to it using the specified variable name (by default, none) ;
- The channel factory, which can create a channel, and must be serializable (by default, the from ) ;
- The event loop expression which will be evaluated by the worker, after "stage 3" (by default, none, which will make the subprocess automatically call ) ;
- The socket context expression which will be evaluated by the worker, after "stage 3" (by default, none, which will make the shared workers' server sockets be created without contexts) ;
- The "admin cookie", which is a pre-shared secret string that must be sent to a shared worker as part of an appropriate message to get extended status information from it, or make it gracefully stop (by default, none, which makes it impossible to gracefully stop a shared worker using this mechanism) ;
- The kill switch path : the kill switch is a JSON file which indicates if shared workers are globally disabled, and if not, which specific shared workers, if any, are disabled (by default, none, which makes it impossible to disable shared workers) ;
- The precompiled script map, which allows reusing the same script for every worker which uses the same implementation, instead of using a "generate in , run once, then delete" approach (by default, none).
If you don't specify a bootstrap profile when creating your worker factory, it will automatically create one, with the default values of all parameters.