Taking some inspiration from: https://github.com/tj/go-kinesis/blob/master/kinesis.go#L50-L75
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package connector
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/apex/log"
|
|
)
|
|
|
|
const (
|
|
defaultBufferSize = 500
|
|
)
|
|
|
|
type Config struct {
|
|
// AppName is the application name.
|
|
AppName string
|
|
|
|
// StreamName is the Kinesis stream.
|
|
StreamName string
|
|
|
|
// FlushInterval is a regular interval for flushing the buffer. Defaults to 1s.
|
|
FlushInterval time.Duration
|
|
|
|
// BufferSize determines the batch request size. Must not exceed 500. Defaults to 500.
|
|
BufferSize int
|
|
|
|
// Logger is the logger used. Defaults to log.Log.
|
|
Logger log.Interface
|
|
}
|
|
|
|
// defaults for configuration.
|
|
func (c *Config) setDefaults() {
|
|
if c.Logger == nil {
|
|
c.Logger = log.Log
|
|
}
|
|
|
|
c.Logger = c.Logger.WithFields(log.Fields{
|
|
"package": "kinesis-connectors",
|
|
})
|
|
|
|
if c.AppName == "" {
|
|
c.Logger.WithField("type", "config").Error("AppName required")
|
|
os.Exit(1)
|
|
}
|
|
|
|
if c.StreamName == "" {
|
|
c.Logger.WithField("type", "config").Error("AppName required")
|
|
os.Exit(1)
|
|
}
|
|
|
|
c.Logger = c.Logger.WithFields(log.Fields{
|
|
"app": c.AppName,
|
|
"stream": c.StreamName,
|
|
})
|
|
|
|
if c.BufferSize == 0 {
|
|
c.BufferSize = defaultBufferSize
|
|
}
|
|
|
|
if c.FlushInterval == 0 {
|
|
c.FlushInterval = time.Second
|
|
}
|
|
}
|