kinesis icon indicating copy to clipboard operation
kinesis copied to clipboard

A Node.js stream implementation of Amazon's Kinesis

Results 8 kinesis issues
Sort by recently updated
recently updated
newest added

Hi everyone, I'm just finished my project and started to running it, but I'm receiving the same message twice. Here is my code: ``` function connectToOrderStream(){ var kinesisSource = kinesis.stream({...

Hi, What is the right way to close/terminate a Kinesis stream? I would like a Kinesis stream to stop consuming any resources. I'm using only the readable part of the...

The default limit is set to 25, which is the Kinesis API default. The limit can be overridden with `options.limit = newLimit`.

By getting records immediately after a successful `GetRecords` call there is the potentially starving other Kinesis consumers on the stream. This change adds an optional `backoffTime` (ms) option that sleeps...

Any plans to support [KPL aggregated records](https://github.com/awslabs/amazon-kinesis-producer/blob/master/aggregation-format.md)?

Hi, I found it is only putRecord but no putRecords for batch operation. I have just do the load test today, when the write reach 200/sec, response will be 400...

I have a stream where I've split and merged shards a few times, and I have an app pushing data to it using this package (which is awesome, btw). I...