$ composer require hauptmedia/kafka-bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Hauptmedia\Bundle\KafkaBundle\HauptmediaKafkaBundle(),
);
}
# app/config.yml
services:
output_consumer_service:
class: Hauptmedia\Bundle\KafkaBundle\Consumer\OutputConsumer
hauptmedia_kafka:
topics:
test:
brokers:
- hostname1
- hostname2
consumer_services:
- output_consumer_service