forked from php-enqueue/rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RdKafkaProducer.php
142 lines (116 loc) · 4.08 KB
/
RdKafkaProducer.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
<?php
declare(strict_types=1);
namespace Enqueue\RdKafka;
use Interop\Queue\Destination;
use Interop\Queue\Exception\InvalidDestinationException;
use Interop\Queue\Exception\InvalidMessageException;
use Interop\Queue\Exception\PriorityNotSupportedException;
use Interop\Queue\Message;
use Interop\Queue\Producer;
use RdKafka\Producer as VendorProducer;
class RdKafkaProducer implements Producer
{
use SerializerAwareTrait;
/**
* @var VendorProducer
*/
private $producer;
public function __construct(VendorProducer $producer, Serializer $serializer)
{
$this->producer = $producer;
$this->setSerializer($serializer);
}
/**
* @param RdKafkaTopic $destination
* @param RdKafkaMessage $message
*/
public function send(Destination $destination, Message $message): void
{
InvalidDestinationException::assertDestinationInstanceOf($destination, RdKafkaTopic::class);
InvalidMessageException::assertMessageInstanceOf($message, RdKafkaMessage::class);
$partition = $this->getPartition($destination, $message);
$payload = $this->serializer->toString($message);
$key = $message->getKey() ?: $destination->getKey() ?: null;
$topic = $this->producer->newTopic($destination->getTopicName(), $destination->getConf());
// Note: Topic::producev method exists in phprdkafka > 3.1.0
// Headers in payload are maintained for backwards compatibility with apps that might run on lower phprdkafka version
if (method_exists($topic, 'producev')) {
// Phprdkafka <= 3.1.0 will fail calling `producev` on librdkafka >= 1.0.0 causing segfault
// Since we are forcing to use at least librdkafka:1.0.0, no need to check the lib version anymore
if (false !== phpversion('rdkafka')
&& version_compare(phpversion('rdkafka'), '3.1.0', '<=')) {
trigger_error(
'Phprdkafka <= 3.1.0 is incompatible with librdkafka 1.0.0 when calling `producev`. '.
'Falling back to `produce` (without message headers) instead.',
\E_USER_WARNING
);
} else {
$topic->producev($partition, 0 /* must be 0 */ , $payload, $key, $message->getHeaders());
$this->producer->poll(0);
return;
}
}
$topic->produce($partition, 0 /* must be 0 */ , $payload, $key);
$this->producer->poll(0);
}
/**
* @return RdKafkaProducer
*/
public function setDeliveryDelay(int $deliveryDelay = null): Producer
{
if (null === $deliveryDelay) {
return $this;
}
throw new \LogicException('Not implemented');
}
public function getDeliveryDelay(): ?int
{
return null;
}
/**
* @return RdKafkaProducer
*/
public function setPriority(int $priority = null): Producer
{
if (null === $priority) {
return $this;
}
throw PriorityNotSupportedException::providerDoestNotSupportIt();
}
public function getPriority(): ?int
{
return null;
}
public function setTimeToLive(int $timeToLive = null): Producer
{
if (null === $timeToLive) {
return $this;
}
throw new \LogicException('Not implemented');
}
public function getTimeToLive(): ?int
{
return null;
}
public function flush(int $timeout): void
{
// Flush method is exposed in phprdkafka 4.0
if (method_exists($this->producer, 'flush')) {
$this->producer->flush($timeout);
}
}
/**
* @param RdKafkaTopic $destination
* @param RdKafkaMessage $message
*/
private function getPartition(Destination $destination, Message $message): int
{
if (null !== $message->getPartition()) {
return $message->getPartition();
}
if (null !== $destination->getPartition()) {
return $destination->getPartition();
}
return \RD_KAFKA_PARTITION_UA;
}
}