Skip to content

Commit

Permalink
Merge pull request #88 from mailgun/maxim/develop
Browse files Browse the repository at this point in the history
Release v0.12.0
  • Loading branch information
horkhe committed Feb 22, 2017
2 parents 2a28c74 + fd77a78 commit 66c7fde
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
@@ -1,15 +1,15 @@
# Changelog

#### Version 0.12.0 (TBD)
#### Version 0.12.0 (2017-02-21)

Implemented:

* [#81](https://github.com/mailgun/kafka-pixy/pull/81) Add capability to
proxy to multiple Kafka/ZooKeeper clusters.
* [#81](https://github.com/mailgun/kafka-pixy/pull/81) Added capability
to proxy to multiple Kafka/ZooKeeper clusters.
* [#16](https://github.com/mailgun/kafka-pixy/issues/16) A YAML
configuration file can be passed to Kafka-Pixy with `--config` command
line parameter. Default configuration file is provided for reference.
* [#87](https://github.com/mailgun/kafka-pixy/pull/87) Add support for
line parameter. A default configuration file is provided for reference.
* [#87](https://github.com/mailgun/kafka-pixy/pull/87) Added support for
gRPC API.

Fixed:
Expand Down
16 changes: 9 additions & 7 deletions README.md
Expand Up @@ -48,11 +48,13 @@ to give it a try.
[gRPC](http://www.grpc.io/docs/guides/) is an opens source framework
that is using [Protocol Buffers](https://developers.google.com/protocol-buffers/docs/overview)
as interface definition language and [HTTP/2](https://http2.github.io/faq/)
as transport protocol. Kafka-Pixy defines producer/consumer API in
[grpc.proto](https://github.com/mailgun/kafka-pixy/blob/master/grpc.proto)
file. Client stubs for Golang and Python are pre-generated, but you can
easily generated for dozens of other languages. Please refer to the
gRPC [documentation](http://www.grpc.io/docs/) for information on the
as transport protocol. Kafka-Pixy API is defined in
[grpc.proto](https://github.com/mailgun/kafka-pixy/blob/master/grpc.proto).
Client stubs for [Golang](https://github.com/mailgun/kafka-pixy/blob/master/gen/golang)
and [Python](https://github.com/mailgun/kafka-pixy/tree/master/gen/python)
are generated and provided in this repository, but you can easily
generate stubs for a bunch of other languages. Please refer to the gRPC
[documentation](http://www.grpc.io/docs/) for information on the
language of your choice.

## HTTP API
Expand Down Expand Up @@ -324,13 +326,13 @@ pretty much the same on Mac.
### Step 1. Download

```
curl -L https://github.com/mailgun/kafka-pixy/releases/download/v0.11.1/kafka-pixy-v0.11.1-linux-amd64.tar.gz | tar xz
curl -L https://github.com/mailgun/kafka-pixy/releases/download/v0.12.0/kafka-pixy-v0.12.0-linux-amd64.tar.gz | tar xz
```

### Step 2. Start

```
cd kafka-pixy-v0.11.1-linux-amd64
cd kafka-pixy-v0.12.0-linux-amd64
./kafka-pixy --kafkaPeers "<host1>:9092,...,<hostN>:9092" --zookeeperPeers "<host1>:2181,...,<hostM>:2181"
```

Expand Down

0 comments on commit 66c7fde

Please sign in to comment.