Best of AWS S3July 2024

  1. 1
    Article
    Avatar of medium_jsMedium·2y

    How We Decreased Our Monthly AWS Costs from $10,000 to $1,500

    Managing cloud infrastructure can become costly if not optimized. This guide shares steps to significantly reduce AWS costs from $10,000 to $1,500 per month. Key actions include cleaning up ECR images, optimizing ECS Fargate services, managing S3 storage, converting VPN usage to SSH tunnels, right-sizing RDS and DocumentDB instances, purchasing ECS savings plans, consolidating load balancers, removing redundant IPv4 addresses and environments, and right-sizing remaining resources.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    ​​How to Upload Large Files Efficiently with AWS S3 Multipart Upload

    Efficiently handle large file uploads using Amazon S3 multipart upload. This approach splits a large file into smaller parts, uploads them independently, and combines them to create the final object. The guide covers setting up AWS S3, configuring a backend with Node.js, and building a React frontend for the upload process. This method enhances upload performance, adds fault tolerance, and allows pausing and resuming of uploads, making it suitable for large files and unstable networks.