Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

AWS Collective

A collective for developers who utilize Amazon Web Services' infrastructure and platform capabilities. The AWS Collective is organized and managed by the Stack Overflow community as a resource for developers.
256.8k Questions
+11
39.3k Members
+25
Contact

Can you answer these questions?

View all unanswered questions

These questions still don't have an answer

Best practices
0 votes
0 replies
51 views

Achieving Atomic Ingestion for a 70-100 GB Daily Stream Using PyArrow and MinIO

The Architecture I'm designing the ingestion (Bronze) layer of a data pipeline. The data source provides A daily bulk update delivered as a massive ZIP file, reaching up to 70-100 GB per day. To save ...
0 votes
0 answers
29 views

Alexa RangeController for thermostat fan speed not invoking Lambda — "I don't know how to set [device] to that setting"

I have an Alexa Smart Home skill exposing a thermostat/AC endpoint with Alexa.PowerController, Alexa.ThermostatController, and Alexa.RangeController (for fan speed). The same RangeController pattern ...
Advice
0 votes
0 replies
36 views

Why might PyTorch batch_isend_irecv have poor performance on AWS G5 instances?

I found the following function in a distributed PyTorch checkpointing implementation: def _snapshot_torch_p2p_fn(input_tensor: Tensor, output_tensor: Tensor, ...
1 vote
0 answers
86 views

How to stream and convert 50GB+ Zip of CSVs to Parquet in S3/MinIO without local disk?

I'm writing a Python script as a component of data pipeline that takes a zipped archive of CSV files from the landing bucket, extracts the files, converts them to Parquet, and puts them back into ...
Advice
0 votes
0 replies
52 views

Amazon Bedrock - Custom response based on data in an RDS database

I've been planning to use Amazon Bedrock to let users generate content rather than write it themselves. However, every person has a unique style for the data they produce; some write very generic ...

Learn something new
These are the most recent articles in AWS Collective
1 vote
438 views
1 minute read
How-to guide

AWS Management Console now supports simultaneous sign-in for multiple AWS accounts

AWS has changed the way we interact with AWS console for sign-in. Jan 16, 2025 AWS has announced the support for multiple console sessions for signing into different aws accounts in the same browser. ...
4 votes
671 views
8 minute read
How-to guide

How to achieve fast, scalable, robust & cost optimized scaling of tasks on AWS ECS

Summary There are multiple use cases to containerize and host proprietary applications on AWS ECS which is “a fully managed container orchestration service that makes it easy for you to deploy, manage,...
8 votes
709 views
2 minute read
Knowledge article

Overcoming Front-End Back-End Coupling with AWS Event-Driven Architecture

introduction As a developer, I've always been interested in event-driven architectures (EDAs) and how they can improve the overall performance and scalability of web applications. However, I never ...
6 votes
1k views
1 minute read
How-to guide

Always-on access for your data in Amazon S3, using cross-Region replication and Multi-Region Access Points (MRAP)

To improve durability of your data in the cloud, you should replicate it to multiple locations. For data in Amazon S3, it is automatically stored across multiple devices spanning a minimum of three ...
6 votes
1k views
3 minute read
Knowledge article

Local development, testing, and debugging of serverless applications defined in Terraform using AWS SAM CLI

One question we hear from developers using Terraform and AWS Lambda functions is how to locally test the Lambda function. Here’s a great example — I have a simple terraform file with a Lambda function....