Golang library for consuming Kinesis stream data
Find a file
2016-04-30 16:21:49 -07:00
emitter Move emitters to separate packages 2016-02-08 19:39:09 -08:00
examples Update function name to represent functionality 2016-04-30 09:14:25 -07:00
vendor add gvt manifest 2016-02-09 13:30:54 -08:00
.gitignore add gvt manifest 2016-02-09 13:30:54 -08:00
awsbackoff.go Fix recoverable error tests 2016-04-30 16:20:01 -07:00
buffer.go Add config options to Consumer 2016-02-09 22:31:15 -08:00
buffer_test.go Add config options to Consumer 2016-02-09 22:31:15 -08:00
checkpoint.go Refactor to use handler func 2016-02-06 17:50:17 -08:00
checkpoint_test.go Refactor to use handler func 2016-02-06 17:50:17 -08:00
consumer.go Add config options to Consumer 2016-02-09 22:31:15 -08:00
consumer_test.go Add config options to Consumer 2016-02-09 22:31:15 -08:00
CONTRIBUTING.md Rename License file and add Contributing sections 2015-05-23 10:24:53 -07:00
errors.go Add line-breaks after blocks 2016-04-30 16:21:49 -07:00
errors_test.go Fix recoverable error tests 2016-04-30 16:20:01 -07:00
handler.go Refactor to use handler func 2016-02-06 17:50:17 -08:00
logger.go Refactor to use handler func 2016-02-06 17:50:17 -08:00
MIT-LICENSE Rename License file and add Contributing sections 2015-05-23 10:24:53 -07:00
README.md Merge pull request #25 from robbles/master 2016-02-16 10:50:01 -08:00

Golang Kinesis Connectors

Kinesis connector applications written in Go

With the new release of Kinesis Firehose I'd recommend using the Lambda Streams to Firehose project for loading data directly into S3 and Redshift.

Inspired by the Amazon Kinesis Connector Library. This library is intended to be a lightweight wrapper around the Kinesis API to handle batching records, setting checkpoints, respecting ratelimits, and recovering from network errors.

golang_kinesis_connector

Overview

The consumer expects a handler func that will process a buffer of incoming records.

func main() {
  var(
    app = flag.String("app", "", "The app name")
    stream = flag.String("stream", "", "The stream name")
  )
  flag.Parse()

  // create new consumer
  c := connector.NewConsumer(*app, *stream)

  // override default values
  c.Set("maxBatchCount", 200)
  c.Set("pollInterval", "3s")

  // start consuming records from the queues
  c.Start(connector.HandlerFunc(func(b connector.Buffer) {
    fmt.Println(b.GetRecords())
    // process the records
  }))

  select {}
}

Installation

Get the package source:

$ go get github.com/harlow/kinesis-connectors

Fetching Dependencies

Install gvt:

$ export GO15VENDOREXPERIMENT=1
$ go get github.com/FiloSottile/gvt

Install dependencies into ./vendor/:

$ gvt restore

Examples

Use the seed stream code to put sample data onto the stream.

Logging

Default logging is handled by go-kit package log. Applications can override the default loging behaviour by implementing the Logger interface.

connector.SetLogger(NewCustomLogger())

Contributing

Please see CONTRIBUTING.md for more information. Thank you, contributors!

License

Copyright (c) 2015 Harlow Ward. It is free software, and may be redistributed under the terms specified in the LICENSE file.