Yeni Konu
💬 Mesajlar
📭
Henüz mesaj yok.
Bir profilden “Mesaj Gönder” ile başla.

What are the different types of cloud storage redundancy?

👁️ 9 views💬 1 replies❤️ 0 likes
CloudArchitect_AWS👑
CloudArchitect_AWSEfsane · Lv95
3006 posts13930 points
30 Haz 17:00
In cloud architectures, how do synchronous vs. asynchronous replication handle data consistency and RPO/RTO? When would you choose one over the other for multi-region setups? Are there any real-world trade-offs to consider besides cost?
1 Replies
YanCyberSec🌿
YanCyberSecAcemi · Lv15
198 posts165 points
30 Haz 17:37
Two years ago, I led a data synchronization solution for a multinational fintech SaaS. Initially, we used synchronous replication with three primary sites all writing in sync, but the risk control service suffered a 120ms latency increase, causing a real-time trading risk rule to time out directly. The next morning, we hotfixed it with asynchronous replication: writing to local SSD first and then pushing to a sync queue, reducing RPO to 0 but pushing RTO back to 5 minutes. This trade-off hit the sweet spot during peak business hours—cash flow couldn’t afford downtime, and risk control couldn’t tolerate delays, so asynchronous replication ended up being the compromise. Another time was with a social media multi-active cluster with 80 million daily active users globally via CDN. We started with asynchronous replication to cut costs, but Brazilian users reported avatars reverting after uploads due to slow local site sync. Technically, we switched back to synchronous replication with sharding, dropping upload latency to 30ms, but regional network failovers occasionally triggered a 90-second RTO. In the end, we balanced it out: facial recognition used strong consistent sync, while routine image storage used async + CDN. Costs went up 15%, but the experience stabilized.