diff options
author | Paul J. Davis <paul.joseph.davis@gmail.com> | 2018-03-21 12:23:47 -0500 |
---|---|---|
committer | Paul J. Davis <paul.joseph.davis@gmail.com> | 2018-08-21 09:40:19 -0500 |
commit | 391d7b5be2ca8e178ae79adb9f4666563a6884d8 (patch) | |
tree | 776a3499f97a78e4f863a54219b6b2577f88d0a9 | |
parent | fc10fb522a2f0623cd5c3a3d1a3427c35066bd29 (diff) | |
download | couchdb-COUCHDB-3326-clustered-purge-pr2-simplify-mem3-rep.tar.gz |
Simplify logic in mem3_repCOUCHDB-3326-clustered-purge-pr2-simplify-mem3-rep
Previously there were two separate database references and it was not
clear which was used where. This simplifies things by reducing it to a
single instance so that the logic is simpler.
-rw-r--r-- | src/mem3/src/mem3_rep.erl | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/mem3/src/mem3_rep.erl b/src/mem3/src/mem3_rep.erl index 8d996d617..670f9900f 100644 --- a/src/mem3/src/mem3_rep.erl +++ b/src/mem3/src/mem3_rep.erl @@ -73,12 +73,11 @@ go(#shard{} = Source, #shard{} = Target, Opts) -> go(Acc). -go(#acc{source=Source, batch_count=BC}=Acc0) -> +go(#acc{source=Source, batch_count=BC}=Acc) -> case couch_db:open(Source#shard.name, [?ADMIN_CTX]) of {ok, Db} -> - Acc = Acc0#acc{db=Db}, Resp = try - repl(Db, Acc) + repl(Acc#acc{db = Db}) catch error:{not_found, no_db_file} -> {error, missing_target} after @@ -170,9 +169,9 @@ find_source_seq_int(#doc{body={Props}}, SrcNode0, TgtNode0, TgtUUID, TgtSeq) -> end. -repl(Db, Acc0) -> +repl(#acc{db = Db} = Acc0) -> erlang:put(io_priority, {internal_repl, couch_db:name(Db)}), - #acc{seq=Seq} = Acc1 = calculate_start_seq(Acc0#acc{source = Db}), + #acc{seq=Seq} = Acc1 = calculate_start_seq(Acc0), case Seq >= couch_db:get_update_seq(Db) of true -> {ok, 0}; @@ -186,7 +185,7 @@ repl(Db, Acc0) -> calculate_start_seq(Acc) -> #acc{ - source = Db, + db = Db, target = #shard{node=Node, name=Name} } = Acc, %% Give the target our UUID and ask it to return the checkpoint doc @@ -222,7 +221,7 @@ calculate_start_seq(Acc) -> compare_epochs(Acc) -> #acc{ - source = Db, + db = Db, target = #shard{node=Node, name=Name} } = Acc, UUID = couch_db:get_uuid(Db), @@ -303,13 +302,13 @@ chunk_revs([{Id, R, A}|Revs], {Count, Chunk}, Chunks, Limit) -> ). -open_docs(#acc{source=Source, infos=Infos}, Missing) -> +open_docs(#acc{db=Db, infos=Infos}, Missing) -> lists:flatmap(fun({Id, Revs, _}) -> FDI = lists:keyfind(Id, #full_doc_info.id, Infos), #full_doc_info{rev_tree=RevTree} = FDI, {FoundRevs, _} = couch_key_tree:get_key_leafs(RevTree, Revs), lists:map(fun({#leaf{deleted=IsDel, ptr=SummaryPtr}, FoundRevPath}) -> - couch_db:make_doc(Source, Id, IsDel, SummaryPtr, FoundRevPath) + couch_db:make_doc(Db, Id, IsDel, SummaryPtr, FoundRevPath) end, FoundRevs) end, Missing). @@ -325,7 +324,7 @@ save_on_target(Node, Name, Docs) -> update_locals(Acc) -> - #acc{seq=Seq, source=Db, target=Target, localid=Id, history=History} = Acc, + #acc{seq=Seq, db=Db, target=Target, localid=Id, history=History} = Acc, #shard{name=Name, node=Node} = Target, NewEntry = [ {<<"source_node">>, atom_to_binary(node(), utf8)}, |