-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid change feed rewinds after shard moves
When shards are moved to new nodes, and the user supplies a change sequence from the old shard map configuration, attempt to match missing nodes and ranges by inspecting current shard uuids in order to avoid rewinds. Previously, if a node and range was missing, we randomly picked a node in the appropriate range, so 1/3 of the time we might have hit the exact node, but 2/3 of the time we would end up with a complete changes feed rewind to 0. Unfortunately, this involves a fabric worker scatter gather operation to all shard copies. This should only happen when we get an old sequence. We rely on that happening rarely, mostly right after the shards moved, then users would get new sequence from the recent shard map.
- Loading branch information
Showing
8 changed files
with
414 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
% Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
% use this file except in compliance with the License. You may obtain a copy of | ||
% the License at | ||
% | ||
% http://www.apache.org/licenses/LICENSE-2.0 | ||
% | ||
% Unless required by applicable law or agreed to in writing, software | ||
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
% License for the specific language governing permissions and limitations under | ||
% the License. | ||
|
||
-module(fabric_db_uuids). | ||
|
||
|
||
-export([go/1]). | ||
|
||
|
||
-include_lib("fabric/include/fabric.hrl"). | ||
-include_lib("mem3/include/mem3.hrl"). | ||
|
||
|
||
go(DbName) when is_binary(DbName) -> | ||
Shards = mem3:live_shards(DbName, [node() | nodes()]), | ||
Workers = fabric_util:submit_jobs(Shards, get_uuid, []), | ||
RexiMon = fabric_util:create_monitors(Shards), | ||
Acc0 = {fabric_dict:init(Workers, nil), []}, | ||
try fabric_util:recv(Workers, #shard.ref, fun handle_message/3, Acc0) of | ||
{timeout, {WorkersDict, _}} -> | ||
DefunctWorkers = fabric_util:remove_done_workers(WorkersDict, nil), | ||
fabric_util:log_timeout(DefunctWorkers, "db_uuids"), | ||
{error, timeout}; | ||
Else -> | ||
Else | ||
after | ||
rexi_monitor:stop(RexiMon) | ||
end. | ||
|
||
|
||
handle_message({rexi_DOWN, _, {_, NodeRef},_}, _Shard, {Cntrs, Res}) -> | ||
case fabric_ring:node_down(NodeRef, Cntrs, Res, [all]) of | ||
{ok, Cntrs1} -> {ok, {Cntrs1, Res}}; | ||
error -> {error, {nodedown, <<"progress not possible">>}} | ||
end; | ||
|
||
handle_message({rexi_EXIT, Reason}, Shard, {Cntrs, Res}) -> | ||
case fabric_ring:handle_error(Shard, Cntrs, Res, [all]) of | ||
{ok, Cntrs1} -> {ok, {Cntrs1, Res}}; | ||
error -> {error, Reason} | ||
end; | ||
|
||
handle_message(Uuid, Shard, {Cntrs, Res}) when is_binary(Uuid) -> | ||
case fabric_ring:handle_response(Shard, Uuid, Cntrs, Res, [all]) of | ||
{ok, {Cntrs1, Res1}} -> | ||
{ok, {Cntrs1, Res1}}; | ||
{stop, Res1} -> | ||
Uuids = fabric_dict:fold(fun(#shard{} = S, Id, #{} = Acc) -> | ||
Acc#{Id => S#shard{ref = undefined}} | ||
end, #{}, Res1), | ||
{stop, Uuids} | ||
end; | ||
|
||
handle_message(Reason, Shard, {Cntrs, Res}) -> | ||
case fabric_ring:handle_error(Shard, Cntrs, Res, [all]) of | ||
{ok, Cntrs1} -> {ok, {Cntrs1, Res}}; | ||
error -> {error, Reason} | ||
end. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.