From 7d3e25813b24163bd85237b9ed93918278f19041 Mon Sep 17 00:00:00 2001 From: Harold Hunt Date: Fri, 23 Jun 2023 13:03:10 -0400 Subject: [PATCH] Fix kinesis size limit doc (#1) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c627777..44c962b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ `@shutterstock/chunker` calls a blocking async callback _before_ adding an item that would exceed a user-defined size limit OR when the count of items limit is reached. -A common use case for `@shutterstock/chunker` is as a "batch accumulator" that gathers up items to be processed in a batch where the batch has specific count and size constraints that must be followed. For example, sending batches to an AWS Kinesis Data Stream requires that there be 500 or less records totalling 500 MB or less in size. The record count part is easy, but the record size check and handling both is more difficult. +A common use case for `@shutterstock/chunker` is as a "batch accumulator" that gathers up items to be processed in a batch where the batch has specific count and size constraints that must be followed. For example, sending batches to an AWS Kinesis Data Stream requires that there be 500 or less records totalling 5 MB or less in size (see [AWS Kinesis PutRecords](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecords.html)) . The record count part is easy, but the record size check and handling both is more difficult. # Getting Started