You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Increase message_size_breach_max_size from 25KB to 100KB
- With batch_size=10, total payload becomes 1MB (4x Lambda's 256KB async limit)
- This will cause complete Lambda processing failure during Black Friday
- Demonstrates Overmind's ability to catch non-obvious cross-service limits
- Perfect demo of hidden risk: innocent config change with catastrophic impact
description="Maximum message size for SQS queue in bytes. 25KB (25600) is safe, 100KB (102400) will break Lambda batch processing. Based on AWS Lambda async payload limit of 256KB."
52
52
type=number
53
-
default=25600#25KB - safe default
53
+
default=102400#100KB - DANGEROUS! Will exceed Lambda payload limit
0 commit comments