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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
import base64
from collections import defaultdict
from functools import partial
from itertools import count, cycle
import logging
from operator import attrgetter
import struct
import time
import zlib
from kafka.common import *
from kafka.conn import KafkaConnection
from kafka.protocol import KafkaProtocol
log = logging.getLogger("kafka")
class KafkaClient(object):
CLIENT_ID = "kafka-python"
ID_GEN = count()
def __init__(self, host, port, bufsize=4096):
# We need one connection to bootstrap
self.bufsize = bufsize
self.conns = { # (host, port) -> KafkaConnection
(host, port): KafkaConnection(host, port, bufsize)
}
self.brokers = {} # broker_id -> BrokerMetadata
self.topics_to_brokers = {} # topic_id -> broker_id
self.topic_partitions = defaultdict(list) # topic_id -> [0, 1, 2, ...]
self._load_metadata_for_topics()
##################
# Private API #
##################
def _get_conn_for_broker(self, broker):
"Get or create a connection to a broker"
if (broker.host, broker.port) not in self.conns:
self.conns[(broker.host, broker.port)] = KafkaConnection(broker.host, broker.port, self.bufsize)
return self.conns[(broker.host, broker.port)]
def _get_leader_for_partition(self, topic, partition):
key = TopicAndPartition(topic, partition)
if key not in self.topics_to_brokers:
self._load_metadata_for_topics(topic)
if key not in self.topics_to_brokers:
raise Exception("Partition does not exist: %s" % str(key))
return self.topics_to_brokers[key]
def _load_metadata_for_topics(self, *topics):
"""
Discover brokers and metadata for a set of topics. This method will
recurse in the event of a retry.
"""
requestId = self._next_id()
request = KafkaProtocol.encode_metadata_request(KafkaClient.CLIENT_ID, requestId, topics)
response = self._send_broker_unaware_request(requestId, request)
if response is None:
raise Exception("All servers failed to process request")
(brokers, topics) = KafkaProtocol.decode_metadata_response(response)
log.debug("Broker metadata: %s", brokers)
log.debug("Topic metadata: %s", topics)
self.brokers.update(brokers)
self.topics_to_brokers = {}
for topic, partitions in topics.items():
for partition, meta in partitions.items():
if meta.leader == -1:
log.info("Partition is unassigned, delay for 1s and retry")
time.sleep(1)
self._load_metadata_for_topics(topic)
else:
self.topics_to_brokers[TopicAndPartition(topic, partition)] = brokers[meta.leader]
self.topic_partitions[topic].append(partition)
def _next_id(self):
"Generate a new correlation id"
return KafkaClient.ID_GEN.next()
def _send_broker_unaware_request(self, requestId, request):
"""
Attempt to send a broker-agnostic request to one of the available brokers.
Keep trying until you succeed.
"""
for conn in self.conns.values():
try:
conn.send(requestId, request)
response = conn.recv(requestId)
return response
except Exception, e:
log.warning("Could not send request [%r] to server %s, trying next server: %s" % (request, conn, e))
continue
return None
def _send_broker_aware_request(self, payloads, encoder_fn, decoder_fn):
"""
Group a list of request payloads by topic+partition and send them to the
leader broker for that partition using the supplied encode/decode functions
Params
======
payloads: list of object-like entities with a topic and partition attribute
encode_fn: a method to encode the list of payloads to a request body, must accept
client_id, correlation_id, and payloads as keyword arguments
decode_fn: a method to decode a response body into response objects. The response
objects must be object-like and have topic and partition attributes
Return
======
List of response objects in the same order as the supplied payloads
"""
# Group the requests by topic+partition
original_keys = []
payloads_by_broker = defaultdict(list)
for payload in payloads:
payloads_by_broker[self._get_leader_for_partition(payload.topic, payload.partition)].append(payload)
original_keys.append((payload.topic, payload.partition))
# Accumulate the responses in a dictionary
acc = {}
# For each broker, send the list of request payloads
for broker, payloads in payloads_by_broker.items():
conn = self._get_conn_for_broker(broker)
requestId = self._next_id()
request = encoder_fn(client_id=KafkaClient.CLIENT_ID, correlation_id=requestId, payloads=payloads)
# Send the request, recv the response
conn.send(requestId, request)
response = conn.recv(requestId)
for response in decoder_fn(response):
acc[(response.topic, response.partition)] = response
# Order the accumulated responses by the original key order
return (acc[k] for k in original_keys)
#################
# Public API #
#################
def close(self):
for conn in self.conns.values():
conn.close()
def send_produce_request(self, payloads=[], acks=1, timeout=1000, fail_on_error=True, callback=None):
"""
Encode and send some ProduceRequests
ProduceRequests will be grouped by (topic, partition) and then sent to a specific
broker. Output is a list of responses in the same order as the list of payloads
specified
Params
======
payloads: list of ProduceRequest
fail_on_error: boolean, should we raise an Exception if we encounter an API error?
callback: function, instead of returning the ProduceResponse, first pass it through this function
Return
======
list of ProduceResponse or callback(ProduceResponse), in the order of input payloads
"""
resps = self._send_broker_aware_request(payloads,
partial(KafkaProtocol.encode_produce_request, acks=acks, timeout=timeout),
KafkaProtocol.decode_produce_response)
out = []
for resp in resps:
# Check for errors
if fail_on_error == True and resp.error != ErrorMapping.NO_ERROR:
raise Exception("ProduceRequest for %s failed with errorcode=%d" %
(TopicAndPartition(resp.topic, resp.partition), resp.error))
# Run the callback
if callback is not None:
out.append(callback(resp))
else:
out.append(resp)
return out
def send_fetch_request(self, payloads=[], fail_on_error=True, callback=None):
"""
Encode and send a FetchRequest
Payloads are grouped by topic and partition so they can be pipelined to the same
brokers.
"""
resps = self._send_broker_aware_request(payloads,
KafkaProtocol.encode_fetch_request,
KafkaProtocol.decode_fetch_response)
out = []
for resp in resps:
# Check for errors
if fail_on_error == True and resp.error != ErrorMapping.NO_ERROR:
raise Exception("FetchRequest for %s failed with errorcode=%d" %
(TopicAndPartition(resp.topic, resp.partition), resp.error))
# Run the callback
if callback is not None:
out.append(callback(resp))
else:
out.append(resp)
return out
def send_offset_request(self, payloads=[], fail_on_error=True, callback=None):
resps = self._send_broker_aware_request(payloads,
KafkaProtocol.encode_offset_request,
KafkaProtocol.decode_offset_response)
out = []
for resp in resps:
if fail_on_error == True and resp.error != ErrorMapping.NO_ERROR:
raise Exception("OffsetRequest failed with errorcode=%s", resp.error)
if callback is not None:
out.append(callback(resp))
else:
out.append(resp)
return out
def send_offset_commit_request(self, group, payloads=[], fail_on_error=True, callback=None):
raise NotImplementedError("Broker-managed offsets not supported in 0.8")
resps = self._send_broker_aware_request(payloads,
partial(KafkaProtocol.encode_offset_commit_request, group=group),
KafkaProtocol.decode_offset_commit_response)
out = []
for resp in resps:
if fail_on_error == True and resp.error != ErrorMapping.NO_ERROR:
raise Exception("OffsetCommitRequest failed with errorcode=%s", resp.error)
if callback is not None:
out.append(callback(resp))
else:
out.append(resp)
return out
def send_offset_fetch_request(self, group, payloads=[], fail_on_error=True, callback=None):
raise NotImplementedError("Broker-managed offsets not supported in 0.8")
resps = self._send_broker_aware_request(payloads,
partial(KafkaProtocol.encode_offset_fetch_request, group=group),
KafkaProtocol.decode_offset_fetch_response)
out = []
for resp in resps:
if fail_on_error == True and resp.error != ErrorMapping.NO_ERROR:
raise Exception("OffsetCommitRequest failed with errorcode=%s", resp.error)
if callback is not None:
out.append(callback(resp))
else:
out.append(resp)
return out
|