-
Notifications
You must be signed in to change notification settings - Fork 439
/
Copy pathRdKafkaConsumer.php
192 lines (163 loc) · 4.29 KB
/
RdKafkaConsumer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
namespace Enqueue\RdKafka;
use Interop\Queue\InvalidMessageException;
use Interop\Queue\PsrConsumer;
use Interop\Queue\PsrMessage;
use RdKafka\KafkaConsumer;
use RdKafka\TopicPartition;
class RdKafkaConsumer implements PsrConsumer
{
use SerializerAwareTrait;
/**
* @var KafkaConsumer
*/
private $consumer;
/**
* @var RdKafkaContext
*/
private $context;
/**
* @var RdKafkaTopic
*/
private $topic;
/**
* @var bool
*/
private $subscribed;
/**
* @var bool
*/
private $commitAsync;
/**
* @var int|null
*/
private $offset;
/**
* @param KafkaConsumer $consumer
* @param RdKafkaContext $context
* @param RdKafkaTopic $topic
* @param Serializer $serializer
*/
public function __construct(KafkaConsumer $consumer, RdKafkaContext $context, RdKafkaTopic $topic, Serializer $serializer)
{
$this->consumer = $consumer;
$this->context = $context;
$this->topic = $topic;
$this->subscribed = false;
$this->commitAsync = false;
$this->offset = null;
$this->setSerializer($serializer);
}
/**
* @return bool
*/
public function isCommitAsync()
{
return $this->commitAsync;
}
/**
* @param bool $async
*/
public function setCommitAsync($async)
{
$this->commitAsync = (bool) $async;
}
public function setOffset($offset)
{
if ($this->subscribed) {
throw new \LogicException('The consumer has already subscribed.');
}
$this->offset = $offset;
}
/**
* {@inheritdoc}
*/
public function getQueue()
{
return $this->topic;
}
/**
* {@inheritdoc}
*/
public function receive($timeout = 0)
{
if (false == $this->subscribed) {
$this->consumer->assign([new TopicPartition(
$this->getQueue()->getQueueName(),
$this->getQueue()->getPartition(),
$this->offset
)]);
$this->subscribed = true;
}
$message = null;
if ($timeout > 0) {
$message = $this->doReceive($timeout);
} else {
while (true) {
if ($message = $this->doReceive(500)) {
break;
}
}
}
return $message;
}
/**
* {@inheritdoc}
*/
public function receiveNoWait()
{
throw new \LogicException('Not implemented');
}
/**
* {@inheritdoc}
*
* @param RdKafkaMessage $message
*/
public function acknowledge(PsrMessage $message)
{
InvalidMessageException::assertMessageInstanceOf($message, RdKafkaMessage::class);
if (false == $message->getKafkaMessage()) {
throw new \LogicException('The message could not be acknowledged because it does not have kafka message set.');
}
if ($this->isCommitAsync()) {
$this->consumer->commitAsync($message->getKafkaMessage());
} else {
$this->consumer->commit($message->getKafkaMessage());
}
}
/**
* {@inheritdoc}
*
* @param RdKafkaMessage $message
*/
public function reject(PsrMessage $message, $requeue = false)
{
$this->acknowledge($message);
if ($requeue) {
$this->context->createProducer()->send($this->topic, $message);
}
}
/**
* @param int $timeout
*
* @return RdKafkaMessage|null
*/
private function doReceive($timeout)
{
$kafkaMessage = $this->consumer->consume($timeout);
switch ($kafkaMessage->err) {
case RD_KAFKA_RESP_ERR__PARTITION_EOF:
case RD_KAFKA_RESP_ERR__TIMED_OUT:
break;
case RD_KAFKA_RESP_ERR_NO_ERROR:
$message = $this->serializer->toMessage($kafkaMessage->payload);
$message->setKey($kafkaMessage->key);
$message->setPartition($kafkaMessage->partition);
$message->setKafkaMessage($kafkaMessage);
return $message;
default:
throw new \LogicException($kafkaMessage->errstr(), $kafkaMessage->err);
break;
}
}
}