A multinational corporation uses Cloud Spanner with a multi-region configuration. The schema includes a table that is updated frequently by users in two distant regions. They are experiencing high commit latencies due to distributed transactions. Which schema change would most reduce latency?
Leader placement allows directing all writes for a table to the nearest region, reducing distributed transaction overhead.
Why this answer
Option C is correct because replicating the table across regions with leader placement can reduce the number of remote operations. Option A is wrong because interleaving does not help with distribution across regions. Option B is wrong because reducing replicas may compromise availability.
Option D is wrong because horizontal scaling doesn't directly fix cross-region latency.