23use Kafka\MetaDataFromKafka;
25use Kafka\Protocol\Decoder;
27use Monolog\Handler\AbstractProcessingHandler;
29use Psr\Log\LoggerInterface;
70 'swallowExceptions' =>
false,
71 'logExceptions' =>
null,
84 parent::__construct( $level, $bubble );
100 $kafkaServers,
array $options = [], $level = Logger::DEBUG, $bubble =
true
102 $metadata =
new MetaDataFromKafka( $kafkaServers );
103 $produce =
new Produce( $metadata );
105 if ( isset(
$options[
'sendTimeout'] ) ) {
107 $produce->getClient()->setStreamOption(
'SendTimeoutSec', 0 );
108 $produce->getClient()->setStreamOption(
'SendTimeoutUSec',
109 intval( $timeOut * 1000000 )
112 if ( isset(
$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'] ) ) {
123 if ( isset(
$options[
'requireAck'] ) ) {
134 if ( $record[
'formatted'] !==
null ) {
135 $this->
addMessages( $record[
'channel'], [ $record[
'formatted'] ] );
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 ) {
175 }
catch ( \Kafka\Exception
$e ) {
177 'Error sending records to kafka: {exception}',
178 [
'exception' =>
$e ] );
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 );
220 if ( !array_key_exists( $topic, $this->partitions ) ) {
222 $partitions = $this->produce->getAvailablePartitions( $topic );
223 }
catch ( \Kafka\Exception
$e ) {
225 'Error getting metadata for kafka topic {topic}: {exception}',
226 [
'topic' => $topic,
'exception' =>
$e ] );
236 $details = $this->produce->getClient()->getTopicDetail( $topic );
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];
257 if ( isset( $this->
options[
'alias'][$channel] ) ) {
258 $topic = $this->
options[
'alias'][$channel];
260 $topic =
"monolog_$channel";
263 if ( $partition !==
null ) {
264 $this->produce->setMessages( $topic, $partition, $records );
274 if ( $this->
options[
'logExceptions'] instanceof LoggerInterface ) {
277 return $this->
options[
'swallowExceptions'];
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing options(say) and put it in one place. Instead of having little title-reversing if-blocks spread all over the codebase in showAnArticle
this hook is for auditing only $response
returning false will NOT prevent logging $e
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))