12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- use Kafka\Produce;
- /**
- * Event relayer for Apache Kafka.
- * Configuring for WANCache:
- * 'relayerConfig' => [ 'class' => 'EventRelayerKafka', 'KafkaEventHost' => 'localhost:9092' ],
- */
- class EventRelayerKafka extends EventRelayer {
- /**
- * Configuration.
- *
- * @var Config
- */
- protected $config;
- /**
- * Kafka producer.
- *
- * @var Produce
- */
- protected $producer;
- /**
- * Create Kafka producer.
- *
- * @param array $params
- */
- public function __construct( array $params ) {
- parent::__construct( $params );
- $this->config = new HashConfig( $params );
- if ( !$this->config->has( 'KafkaEventHost' ) ) {
- throw new InvalidArgumentException( "KafkaEventHost must be configured" );
- }
- }
- /**
- * Get the producer object from kafka-php.
- * @return Produce
- */
- protected function getKafkaProducer() {
- if ( !$this->producer ) {
- $this->producer = Produce::getInstance(
- null, null, $this->config->get( 'KafkaEventHost' ) );
- }
- return $this->producer;
- }
- protected function doNotify( $channel, array $events ) {
- $jsonEvents = array_map( 'json_encode', $events );
- try {
- $producer = $this->getKafkaProducer();
- $producer->setMessages( $channel, 0, $jsonEvents );
- $producer->send();
- } catch ( \Kafka\Exception $e ) {
- $this->logger->warning( "Sending events failed: $e" );
- return false;
- }
- return true;
- }
- }
|