Skip to content

Commit 93f57be

Browse files
committed
Updates SQS size limit to 1GB
1 parent 1718755 commit 93f57be

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

RELEASE NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes:
22

3+
## version 1.10.1, 6 Aug 2025
4+
5+
- Updated the [maximum size limit for messages in SQS](https://aws.amazon.com/about-aws/whats-new/2025/08/amazon-sqs-max-payload-size-1mib/) target to 1GB,
6+
7+
---
38
## version 1.10.0, 9 July 2025
49

510
- New: [AWS S3 Tables target](./docs/targets/aws-s3-tables.md)

targets/aws-sqs-target/src/main/kotlin/com/amazonaws/sfc/awssqs/AwsSqsTargetWriter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ class AwsSqsTargetWriter(
413413
}
414414

415415
companion object {
416-
const val SQS_MAX_BATCH_MSG_SIZE = 1024 * 256
416+
const val SQS_MAX_BATCH_MSG_SIZE = 1024 * 1024
417417

418418
@JvmStatic
419419
@Suppress("unused")

0 commit comments

Comments
 (0)