3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
21 namespace MediaWiki\Logger\Monolog
;
23 use Kafka\MetaDataFromKafka
;
25 use Kafka\Protocol\Decoder
;
26 use MediaWiki\Logger\LoggerFactory
;
27 use Monolog\Handler\AbstractProcessingHandler
;
29 use Psr\Log\LoggerInterface
;
32 * Log handler sends log events to a kafka server.
34 * Constructor options array arguments:
35 * * alias: map from monolog channel to kafka topic name. When no
36 * alias exists the topic "monolog_$channel" will be used.
37 * * swallowExceptions: Swallow exceptions that occur while talking to
38 * kafka. Defaults to false.
39 * * logExceptions: Log exceptions talking to kafka here. Either null,
40 * the name of a channel to log to, or an object implementing
41 * FormatterInterface. Defaults to null.
43 * Requires the nmred/kafka-php library, version >= 1.3.0
46 * @author Erik Bernhardson <ebernhardson@wikimedia.org>
47 * @copyright © 2015 Erik Bernhardson and Wikimedia Foundation.
49 class KafkaHandler
extends AbstractProcessingHandler
{
51 * @var Produce Sends requests to kafka
56 * @var array Optional handler configuration
61 * @var array Map from topic name to partition this request produces to
63 protected $partitions = [];
66 * @var array defaults for constructor options
68 private static $defaultOptions = [
69 'alias' => [], // map from monolog channel to kafka topic
70 'swallowExceptions' => false, // swallow exceptions sending records
71 'logExceptions' => null, // A PSR3 logger to inform about errors
76 * @param Produce $produce Kafka instance to produce through
77 * @param array $options optional handler configuration
78 * @param int $level The minimum logging level at which this handler will be triggered
79 * @param bool $bubble Whether the messages that are handled can bubble up the stack or not
81 public function __construct(
82 Produce
$produce, array $options, $level = Logger
::DEBUG
, $bubble = true
84 parent
::__construct( $level, $bubble );
85 $this->produce
= $produce;
86 $this->options
= array_merge( self
::$defaultOptions, $options );
90 * Constructs the necessary support objects and returns a KafkaHandler
93 * @param string[] $kafkaServers
94 * @param array $options
95 * @param int $level The minimum logging level at which this handle will be triggered
96 * @param bool $bubble Whether the messages that are handled can bubble the stack or not
97 * @return KafkaHandler
99 public static function factory(
100 $kafkaServers, array $options = [], $level = Logger
::DEBUG
, $bubble = true
102 $metadata = new MetaDataFromKafka( $kafkaServers );
103 $produce = new Produce( $metadata );
105 if ( isset( $options['sendTimeout'] ) ) {
106 $timeOut = $options['sendTimeout'];
107 $produce->getClient()->setStreamOption( 'SendTimeoutSec', 0 );
108 $produce->getClient()->setStreamOption( 'SendTimeoutUSec',
109 intval( $timeOut * 1000000 )
112 if ( isset( $options['recvTimeout'] ) ) {
113 $timeOut = $options['recvTimeout'];
114 $produce->getClient()->setStreamOption( 'RecvTimeoutSec', 0 );
115 $produce->getClient()->setStreamOption( 'RecvTimeoutUSec',
116 intval( $timeOut * 1000000 )
119 if ( isset( $options['logExceptions'] ) && is_string( $options['logExceptions'] ) ) {
120 $options['logExceptions'] = LoggerFactory
::getInstance( $options['logExceptions'] );
123 if ( isset( $options['requireAck'] ) ) {
124 $produce->setRequireAck( $options['requireAck'] );
127 return new self( $produce, $options, $level, $bubble );
133 protected function write( array $record ) {
134 if ( $record['formatted'] !== null ) {
135 $this->addMessages( $record['channel'], [ $record['formatted'] ] );
143 public function handleBatch( array $batch ) {
145 foreach ( $batch as $record ) {
146 if ( $record['level'] < $this->level
) {
149 $channels[$record['channel']][] = $this->processRecord( $record );
152 $formatter = $this->getFormatter();
153 foreach ( $channels as $channel => $records ) {
155 foreach ( $records as $idx => $record ) {
156 $message = $formatter->format( $record );
157 if ( $message !== null ) {
158 $messages[] = $message;
162 $this->addMessages( $channel, $messages );
170 * Send any records in the kafka client internal queue.
172 protected function send() {
174 $response = $this->produce
->send();
175 } catch ( \Kafka\Exception
$e ) {
176 $ignore = $this->warning(
177 'Error sending records to kafka: {exception}',
178 [ 'exception' => $e ] );
186 if ( is_bool( $response ) ) {
191 foreach ( $response as $topicName => $partitionResponse ) {
192 foreach ( $partitionResponse as $partition => $info ) {
193 if ( $info['errCode'] === 0 ) {
198 'Error producing to %s (errno %d): %s',
201 Decoder
::getError( $info['errCode'] )
207 $error = implode( "\n", $errors );
208 if ( !$this->warning( $error ) ) {
209 throw new \
RuntimeException( $error );
215 * @param string $topic Name of topic to get partition for
216 * @return int|null The random partition to produce to for this request,
217 * or null if a partition could not be determined.
219 protected function getRandomPartition( $topic ) {
220 if ( !array_key_exists( $topic, $this->partitions
) ) {
222 $partitions = $this->produce
->getAvailablePartitions( $topic );
223 } catch ( \Kafka\Exception
$e ) {
224 $ignore = $this->warning(
225 'Error getting metadata for kafka topic {topic}: {exception}',
226 [ 'topic' => $topic, 'exception' => $e ] );
233 $key = array_rand( $partitions );
234 $this->partitions
[$topic] = $partitions[$key];
236 $details = $this->produce
->getClient()->getTopicDetail( $topic );
237 $ignore = $this->warning(
238 'No partitions available for kafka topic {topic}',
239 [ 'topic' => $topic, 'kafka' => $details ]
242 throw new \
RuntimeException( "No partitions available for kafka topic $topic" );
244 $this->partitions
[$topic] = null;
247 return $this->partitions
[$topic];
251 * Adds records for a channel to the Kafka client internal queue.
253 * @param string $channel Name of Monolog channel records belong to
254 * @param array $records List of records to append
256 protected function addMessages( $channel, array $records ) {
257 if ( isset( $this->options
['alias'][$channel] ) ) {
258 $topic = $this->options
['alias'][$channel];
260 $topic = "monolog_$channel";
262 $partition = $this->getRandomPartition( $topic );
263 if ( $partition !== null ) {
264 $this->produce
->setMessages( $topic, $partition, $records );
269 * @param string $message PSR3 compatible message string
270 * @param array $context PSR3 compatible log context
271 * @return bool true if caller should ignore warning
273 protected function warning( $message, array $context = [] ) {
274 if ( $this->options
['logExceptions'] instanceof LoggerInterface
) {
275 $this->options
['logExceptions']->warning( $message, $context );
277 return $this->options
['swallowExceptions'];