From 67aadbdd6ee0bc957517284ca6ef108af4c9c03f Mon Sep 17 00:00:00 2001 From: Maxim Vladimirskiy Date: Mon, 11 Sep 2017 09:45:43 +0300 Subject: [PATCH] Prep v0.14.0 --- README.md | 4 ++-- howto-install.md | 4 ++-- quick-start-curl.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b2e08da1..510f1b73 100644 --- a/README.md +++ b/README.md @@ -177,12 +177,12 @@ consumption (Read more about what the Kafka consumer groups [here](http://kafka.apache.org/documentation.html#intro_consumers)). If a Kafka-Pixy instance has not received consume requests for a topic for -[registration timeout](https://github.com/mailgun/kafka-pixy/blob/master/default.yaml#L72), +[subscription timeout](https://github.com/mailgun/kafka-pixy/blob/master/default.yaml#L139), then it unsubscribes from the topic, and the topic partitions are redistributed among Kafka-Pixy instances that are still consuming from it. If there are no unread messages in the topic the request will block -waiting for [long polling timeout](https://github.com/mailgun/kafka-pixy/blob/master/default.yaml#L67). +waiting for [long polling timeout](https://github.com/mailgun/kafka-pixy/blob/master/default.yaml#L109). If there are no messages produced during this long poll waiting then the request will return **408 Request Timeout** error, otherwise the response will be a JSON document of the following structure: diff --git a/howto-install.md b/howto-install.md index 5ff00173..8269c68f 100644 --- a/howto-install.md +++ b/howto-install.md @@ -5,13 +5,13 @@ The easiest way to install Kafka-Pixy is to download and unpack a release archive: ``` -curl -L https://github.com/mailgun/kafka-pixy/releases/download/v0.13.0/kafka-pixy-v0.13.0-linux-amd64.tar.gz | tar xz +curl -L https://github.com/mailgun/kafka-pixy/releases/download/v0.14.0/kafka-pixy-v0.14.0-linux-amd64.tar.gz | tar xz ``` Create a configuration file using `default.yaml` as a template: ``` -cd kafka-pixy-v0.13.0-linux-amd64 +cd kafka-pixy-v0.14.0-linux-amd64 cp default.yaml config.yaml ``` diff --git a/quick-start-curl.md b/quick-start-curl.md index 541003fe..1e84e90e 100644 --- a/quick-start-curl.md +++ b/quick-start-curl.md @@ -16,7 +16,7 @@ curl -G localhost:19092/topics/foo/messages?group=bar ``` The call is exected to fail after the configured configured -[long polling timeout](https://github.com/mailgun/kafka-pixy/blob/master/default.yaml#L103) +[long polling timeout](https://github.com/mailgun/kafka-pixy/blob/master/default.yaml#L109) elapses. But the important side effect is that initial offsets will be stored in the Kafka cluster for the used consumer group.