1. 安裝 Kafka 服務
直接到 kafka官網 , 下載最新的
wget https://mirror.bit.edu.cn/apache/kafka/2.5.0/kafka_2.13-2.5.0.tgz
解壓,進入目錄
tar -zxvf kafka_2.13-2.5.0.tgz
cd kafka_2.13-2.5.0
開始使用
a. 啟動 Kafka 服務
使用安裝包中的指令碼啟動單節點 Zookeeper 例項
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties
使用 kafka-server-start.sh
啟動 kafka 服務
bin/kafka-server-start.sh config/server.properties
建立 topic
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
檢視 topic
列表,檢查是否建立成功
bin/kafka-topics.sh --list --zookeeper localhost:2181
$ test
生產者,傳送訊息
bin/kafka-console-producer.sh --broker-list 127.0.0.1:9092 --topic test
服務方面到這裡就差不多了,接下來就是php的事了。
2. 安裝 PHP 擴充套件
rdkafka
安裝需要依賴 librdkafka
, 所以先安裝 librdkafka
git clone https://github.com/edenhill/librdkafka.git
cd librdkafka
./configure
make && make install
安裝php-rdkafka擴充套件
git clone https://github.com/arnaud-lb/php-rdkafka.git
cd php-rdkafka
phpize
./configure --with-php-config=/usr/local/Cellar/php@7.2/7.2.24/bin/php-config ## 這裡根據自己的情況填寫路徑
make && make install
在 php-ini
加上
extension=rdkafka.so
重啟,php-fpm,就應該可以看到該擴充套件。
3. 使用
建立一個生產者類
<?php
class KafkaProducer
{
public static $brokerList = '127.0.0.1:9092';
public static function send($message, $topic)
{
self::producer($message, $topic);
}
public static function producer($message, $topic = 'test')
{
$conf = new \RdKafka\Conf();
$conf->set('metadata.broker.list', self::$brokerList);
$producer = new \RdKafka\Producer($conf);
$topic = $producer->newTopic($topic);
$topic->produce(RD_KAFKA_PARTITION_UA, 0, json_encode($message));
$producer->poll(0);
$result = $producer->flush(10000);
if (RD_KAFKA_RESP_ERR_NO_ERROR !== $result) {
throw new \RuntimeException('Was unable to flush, messages might be lost!');
}
}
}
建立一個消費類
<?php
class KafkaConsumer
{
public static $brokerList = '127.0.0.1:9092';
public static function consumer()
{
$conf = new \RdKafka\Conf();
$conf->set('group.id', 'test');
$rk = new \RdKafka\Consumer($conf);
$rk->addBrokers("127.0.0.1");
$topicConf = new \RdKafka\TopicConf();
$topicConf->set('auto.commit.interval.ms', 100);
$topicConf->set('offset.store.method', 'broker');
$topicConf->set('auto.offset.reset', 'smallest');
$topic = $rk->newTopic('test', $topicConf);
$topic->consumeStart(0, RD_KAFKA_OFFSET_STORED);
while (true) {
$message = $topic->consume(0, 120*10000);
switch ($message->err) {
case RD_KAFKA_RESP_ERR_NO_ERROR:
var_dump($message);
break;
case RD_KAFKA_RESP_ERR__PARTITION_EOF:
echo "No more messages; will wait for more\n";
break;
case RD_KAFKA_RESP_ERR__TIMED_OUT:
echo "Timed out\n";
break;
default:
throw new \Exception($message->errstr(), $message->err);
break;
}
}
}
}
問題彙總
a. No Java runtime present, requesting install
因為 kafka 需要 java 環境支援,所以安裝 java 環境。可以到 javase-jdk14-downloads 選擇自己的版本進行下載安裝
b. 建立 topic 出現:Replication factor: 1 larger than available brokers: 0
意思是至少有一個brokers.也就是說並沒有有效的brokers可以用。你要確保你的kafka已經啟動了
參考
www.jianshu.com/p/964bdfeb9465
本作品採用《CC 協議》,轉載必須註明作者和本文連結