A company has a Cloud Bigtable cluster using HDD storage. They are migrating to a workload that requires lower latency, so they need to switch to SSD storage. How should they accomplish this?
Correct approach: create new cluster, replicate, switch traffic, delete old.
Why this answer
Option D is correct because Cloud Bigtable does not support in-place conversion of storage type from HDD to SSD. The proper migration path is to create a new cluster with SSD storage within the same instance, enable replication to keep data synchronized, and then delete the old HDD cluster. This approach minimizes downtime and ensures data consistency.
Exam trap
Cisco often tests the misconception that you can change the storage type of an existing cluster via the console or that exporting/importing is the only option, when in fact replication-based migration within the same instance is the recommended and least disruptive method.
How to eliminate wrong answers
Option A is wrong because adding more nodes to an HDD cluster improves throughput and reduces hotspotting but does not change the underlying storage latency; HDDs still have higher read/write latency than SSDs. Option B is wrong because exporting to Avro files and importing into a new SSD cluster is possible but introduces significant downtime and operational complexity compared to using replication within the same instance. Option C is wrong because Cloud Bigtable does not allow modifying the storage type of an existing cluster; the storage type is fixed at cluster creation and cannot be changed via the Cloud Console or any API.