2017-02-08 20:03:06 +00:00
|
|
|
# amazon-kinesis-client-go
|
2017-02-08 20:23:00 +00:00
|
|
|
|
|
|
|
|
A port of [amazon-kinesis-client-python](https://github.com/awslabs/amazon-kinesis-client-python) to Go.
|
|
|
|
|
|
|
|
|
|
## Running the Consumer
|
|
|
|
|
|
|
|
|
|
Edit the file `consumer.properties` to point at a Kinesis stream that has some data.
|
|
|
|
|
Build the consumer binary:
|
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
make build
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Then run:
|
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
make run
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This will download the jar files necessary to run the KCL, and then launch the KCL communicating with the consumer binary.
|