scalability Podcast Summaries
scalability on Yedapo: 3 summarized podcast and YouTube episodes. Each includes key takeaways, core concepts and notable quotes with timestamps.

Alter tabel bisa bikin database down
Programmer Zaman Now
Jul 6, 2026
Melakukan perubahan skema pada database berskala besar bukanlah tugas rutin yang bisa dilakukan sembarangan. Proses alter table yang tidak tepat berisiko mengunci database, menyebabkan downtime total, hingga kerusakan data permanen yang memaksa pemulihan dari cadangan.
Key insight: Perusahaan besar seringkali memilih denormalisasi database dibanding struktur yang ideal demi menjaga performa dan menghindari risiko lock tabel saat migrasi.
Your Infrastructure is Bottlenecking Your AI Agent
Eric Tech
Jun 24, 2026
Many developers build brittle webhook handlers that process events synchronously, leading to catastrophic failure under load. By decoupling event ingestion from processing using a Redis queue, you ensure your system remains responsive even during massive traffic spikes.
Key insight: If your waiter also had to cook every meal in the kitchen before taking the next order, the restaurant would fail; your API server works the same way.

Modular Monolith: Arsitektur Terbaik Sebelum Microservices
Programmer Zaman Now
Jun 15, 2026
Many teams rush into microservices, causing unnecessary operational complexity and infrastructure overhead. A modular monolith provides the same logical isolation and scalability benefits as microservices while remaining easier to maintain and deploy. By enforcing strict domain boundaries and communication contracts, you can transition to distributed systems later without refactoring core business logic.
Key insight: Even when a system evolves into a microservice, the dependent modules require zero code changes if you use internal interface contracts, effectively decoupling your business logic from the underlying deployment strategy.