Put aws-skd-v2 note in installation section
This commit is contained in:
parent
6cbda0f706
commit
c2b9f79d7a
1 changed files with 3 additions and 3 deletions
|
|
@ -1,8 +1,5 @@
|
||||||
# Golang Kinesis Consumer
|
# Golang Kinesis Consumer
|
||||||
|
|
||||||
Note: This repo has been upgraded to use AWS SDK v2. If you are still using
|
|
||||||
AWS SDK V1: https://github.com/harlow/kinesis-consumer/releases/tag/v0.3.5
|
|
||||||
|
|
||||||
 [](https://travis-ci.com/harlow/kinesis-consumer) [](https://godoc.org/github.com/harlow/kinesis-consumer) [](https://goreportcard.com/report/harlow/kinesis-consumer)
|
 [](https://travis-ci.com/harlow/kinesis-consumer) [](https://godoc.org/github.com/harlow/kinesis-consumer) [](https://goreportcard.com/report/harlow/kinesis-consumer)
|
||||||
|
|
||||||
Kinesis consumer applications written in Go. This library is intended to be a lightweight wrapper around the Kinesis API to read records, save checkpoints (with swappable backends), and gracefully recover from service timeouts/errors.
|
Kinesis consumer applications written in Go. This library is intended to be a lightweight wrapper around the Kinesis API to read records, save checkpoints (with swappable backends), and gracefully recover from service timeouts/errors.
|
||||||
|
|
@ -19,6 +16,9 @@ Get the package source:
|
||||||
|
|
||||||
$ go get github.com/harlow/kinesis-consumer
|
$ go get github.com/harlow/kinesis-consumer
|
||||||
|
|
||||||
|
Note: This repo now requires the AWS SDK V2 package. If you are still using
|
||||||
|
AWS SDK V1 then use: https://github.com/harlow/kinesis-consumer/releases/tag/v0.3.5
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
The consumer leverages a handler func that accepts a Kinesis record. The `Scan` method will consume all shards concurrently and call the callback func as it receives records from the stream.
|
The consumer leverages a handler func that accepts a Kinesis record. The `Scan` method will consume all shards concurrently and call the callback func as it receives records from the stream.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue