DEV Community

Danielle Heberling for AWS Community Builders

Posted on • Originally published at danielleheberling.xyz on

My Top Three AWS re:Invent 2021 Announcements

Disclaimer that this post contains my individual opinions and yours might differ. Let’s get started!

1. SQS Partial Batch Retries in Lambda

Cookies

Photo by Jonathan Farber on Unsplash

What this means

This feature was announced during pre:Invent, but I think it still counts. Before, if SQS messages were sent as a batch into Lambda, you had the choice to return a response of a full failure or full success for the batch. Now we have an extra setting that allows queue retry behavior to be at the record level instead of the batch level. If one or more messages within that batch fail, you have the option to only send the failed messages back to the queue to attempt a retry.

Why it’s exciting

This allows me to delete some code that I wrote to ensure each message is idempotent and also allows me to reduce the number of API calls made to check if a message was processed before.

2. AWS Cloud Development Kit (CDK) v2 is Generally Available

Tools

Photo by iMattSmart on Unsplash

What this means

CDK v2 has been in developer preview for a while and it brings in some exciting features.

Notable changes include:

  • One dependency library for all AWS services
  • Stable APIs are enforced via semver
  • Introduction of cdk watch which auto-deploys code for you as you edit locally and save the changes. (Note that AWS does not recommend the use of this feature in production environments.)

Why it’s exciting

AWS took customer feedback and addressed some of the common painpoints with the original release of CDK. To me, these changes show maturity in the tool and increases my confidence in using it for production workloads.

3. Sustainability Pillar for AWS Well-Architected Framework

Windmill

Photo by Karsten Würth (➡️ @karsten.wuerth) on Unsplash

What this means

AWS released a whitepaper that outlines best practices and recommendations around how to run workloads in the cloud with a focus on sustainability.

Why it’s exciting

Just because things are running in someone else’s data center, doesn’t mean that it isn’t using up natural resources. With the recent unprecedented weather events, it’s important to get started thinking about this now. The fact that AWS made this an official pillar shows that they also care about this.

Closing

It was difficult to choose just three, because there were many great announcements during this conference. Overall, the announcements felt more incremental than innovative which I totally support. It’s much better to improve on an existing service than to continually launch new services that aren’t fully ready for production.

I encourage you to check out all of the announcements here. What were some of your favorite announcements and why?

“Now go build” - Werner Vogels

Top comments (0)