@@ -26,7 +26,7 @@ check code (perhaps using zookeeper or consul). For older brokers, you can
26
26
achieve something similar by manually assigning different partitions to each
27
27
consumer instance with config management tools like chef, ansible, etc. This
28
28
approach will work fine, though it does not support rebalancing on failures.
29
- See ` Compatibility <http://kafka-python.readthedocs.org/en/master/compatibility.html >`_
29
+ See <http://kafka-python.readthedocs.org/en/master/compatibility.html>
30
30
for more details.
31
31
32
32
Please note that the master branch may contain unreleased features. For release
@@ -41,7 +41,7 @@ KafkaConsumer is a high-level message consumer, intended to operate as similarly
41
41
as possible to the official 0.9 java client. Full support for coordinated
42
42
consumer groups requires use of kafka brokers that support the 0.9 Group APIs.
43
43
44
- See ` ReadTheDocs <http://kafka-python.readthedocs.org/en/master/apidoc/KafkaConsumer.html >`_
44
+ See <http://kafka-python.readthedocs.org/en/master/apidoc/KafkaConsumer.html>
45
45
for API and configuration details.
46
46
47
47
The consumer iterator returns ConsumerRecords, which are simple namedtuples
@@ -70,7 +70,7 @@ KafkaProducer
70
70
71
71
KafkaProducer is a high-level, asynchronous message producer. The class is
72
72
intended to operate as similarly as possible to the official java client.
73
- See ` ReadTheDocs <http://kafka-python.readthedocs.org/en/master/apidoc/KafkaProducer.html >`_
73
+ See <http://kafka-python.readthedocs.org/en/master/apidoc/KafkaProducer.html>
74
74
for more details.
75
75
76
76
>>> from kafka import KafkaProducer
@@ -108,7 +108,7 @@ kafka-python supports gzip compression/decompression natively. To produce or
108
108
consume lz4 compressed messages, you must install lz4tools and xxhash (modules
109
109
may not work on python2.6). To enable snappy compression/decompression install
110
110
python-snappy (also requires snappy library).
111
- See ` Installation <http://kafka-python.readthedocs.org/en/master/install.html#optional-snappy-install >`_
111
+ See <http://kafka-python.readthedocs.org/en/master/install.html#optional-snappy-install>
112
112
for more information.
113
113
114
114
Protocol
@@ -127,4 +127,4 @@ Low-level
127
127
128
128
Legacy support is maintained for low-level consumer and producer classes,
129
129
SimpleConsumer and SimpleProducer. See
130
- ` ReadTheDocs <http://kafka-python.readthedocs.org/master/ >`_ for API details.
130
+ <http://kafka-python.readthedocs.org/master/> for API details.
0 commit comments