Golang library for consuming Kinesis stream data
Find a file
2016-05-01 10:42:51 -07:00
emitter Leverage AWS S3 retries 2016-05-01 10:42:28 -07:00
examples Leverage AWS S3 retries 2016-05-01 10:42:28 -07:00
vendor add gvt manifest 2016-02-09 13:30:54 -08:00
.gitignore Add benchmark test to buffer 2016-05-01 10:42:51 -07:00
buffer.go Add config options to Consumer 2016-02-09 22:31:15 -08:00
buffer_test.go Add benchmark test to buffer 2016-05-01 10:42:51 -07: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 Use Apex log for logging (#27) 2016-04-30 22:23:35 -07: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
handler.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 Use Apex log for logging (#27) 2016-04-30 22:23:35 -07: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)

  // 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][log_interface].

import(
  "os"

  "github.com/apex/log"
  "github.com/apex/log/handlers/json"
)

func main() {
  c := connector.NewConsumer("signupAgg", "signups")
  c.SetLogHandler(json.New(os.Stderr))
  // ...
}

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.