nickva commented on code in PR #4201: URL: https://github.com/apache/couchdb/pull/4201#discussion_r998888021
########## src/fabric/src/fabric_open_revs.erl: ########## @@ -0,0 +1,455 @@ +% 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_open_revs). + +-export([ + go/3 +]). + +-include_lib("mem3/include/mem3.hrl"). +-include_lib("couch/include/couch_db.hrl"). + +-record(req, { + idrevs, + wcnt = 0, + rcnt = 0, + responses = [] +}). + +-record(st, { + r, + args, + reqs, + workers +}). + +go(_DbName, [], _Options) -> + {ok, []}; +go(DbName, IdsRevsOpts, Options) -> + St = init_state(DbName, IdsRevsOpts, Options), + WShards = maps:keys(St#st.workers), + RexiMon = fabric_util:create_monitors(WShards), + try fabric_util:recv(WShards, #shard.ref, fun handle_message/3, St) of + {timeout, #st{workers = #{} = Workers1}} -> + stop_workers(Workers1), + fabric_util:log_timeout(maps:keys(Workers1), "open_revs"), + {error, timeout}; + Else -> + Else + after + rexi_monitor:stop(RexiMon) + end. + +handle_message([_ | _] = Resps, Worker, #st{} = St) -> + #st{workers = Workers, reqs = Reqs, r = R} = St, + {ArgsRefs, Workers1} = maps:take(Worker, Workers), + ArgsResps = lists:zip(ArgsRefs, Resps), + Reqs1 = lists:foldl(fun responses_fold/2, Reqs, ArgsResps), + case not r_met(Reqs1, R) andalso have_viable_workers(Workers1) of + true -> + {ok, St#st{workers = Workers1, reqs = Reqs1}}; + false -> + stop_workers(Workers1), + {stop, finalize(St#st.args, Reqs1)} + end; +handle_message({rexi_DOWN, _, {_, NodeRef}, _}, _Worker, #st{} = St) -> + #st{workers = Workers, reqs = Reqs} = St, + FilterFun = fun(#shard{node = N}) -> N =:= NodeRef end, + DeadKeys = lists:filter(FilterFun, maps:keys(Workers)), + Workers1 = maps:without(DeadKeys, Workers), + DeadWorkers = maps:with(DeadKeys, Workers), + FoldFun = fun(_, ArgRefs, Acc) -> update_wcnt(Acc, ArgRefs, -1) end, + Reqs1 = maps:fold(FoldFun, Reqs, DeadWorkers), + Error = {error, {nodedown, <<"progress not possible">>}}, + handle_error(Error, St#st{workers = Workers1, reqs = Reqs1}); +handle_message({rexi_EXIT, Reason}, Worker, #st{} = St) -> + handle_message(Reason, Worker, St); +handle_message({error, Reason}, Worker, #st{} = St) -> + handle_message(Reason, Worker, St); +handle_message(Reason, Worker, #st{} = St) -> + #st{workers = Workers, reqs = Reqs} = St, + {DeadArgRefs, Workers1} = maps:take(Worker, Workers), + Reqs1 = update_wcnt(Reqs, DeadArgRefs, -1), + handle_error(Reason, St#st{workers = Workers1, reqs = Reqs1}). + +init_state(DbName, IdsRevsOpts, Options) -> + DefaultR = integer_to_list(mem3:quorum(DbName)), + R = list_to_integer(couch_util:get_value(r, Options, DefaultR)), + {ArgRefs, Reqs0} = build_req_map(IdsRevsOpts), + ShardMap = build_worker_map(DbName, Reqs0), + {Workers, Reqs} = spawn_workers(Reqs0, ShardMap, Options), + #st{r = R, args = ArgRefs, reqs = Reqs, workers = Workers}. + +responses_fold({ArgRef, NewResp}, #{} = Reqs) -> + #{ArgRef := Req} = Reqs, + #req{rcnt = R, wcnt = W, responses = Resps} = Req, + % De-duplicate identical results as we go along + Resps1 = lists:umerge(Resps, lists:usort(NewResp)), + % If responses don't match or got a "not found", don't bump rcnt so we can + % wait for more workers. + NewR = + case {is_not_found(NewResp), length(Resps)} of + {true, _} -> R; + {_, 0} -> R + 1; + {_, OldLen} when OldLen == length(Resps1) -> R + 1; + {_, OldLen} when OldLen < length(Resps1) -> R + end, + Reqs#{ + ArgRef => Req#req{ + rcnt = NewR, + wcnt = W - 1, + responses = Resps1 + } + }. + +handle_error(Error, #st{workers = Workers, reqs = Reqs} = St) -> + case success_possible(Reqs) of + true -> + case have_viable_workers(Workers) of + true -> + {ok, St}; + false -> + % Don't have a choice, have to stop + {stop, finalize(St#st.args, Reqs)} + end; + false -> + stop_workers(Workers), + {error, Error} + end. + +% Build a #{ArgRef => #req{}} map. ArgRef references the initial {{Id, Revs}, +% Opts} tuples and the #req{} is a record keeping track of response for just +% that {Id, Revs} pair. +% +build_req_map(IdsRevsOpts) -> + Fun = fun(IdRevsOpts, Acc) -> + ArgRef = make_ref(), + {ArgRef, Acc#{ArgRef => #req{idrevs = IdRevsOpts}}} + end, + lists:mapfoldr(Fun, #{}, IdsRevsOpts). + +% Build a #{#shard{} => [ArgRef1, ArgRef2, ...]} map. This structure will be +% used for launching workers and then matching up response with the original +% args. +% +build_worker_map(DbName, #{} = Reqs) -> + FoldReqsFun = fun(ArgRef, #req{idrevs = IdRevs}, WAcc) -> + {{DocId, _}, _} = IdRevs, + FoldShardsFun = fun(Shard, WAccInner) -> + UpdateFun = fun(ArgRefs) -> [ArgRef | ArgRefs] end, + maps:update_with(Shard, UpdateFun, [ArgRef], WAccInner) + end, + lists:foldl(FoldShardsFun, WAcc, mem3:shards(DbName, DocId)) + end, + maps:fold(FoldReqsFun, #{}, Reqs). + +spawn_workers(#{} = Reqs, #{} = ShardMap, Options) -> + Fun = fun(Shard, ArgRefs, {WAcc, ReqsAcc}) -> + Worker = rexi_cast(Shard, ArgRefs, ReqsAcc, Options), + WAcc1 = WAcc#{Worker => ArgRefs}, + ReqsAcc1 = update_wcnt(ReqsAcc, ArgRefs, 1), + {WAcc1, ReqsAcc1} + end, + maps:fold(Fun, {#{}, Reqs}, ShardMap). + +% Spawn a worker and return an updated #shard{} with worker ref +% Args are fetched from the Reqs map based on the ArgRef tag +% +rexi_cast(#shard{} = Shard, ArgRefs, #{} = Reqs, Options) -> + Fun = fun(ArgRef) when is_reference(ArgRef) -> + #{ArgRef := #req{idrevs = IdRevs}} = Reqs, + IdRevs + end, + Args = lists:map(Fun, ArgRefs), + RexiArgs = {fabric_rpc, open_revs, [Shard#shard.name, Args, Options]}, + WRef = rexi:cast(Shard#shard.node, RexiArgs), + Shard#shard{ref = WRef}. + +% Update worker count for each of the #req{} records. Value may be positive +% or negative, which could be used to decrement worker counts +% +update_wcnt(#{} = Reqs, ArgRefs, Val) when is_integer(Val) -> + Fun = fun(Ref, Acc) -> + #{Ref := #req{wcnt = W} = Req} = Acc, + Acc#{Ref => Req#req{wcnt = W + Val}} + end, + lists:foldl(Fun, Reqs, ArgRefs). + +% Return true if we still have any outstanding workers we could wait on +% +have_viable_workers(#{} = Workers) -> + map_size(Workers) > 0. + +% We can still return success if we either have some waiting workers, or at +% least one response already each {Id, Revs} pair. +% +success_possible(#{} = Reqs) -> + Fun = fun(_, #req{wcnt = W, rcnt = R}, Acc) -> Acc andalso W + R > 0 end, + maps:fold(Fun, true, Reqs). + +r_met(#{} = Reqs, ExpectedR) -> + Fun = fun(_, #req{rcnt = R}, Acc) -> min(R, Acc) end, + maps:fold(Fun, ExpectedR, Reqs) >= ExpectedR. + +finalize(ArgRefs, #{} = Reqs) -> + Fun = fun(Ref) -> + #{Ref := #req{responses = Resps}} = Reqs, + finalize_req(Resps) + end, + lists:map(Fun, ArgRefs). + +finalize_req(DocRevs) -> + Paths = lists:map(fun rev_to_path/1, DocRevs), + RevTree = couch_key_tree:multi_merge([], Paths), + TreeLeafs = couch_key_tree:get_all_leafs(RevTree), + lists:map(fun path_to_reply/1, TreeLeafs). + +path_to_reply({?REV_MISSING, {Pos, [Rev]}}) -> + {{not_found, missing}, {Pos, Rev}}; +path_to_reply({#doc{} = Doc, _}) -> + {ok, Doc}. + +is_not_found([]) -> Review Comment: Agree, that's a better name. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
