SShortSingh.
Back to feed

AWS S3 Lifecycle Policies Can Cut Storage Costs 46%, But Hidden Fees Erode Gains

0
·1 views

Amazon S3 lifecycle policies automatically move objects between storage classes or delete them based on age rules set at the bucket level, with no manual scheduling required. AWS pricing data for us-east-1 shows that shifting a 100 TB bucket so that 30% sits in Standard-IA and 40% in Glacier Instant Retrieval reduces the monthly storage bill from $2,304 to $1,254.40, a 45.6% reduction. However, this saving applies only to the storage line item and assumes roughly two-thirds of stored data is older than 30 days, a pattern typical of logs, backups, and ML snapshots. Retrieval fees, transition request charges, and mandatory minimum storage durations — 30 days for Standard-IA, 90 days for Glacier — can significantly offset the headline saving. Choosing the right storage class therefore depends on actual data access frequency, not just the per-GB storage rate.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

SolidJS Creator Reflects on Eight-Year Writing Journey and the Role of Community Feedback

Ryan Carniato, creator of SolidJS, has shared a candid account of how he developed his technical writing skills over eight years of publishing articles. He initially struggled to communicate complex, cross-disciplinary ideas clearly, describing his early Medium posts from 2018 as rough and difficult to follow. Community members on platforms like Gitter and Discord provided ongoing editorial feedback, while tools like Grammarly helped him catch basic grammatical errors. A turning point came in 2019 when editors at the publication Angular in Depth, particularly a collaborator known as layzee, coached him on breaking up dense paragraphs to improve readability. Carniato also credits prominent figures like Theo Browne for reviewing his work during the 2020–2022 period as SolidJS gained wider attention.

0
ProgrammingDEV Community ·

Key Approaches to Building a Work Queue for CI/CD Pipelines Explained

A technical deep-dive explores the core requirements for implementing a work queue in CI/CD systems, including at-least-once delivery guarantees, retry mechanisms, and dead letter queues for failed jobs. Dedicated message brokers like Kafka and RabbitMQ offer high throughput — up to 1 million and 10,000 jobs per second respectively — while Redis streams and lists can handle around 20,000 jobs per second. Relational databases can also serve as job queues by using a status-tracked table, where workers claim and process jobs by updating row states. A key challenge with database-backed queues is preventing race conditions among competing workers, which can be addressed using SQL constructs like SELECT FOR UPDATE SKIP LOCKED. The article recommends keeping database transactions short-lived and adding indexes to maintain performance under load.

0
ProgrammingDEV Community ·

Why Developers Should Build Authentication Before Any Other Feature

Authentication is widely considered a foundational step in software development, and many developers choose to implement it before building any core application features. Common methods include password-based authentication, OAuth, and OTP-based authentication. In password-based systems, a user's email or unique identifier is stored alongside a securely hashed password — plain-text storage is strongly discouraged. Email or phone verification adds an additional layer of account security where required. Once credentials are stored, session and token management become the next critical components to handle correctly.

0
ProgrammingDEV Community ·

Designer Advocates for Human Review Points in AI Workflow Architecture

A systems designer argues that effective AI automation requires structured oversight rather than unchecked execution. The approach centers on four layers: a defined input source, a bounded action scope, a human review point, and a maintained audit trail. Review points are positioned not as inefficiencies but as safeguards against costly errors such as wrong customer communications or unauthorized record changes. Dashboards are recommended to surface workflow status clearly, showing what is healthy, waiting, blocked, or awaiting ownership. The designer advises teams to begin automation with the decision they can least afford to get wrong and build boundaries and accountability records around it.

AWS S3 Lifecycle Policies Can Cut Storage Costs 46%, But Hidden Fees Erode Gains · ShortSingh