Skip to content

Commit

Permalink
fix(transform): Change Kinesis Payload Limit to MB (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshlbrd committed Jul 17, 2024
1 parent 80370e7 commit 16baaa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions transform/send_aws_kinesis_data_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import (
"github.com/google/uuid"
)

// Records greater than 1 MiB in size cannot be
// Records greater than 1 MB in size cannot be
// put into a Kinesis Data Stream.
const sendAWSKinesisDataStreamMessageSizeLimit = 1024 * 1024 * 1
const sendAWSKinesisDataStreamMessageSizeLimit = 1000 * 1000

// errSendAWSKinesisDataStreamMessageSizeLimit is returned when data
// exceeds the Kinesis record size limit. If this error occurs, then
Expand Down

0 comments on commit 16baaa0

Please sign in to comment.