-
Type: Bug
-
Resolution: Won't Fix
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: Sharding
-
None
-
Fully Compatible
-
ALL
-
Sharding 2017-05-08, Sharding 2017-05-29
BF-5149 (v3.2 failure) is an fassert in the migration critical section, where the shard cannot tell whether the commit was successful or not. This is because it tries to check whether the applyOps succeeded or not by doing a followup query. However, this query can be sent to secondaries, and the shard does not always have the latest config opTime to make sure what is seen on the secondary is the latest information.
v3.4 changes the behavior by trying to do a successful write to the config primary, so as the acquire the latest config opTime, before sending the query that can target secondaries. We could add the same thing to v3.2.
This solution doesn't cover all edge cases. For v3.6, we intend to do SERVER-26886 to eliminate the fassert potential, but we don't currently have any intentions for backport of such a fix.
- duplicates
-
SERVER-23944 Failure to commit chunk migration due to shutdown should not fassert
- Closed