A sample AWS Lambda function that accepts messages from an Amazon Kinesis Stream and transfers the messages to another data transport.
288
stars
60
forks
source link
Seeing the following error "Record too large to be pushed to target 'reconnectToDEV' of type 'kinesis'" #37
Open
joebowen opened 5 years ago
Hi,
I'm seeing the following error in my kinesis fanout handler deployment:
'Record too large to be pushed to target 'reconnectToDEV' of type 'kinesis''
The system is setup to take a single record from a kinesis stream (batch size == 1) and push it to a different kinesis stream.
So the question is, how is a single record from a kinesis stream too big to put into a different kinesis stream?
I suspect there is an issue with how the fanout handler is calculating the max allowed size from this line: https://github.com/aws-samples/aws-lambda-fanout/blob/master/fanout.js#L63
AWS Support suggested that I open up a github issue, ticket #6553563951
Thank you,
Joe Bowen