summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2016-05-24 14:30:24 -0700
committerDana Powers <dana.powers@gmail.com>2016-05-24 14:32:06 -0700
commit3a971ea95e43341d105a5a7def6c0cb383be9e62 (patch)
tree98a75abb41bb5a37524a758854ef504358fba960
parent5f90d436d262939e39a900e83718e666fe8f4402 (diff)
downloadkafka-python-3a971ea95e43341d105a5a7def6c0cb383be9e62.tar.gz
Update docs/index.rst re 0.10 broker support
-rw-r--r--docs/index.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 50064a6..5e74d02 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -16,7 +16,7 @@ Python client for the Apache Kafka distributed stream processing system.
kafka-python is designed to function much like the official java client, with a
sprinkling of pythonic interfaces (e.g., consumer iterators).
-kafka-python is best used with 0.9 brokers, but is backwards-compatible with
+kafka-python is best used with newer brokers (0.10 or 0.9), but is backwards-compatible with
older versions (to 0.8.0). Some features will only be enabled on newer brokers,
however; for example, fully coordinated consumer groups -- i.e., dynamic
partition assignment to multiple consumers in the same group -- requires use of
@@ -37,9 +37,9 @@ KafkaConsumer
*************
:class:`~kafka.KafkaConsumer` is a high-level message consumer, intended to
-operate as similarly as possible to the official 0.9 java client. Full support
+operate as similarly as possible to the official java client. Full support
for coordinated consumer groups requires use of kafka brokers that support the
-0.9 Group APIs.
+Group APIs: kafka v0.9+.
See `KafkaConsumer <apidoc/KafkaConsumer.html>`_ for API and configuration details.
@@ -118,7 +118,7 @@ for interacting with kafka brokers via the python repl. This is useful for
testing, probing, and general experimentation. The protocol support is
leveraged to enable a :meth:`~kafka.KafkaClient.check_version()`
method that probes a kafka broker and
-attempts to identify which version it is running (0.8.0 to 0.9).
+attempts to identify which version it is running (0.8.0 to 0.10).
Low-level