Skip to content

Commit cdfbb95

Browse files
committed
Document KafkaAdmin class
1 parent f00016e commit cdfbb95

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

docs/apidoc/KafkaAdmin.rst

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
KafkaAdmin
2+
===========
3+
4+
.. autoclass:: kafka.admin.KafkaAdmin
5+
:members:

kafka/admin/kafka.py

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
class KafkaAdmin(object):
1919
"""An class for administering the kafka cluster.
2020
21+
Warning:
22+
This is an unstable interface that was recently added and is subject to
23+
change without warning. In particular, many methods currently return
24+
raw protocol tuples. In future releases, we plan to make these into
25+
nicer, more pythonic objects. Unfortunately, this will likely break
26+
those interfaces.
27+
2128
The KafkaAdmin class will negotiate for the latest version of each message protocol format supported
2229
by both the kafka-python client library and the kafka broker. Usage of optional fields from protocol
2330
versions that are not supported by the broker will result in UnsupportedVersionError exceptions.

0 commit comments

Comments
 (0)