Evaneos AMQP library able to use both php-amqplib and pecl amqp C librairy
composer require evaneos/burrow
See examples directory for more details
To test it, you may use a rabbitmq container, this one feets perfectly
docker run -d -p 5672:5672 rabbitmq
$admin = DriverFactory::getDriver([
'host' => 'localhost',
'port' => '5672',
'user' => 'guest',
'pwd' => 'guest'
]);
$admin->declareExchange('exchange');
$admin->declareAndBindQueue('exchange', 'my_queue');
$driver = DriverFactory::getDriver([
'host' => 'localhost',
'port' => '5672',
'user' => 'guest',
'pwd' => 'guest'
]);
$publisher = new AsyncPublisher($driver, 'exchange');
$publisher->publish('message', 'routing_key', [ 'meta' => 'data' ]);
$driver = DriverFactory::getDriver([
'host' => 'default',
'port' => '5672',
'user' => 'guest',
'pwd' => 'guest'
]);
$handlerBuilder = new HandlerBuilder($driver);
$handler = $handlerBuilder->async()->build(new EchoConsumer());
$daemon = new QueueHandlingDaemon($driver, $handler, 'test');
$worker = new Worker($daemon);
$worker->run();
In the command-line, launch both scripts from a different terminal, the message 'my_message', should be displayed in the worker terminal.
$driver = DriverFactory::getDriver([
'host' => 'default',
'port' => '5672',
'user' => 'guest',
'pwd' => 'guest'
]);
$publisher = new SyncPublisher($driver, 'xchange');
$publisher->publish('my_message', 'routing_key', [ 'meta' => 'data' ]);
$driver = DriverFactory::getDriver([
'host' => 'default',
'port' => '5672',
'user' => 'guest',
'pwd' => 'guest'
]);
$handlerBuilder = new HandlerBuilder($driver);
$handler = $handlerBuilder->sync()->build(new ReturnConsumer());
$daemon = new QueueHandlingDaemon($driver, $handler, 'test');
$worker = new Worker($daemon);
$worker->run();
In the command-line, launch both scripts from a different terminal, the message 'my_message', should be displayed in the publisher terminal.
You can add your emitter to subscribe events:
$emitter = new League\Event\Emitter();
$emitter->addListener(new MyListener());
new QueueHandlingDaemon([..], $emitter);
Based on events, you can subscribe a built-in metric publisher which will send this metrics:
daemon.started
(increment)daemon.stopped
(increment)daemon.message_received
(increment)daemon.message_consumed
(increment)daemon.message_processing_time
(timing)
There is an implementation for StatsD and DogStatsD.
$config = ['host' => 'host', 'port' => 'port'];
// StatsD
$metricService = MetricServiceFactory::create('statsd', $config);
// DogStatsD
$tags = ['service' => 'myService']; // This tags will be sent with all the metrics
$metricService = MetricServiceFactory::create('dogstats', $config, $tags);
$emitter = new League\Event\Emitter();
$emitter->useListenerProvider(new SendMetricListenerProvider($metricService));
new QueueHandlingDaemon([..], $emitter);
All these examples are also available in the example
directory.
You can now use handlers to modify the consumption behaviour. For retro-compatibility reasons, a
ContinueOnFailureHandler
has been created to reproduce the previous default behaviour. Please, do not use it anymore
as it is quite dangerous to allow the worker to continue when receiving an error.
To ease the use of the handlers, please build the handler stack using HandlerBuilder
.