D-ECS-DS-23 · Question #166
In the context of ECS Solution Design for Data Management, which of the following are key considerations for ensuring high data durability?
The correct answer is A. Implementing erasure coding for object storage C. Replicating data across different storage media types D. Ensuring data integrity through checksums and hash functions. High data durability in ECS (Elastic Cloud Storage) Solution Design requires a layered approach: A (erasure coding) protects object data by splitting it into fragments with mathematical redundancy, allowing reconstruction even if multiple drives or nodes fail - far more…
Question
In the context of ECS Solution Design for Data Management, which of the following are key considerations for ensuring high data durability?
Options
- AImplementing erasure coding for object storage
- BUsing magnetic tape as the primary storage medium
- CReplicating data across different storage media types
- DEnsuring data integrity through checksums and hash functions
How the community answered
(15 responses)- A80% (12)
- B20% (3)
Explanation
High data durability in ECS (Elastic Cloud Storage) Solution Design requires a layered approach: A (erasure coding) protects object data by splitting it into fragments with mathematical redundancy, allowing reconstruction even if multiple drives or nodes fail - far more storage-efficient than full replication alone. C (cross-media replication) guards against media-class failures by ensuring no single physical failure mode can destroy all copies. D (checksums and hash functions) silently detect data corruption ("bit rot") before it propagates, so the system can trigger repair before data is permanently lost.
B is wrong because magnetic tape is an archival/cold-storage medium with high latency and mechanical fragility - it is never appropriate as a primary storage medium in a durability-focused ECS design.
Memory tip: Think of durability as three shields - Survive failures (erasure coding), Survive media death (replication across media types), Survive silent corruption (checksums). Tape breaks all three shields for primary storage.
Topics
Community Discussion
No community discussion yet for this question.