mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-11-01 01:05:08 +01:00
ef4c5eb65e
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<!--
|
|
This indexer reads UserModification from user_modification Kafka topic, converts the
|
|
data into AntisocialUserUpdate by querying Gizmoduck and then writes the data to the
|
|
the search_user_updates Kafka topic.
|
|
-->
|
|
<pipeline>
|
|
<property
|
|
propName="validator"
|
|
className="org.apache.commons.pipeline.validation.SimplePipelineValidator"/>
|
|
<listener className="org.apache.commons.pipeline.listener.ObjectProcessedEventCounter"/>
|
|
<driverFactory
|
|
className="org.apache.commons.pipeline.driver.DedicatedThreadStageDriverFactory"
|
|
id="pipeline">
|
|
|
|
<!-- This queue is a factor of batchSize larger than inner queues because it is unbatched -->
|
|
<property
|
|
propName="queueFactory"
|
|
className="org.apache.commons.pipeline.util.BlockingQueueFactory$ArrayBlockingQueueFactory"
|
|
capacity="500"
|
|
fair="false"/>
|
|
</driverFactory>
|
|
|
|
<stage
|
|
className="com.twitter.search.ingester.pipeline.twitter.userupdates.UserUpdatesPipelineStage"
|
|
environment="prod"
|
|
driverFactoryId="pipeline"/>
|
|
</pipeline>
|