1The Infinite Loop Anti-Pattern
A common mistake when setting up S3 triggers is having the Lambda function save its processed output back into the EXACT SAME S3 bucket that triggered it. This causes the new file to trigger the Lambda again, creating an infinite loop that will cost thousands of dollars. Always write output to a different bucket or use a specific prefix/folder rule.
