Skip to content

Commit

Permalink
Prep v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
horkhe committed Sep 11, 2017
1 parent 3a20634 commit 67aadbd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions howto-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion quick-start-curl.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 67aadbd

Please sign in to comment.