881 lines
38 KiB
Erlang
881 lines
38 KiB
Erlang
%% -------------------------------------------------------------------
|
|
%%
|
|
%% Machi: a small village of replicated files
|
|
%%
|
|
%% Copyright (c) 2014-2015 Basho Technologies, Inc. All Rights Reserved.
|
|
%%
|
|
%% This file is provided to you 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(machi_chain_manager1_converge_demo).
|
|
|
|
-include("machi.hrl").
|
|
-include("machi_projection.hrl").
|
|
|
|
-define(MGR, machi_chain_manager1).
|
|
|
|
-define(D(X), io:format(user, "~s ~p\n", [??X, X])).
|
|
-define(Dw(X), io:format(user, "~s ~w\n", [??X, X])).
|
|
-define(FLU_C, machi_flu1_client).
|
|
-define(FLU_PC, machi_proxy_flu1_client).
|
|
|
|
-compile(export_all).
|
|
|
|
-ifdef(TEST).
|
|
-ifndef(PULSE).
|
|
|
|
-ifdef(EQC).
|
|
-include_lib("eqc/include/eqc.hrl").
|
|
%% -include_lib("eqc/include/eqc_statem.hrl").
|
|
-define(QC_OUT(P),
|
|
eqc:on_output(fun(Str, Args) -> io:format(user, Str, Args) end, P)).
|
|
-endif.
|
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
short_doc() ->
|
|
"
|
|
A visualization of the convergence behavior of the chain self-management
|
|
algorithm for Machi.
|
|
1. Set up 4 FLUs and chain manager pairs.
|
|
2. Create a number of different network partition scenarios, where
|
|
(simulated) partitions may be symmetric or asymmetric. Then halt changing
|
|
the partitions and keep the simulated network stable and broken.
|
|
3. Run a number of iterations of the algorithm in parallel by poking each
|
|
of the manager processes on a random'ish basis.
|
|
4. Afterward, fetch the chain transition changes made by each FLU and
|
|
verify that no transition was unsafe.
|
|
|
|
During the iteration periods, the following is a cheatsheet for the output.
|
|
See the internal source for interpreting the rest of the output.
|
|
|
|
'Let loose the dogs of war!' Network instability
|
|
'SET partitions = ' Network stability (but broken)
|
|
'x uses:' The FLU x has made an internal state transition. The rest of
|
|
the line is a dump of internal state.
|
|
'{t}' This is a tick event which triggers one of the manager processes
|
|
to evaluate its environment and perhaps make a state transition.
|
|
|
|
A long chain of '{t}{t}{t}{t}' means that the chain state has settled
|
|
to a stable configuration, which is the goal of the algorithm.
|
|
Press control-c to interrupt....".
|
|
|
|
long_doc() ->
|
|
"
|
|
'Let loose the dogs of war!'
|
|
|
|
The simulated network is very unstable for a few seconds.
|
|
|
|
'x uses'
|
|
|
|
After a single iteration, server x has determined that the chain
|
|
should be defined by the upi, repair, and down list in this record.
|
|
If all participants reach the same conclusion at the same epoch
|
|
number (and checksum, see next item below), then the chain is
|
|
stable, fully configured, and can provide full service.
|
|
|
|
'epoch,E'
|
|
|
|
The epoch number for this decision is E. The checksum of the full
|
|
record is not shown. For purposes of the protocol, a server will
|
|
'wedge' itself and refuse service (until a new config is chosen)
|
|
whenever: a). it sees a bigger epoch number mentioned somewhere, or
|
|
b). it sees the same epoch number but a different checksum. In case
|
|
of b), there was a network partition that has healed, and both sides
|
|
had chosen to operate with an identical epoch number but different
|
|
chain configs.
|
|
|
|
'upi', 'repair', and 'down'
|
|
|
|
Members in the chain that are fully in sync and thus preserving the
|
|
Update Propagation Invariant, up but under repair (simulated), and
|
|
down, respectively.
|
|
|
|
'ps,[some list]'
|
|
|
|
The list of asymmetric network partitions. {a,b} means that a
|
|
cannot send to b, but b can send to a.
|
|
|
|
This partition list is recorded for debugging purposes but is *not*
|
|
used by the algorithm. The algorithm only 'feels' its effects via
|
|
simulated timeout whenever there's a partition in one of the
|
|
messaging directions.
|
|
|
|
'nodes_up,[list]'
|
|
|
|
The best guess right now of which ndoes are up, relative to the
|
|
author node, specified by '{author,X}'
|
|
|
|
'SET partitions = [some list]'
|
|
|
|
All subsequent iterations should have a stable list of partitions,
|
|
i.e. the 'ps' list described should be stable.
|
|
|
|
'{FLAP: x flaps n}!'
|
|
|
|
Server x has detected that it's flapping/oscillating after iteration
|
|
n of a naive/1st draft detection algorithm.
|
|
".
|
|
|
|
%% ' silly Emacs syntax highlighting....
|
|
|
|
%% convergence_demo_test_() ->
|
|
%% {timeout, 98*300, fun() -> convergence_demo_testfun() end}.
|
|
|
|
%% convergence_demo_testfun() ->
|
|
%% convergence_demo_testfun(3).
|
|
|
|
-define(DEFAULT_MGR_OPTS, [{private_write_verbose, false},
|
|
{active_mode,false},
|
|
{use_partition_simulator, true}]).
|
|
|
|
t() ->
|
|
t(3).
|
|
|
|
t(N) ->
|
|
t(N, ?DEFAULT_MGR_OPTS).
|
|
|
|
t(N, MgrOpts) ->
|
|
convergence_demo_testfun(N, MgrOpts).
|
|
|
|
convergence_demo_testfun(NumFLUs, MgrOpts0) ->
|
|
timer:sleep(100),
|
|
%% Faster test startup, commented: io:format(user, short_doc(), []),
|
|
%% Faster test startup, commented: timer:sleep(3000),
|
|
|
|
TcpPort = 62877,
|
|
ok = filelib:ensure_dir("/tmp/c/not-used"),
|
|
FluInfo = [
|
|
{a,TcpPort+0,"/tmp/c/data.a"}, {b,TcpPort+1,"/tmp/c/data.b"},
|
|
{c,TcpPort+2,"/tmp/c/data.c"}, {d,TcpPort+3,"/tmp/c/data.d"},
|
|
{e,TcpPort+4,"/tmp/c/data.e"}, {f,TcpPort+5,"/tmp/c/data.f"},
|
|
{g,TcpPort+6,"/tmp/c/data.g"}, {h,TcpPort+7,"/tmp/c/data.h"},
|
|
{i,TcpPort+8,"/tmp/c/data.i"}, {j,TcpPort+9,"/tmp/c/data.j"},
|
|
{k,TcpPort+10,"/tmp/c/data.k"}, {l,TcpPort+11,"/tmp/c/data.l"},
|
|
{m,TcpPort+12,"/tmp/c/data.m"}, {n,TcpPort+13,"/tmp/c/data.n"},
|
|
{o,TcpPort+14,"/tmp/c/data.o"}, {p,TcpPort+15,"/tmp/c/data.p"},
|
|
{q,TcpPort+16,"/tmp/c/data.q"}, {r,TcpPort+17,"/tmp/c/data.r"}
|
|
],
|
|
FLU_biglist = [X || {X,_,_} <- FluInfo],
|
|
All_list = lists:sublist(FLU_biglist, NumFLUs),
|
|
io:format(user, "\nSET # of FLUs = ~w members ~w).\n",
|
|
[NumFLUs, All_list]),
|
|
machi_partition_simulator:start_link({111,222,33}, 0, 100),
|
|
_ = machi_partition_simulator:get(All_list),
|
|
|
|
Ps = [#p_srvr{name=Name,address="localhost",port=Port} ||
|
|
{Name,Port,_Dir} <- lists:sublist(FluInfo, NumFLUs)],
|
|
PsDirs = lists:zip(Ps,
|
|
[Dir || {_,_,Dir} <- lists:sublist(FluInfo, NumFLUs)]),
|
|
FLU_pids = [machi_flu1_test:setup_test_flu(Name, Port, Dir) ||
|
|
{#p_srvr{name=Name,port=Port}, Dir} <- PsDirs],
|
|
Namez = [begin
|
|
{ok, PPid} = ?FLU_PC:start_link(P),
|
|
{Name, PPid}
|
|
end || {#p_srvr{name=Name}=P, _Dir} <- PsDirs],
|
|
MembersDict = machi_projection:make_members_dict(Ps),
|
|
MgrOpts = MgrOpts0 ++ ?DEFAULT_MGR_OPTS,
|
|
MgrNamez =
|
|
[begin
|
|
{ok, MPid} = ?MGR:start_link(P#p_srvr.name, MembersDict, MgrOpts),
|
|
{P#p_srvr.name, MPid}
|
|
end || P <- Ps],
|
|
CpApMode = case is_list(proplists:get_value(witnesses, MgrOpts)) of
|
|
true -> cp_mode;
|
|
false -> ap_mode
|
|
end,
|
|
|
|
try
|
|
[{_, Ma}|_] = MgrNamez,
|
|
{ok, P1} = ?MGR:test_calc_projection(Ma, false),
|
|
[ok = ?FLU_PC:write_projection(FLUPid, public, P1) ||
|
|
{_, FLUPid} <- Namez, FLUPid /= Ma],
|
|
|
|
machi_partition_simulator:reset_thresholds(10, 50),
|
|
_ = machi_partition_simulator:get(All_list),
|
|
|
|
Parent = self(),
|
|
DoIt = fun(Iters, S_min, S_max) ->
|
|
%% io:format(user, "\nDoIt: top\n\n", []),
|
|
io:format(user, "DoIt, ", []),
|
|
Pids = [spawn(fun() ->
|
|
random:seed(now()),
|
|
[begin
|
|
erlang:yield(),
|
|
S_max_rand = random:uniform(
|
|
S_max + 1),
|
|
%% io:format(user, "{t}", []),
|
|
Elapsed =
|
|
?MGR:sleep_ranked_order(
|
|
S_min, S_max_rand,
|
|
M_name, All_list),
|
|
_ = ?MGR:trigger_react_to_env(MMM),
|
|
%% Be more unfair by not
|
|
%% sleeping here.
|
|
% timer:sleep(S_max - Elapsed),
|
|
Elapsed
|
|
end || _ <- lists:seq(1, Iters)],
|
|
Parent ! done
|
|
end) || {M_name, MMM} <- MgrNamez ],
|
|
[receive
|
|
done ->
|
|
ok
|
|
after 120*1000 ->
|
|
exit(icky_timeout)
|
|
end || _ <- Pids]
|
|
end,
|
|
|
|
%% machi_partition_simulator:reset_thresholds(10, 50),
|
|
%% io:format(user, "\nLet loose the dogs of war!\n", []),
|
|
machi_partition_simulator:always_these_partitions([]),
|
|
io:format(user, "\nPuppies for everyone!\n", []),
|
|
[DoIt(20, 0, 0) || _ <- lists:seq(1,9)],
|
|
|
|
AllPs = make_partition_list(All_list),
|
|
PartitionCounts = lists:zip(AllPs, lists:seq(1, length(AllPs))),
|
|
MaxIters = NumFLUs * (NumFLUs + 1) * 6,
|
|
[begin
|
|
machi_partition_simulator:always_these_partitions(Partition),
|
|
io:format(user, "\nSET partitions = ~w (~w of ~w) at ~w\n",
|
|
[Partition, Count, length(AllPs), time()]),
|
|
true = lists:foldl(
|
|
fun(_, true) ->
|
|
true;
|
|
(_, _) ->
|
|
%% Run a few iterations
|
|
[DoIt(10, 10, 50) || _ <- lists:seq(1, 6)],
|
|
%% If stable, return true to short circuit remaining
|
|
private_projections_are_stable(Namez, DoIt)
|
|
end, false, lists:seq(0, MaxIters)),
|
|
io:format(user, "\nSweet, private projections are stable\n", []),
|
|
io:format(user, "\t~P\n", [get(stable), 14]),
|
|
io:format(user, "Rolling sanity check ... ", []),
|
|
MaxFiles = 800,
|
|
PrivProjs = [{Name, begin
|
|
{ok, Ps8} = ?FLU_PC:get_all_projections(
|
|
FLU, private, infinity),
|
|
Ps9 = if length(Ps8) < MaxFiles ->
|
|
Ps8;
|
|
true ->
|
|
lists:nthtail(MaxFiles, Ps8)
|
|
end,
|
|
[P || P <- Ps9,
|
|
P#projection_v1.epoch_number /= 0]
|
|
end} || {Name, FLU} <- Namez],
|
|
try
|
|
[{FLU, true} = {FLU, ?MGR:projection_transitions_are_sane_retrospective(Psx, FLU)} ||
|
|
{FLU, Psx} <- PrivProjs]
|
|
catch
|
|
_Err:_What when CpApMode == cp_mode ->
|
|
io:format(user, "none proj skip detected, TODO? ", []);
|
|
_Err:_What when CpApMode == ap_mode ->
|
|
io:format(user, "PrivProjs ~p\n", [PrivProjs]),
|
|
exit({line, ?LINE, _Err, _What})
|
|
end,
|
|
io:format(user, "Yay!\n", []),
|
|
%% io:format(user, "\n\nEXITING!\n\n", []), timer:sleep(500), erlang:halt(0),
|
|
ReportXX = machi_chain_manager1_test:unanimous_report(Namez),
|
|
true = machi_chain_manager1_test:all_reports_are_disjoint(ReportXX),
|
|
io:format(user, "Yay for ReportXX!\n", []),
|
|
|
|
[begin
|
|
Privs = filelib:wildcard(Dir ++ "/projection/private/*"),
|
|
FilesToDel1 = lists:sublist(Privs,
|
|
max(0, length(Privs)-MaxFiles)),
|
|
[_ = file:delete(File) || File <- FilesToDel1],
|
|
Pubs = filelib:wildcard(Dir ++ "/projection/public/*"),
|
|
FilesToDel2 = lists:sublist(Pubs,
|
|
max(0, length(Pubs)-MaxFiles)),
|
|
[_ = file:delete(File) || File <- FilesToDel2],
|
|
io:format(user, "Yay, now prune: ~w ~w, ", [length(FilesToDel1), length(FilesToDel2)])
|
|
end || Dir <- filelib:wildcard("/tmp/c/data*")],
|
|
io:format(user, "\n", []),
|
|
|
|
timer:sleep(1250),
|
|
ok
|
|
end || {Partition, Count} <- PartitionCounts
|
|
],
|
|
|
|
io:format(user, "\nSET partitions = []\n", []),
|
|
io:format(user, "We should see convergence to 1 correct chain.\n", []),
|
|
machi_partition_simulator:no_partitions(),
|
|
[DoIt(50, 10, 50) || _ <- [1,2,3]],
|
|
true = private_projections_are_stable(Namez, DoIt),
|
|
io:format(user, "~s\n", [os:cmd("date")]),
|
|
|
|
%% We are stable now ... analyze it.
|
|
|
|
%% Create a report where at least one FLU has written a
|
|
%% private projection.
|
|
Report = machi_chain_manager1_test:unanimous_report(Namez),
|
|
%% ?D(Report),
|
|
|
|
%% Report is ordered by Epoch. For each private projection
|
|
%% written during any given epoch, confirm that all chain
|
|
%% members appear in only one unique chain, i.e., the sets of
|
|
%% unique chains are disjoint.
|
|
true = machi_chain_manager1_test:all_reports_are_disjoint(Report),
|
|
%% io:format(user, "\nLast Reports: ~p\n", [lists:nthtail(length(Report)-8,Report)]),
|
|
|
|
%% For each chain transition experienced by a particular FLU,
|
|
%% confirm that each state transition is OK.
|
|
PrivProjs = [{Name, begin
|
|
{ok, Ps9} = ?FLU_PC:get_all_projections(FLU,
|
|
private),
|
|
[P || P <- Ps9,
|
|
P#projection_v1.epoch_number /= 0]
|
|
end} || {Name, FLU} <- Namez],
|
|
try
|
|
[{FLU, true} = {FLU, ?MGR:projection_transitions_are_sane_retrospective(Psx, FLU)} ||
|
|
{FLU, Psx} <- PrivProjs],
|
|
io:format(user, "\nAll sanity checks pass, hooray!\n", [])
|
|
catch
|
|
_Err:_What when CpApMode == cp_mode ->
|
|
io:format(user, "none proj skip detected, TODO? ", []);
|
|
_Err:_What when CpApMode == ap_mode ->
|
|
io:format(user, "Report ~p\n", [Report]),
|
|
io:format(user, "PrivProjs ~p\n", [PrivProjs]),
|
|
exit({line, ?LINE, _Err, _What})
|
|
end,
|
|
%% ?D(R_Projs),
|
|
|
|
ok
|
|
catch
|
|
XX:YY ->
|
|
io:format(user, "BUMMER ~p ~p @ ~p\n",
|
|
[XX, YY, erlang:get_stacktrace()]),
|
|
exit({bummer,XX,YY})
|
|
after
|
|
[ok = ?MGR:stop(MgrPid) || {_, MgrPid} <- MgrNamez],
|
|
[ok = ?FLU_PC:quit(PPid) || {_, PPid} <- Namez],
|
|
[ok = machi_flu1:stop(FLUPid) || FLUPid <- FLU_pids],
|
|
ok = machi_partition_simulator:stop()
|
|
end.
|
|
|
|
%% Many of the static partition lists below have been problematic at one
|
|
%% time or another.....
|
|
%%
|
|
%% Uncomment *one* of the following make_partition_list() bodies.
|
|
|
|
make_partition_list(All_list) ->
|
|
[
|
|
[{b,c}]
|
|
%% [{b,c}],
|
|
%% [],
|
|
%% [{c,d}],
|
|
%% [],
|
|
%% [{d,e}],
|
|
%% [],
|
|
%% [{c,e}]
|
|
].
|
|
|
|
%% _X_Ys1 = [[{X,Y}] || X <- All_list, Y <- All_list, X /= Y],
|
|
%% _X_Ys2 = [[{X,Y}, {A,B}] || X <- All_list, Y <- All_list, X /= Y,
|
|
%% A <- All_list, B <- All_list, A /= B,
|
|
%% X /= A],
|
|
%% _X_Ys3 = [[{X,Y}, {A,B}, {C,D}] || X <- All_list, Y <- All_list, X /= Y,
|
|
%% A <- All_list, B <- All_list, A /= B,
|
|
%% C <- All_list, D <- All_list, C /= D,
|
|
%% X /= A, X /= C, A /= C],
|
|
%% Concat = _X_Ys1,
|
|
%% %% Concat = _X_Ys2,
|
|
%% %% Concat = _X_Ys1 ++ _X_Ys2,
|
|
%% %% %% Concat = _X_Ys3,
|
|
%% %% Concat = _X_Ys1 ++ _X_Ys2 ++ _X_Ys3,
|
|
%% random_sort(lists:usort([lists:sort(L) || L <- Concat])).
|
|
|
|
%% [
|
|
%% [{b,c}],
|
|
%% [{b,c},{c,d},{e,a}],
|
|
%% [{a,c},{a,d},{a,e},{c,a},{d,a},{e,a},{b,c},{b,d},{b,e},{b,c},{b,d},{b,e}, % iof2
|
|
%% {c,a},{c,b},{c,d},{c,e},{a,c},{b,c},{d,c},{e,c}, % island of 1
|
|
%% {d,a},{d,b},{d,c},{d,e},{a,d},{b,d},{c,d},{e,d}, % island of 1
|
|
%% {e,a},{e,b},{e,c},{e,d},{a,e},{b,e},{c,e},{d,e}],% island of 1
|
|
%% [{a,e},{b,c},{d,e}] % the stinker?
|
|
%% ,
|
|
%% [],
|
|
%% [{b,a},{d,e},{e,a}],
|
|
%% [{b,c},{c,d}],
|
|
%% [{a,c},{c,a},{d,b}],
|
|
%% [{a,e},{c,e},{e,d}],
|
|
%% [{a,e},{c,d},{d,b}],
|
|
%% [{b,e},{c,a},{e,d}],
|
|
%% [{b,c},{c,d},{e,a}],
|
|
%% [{d,e},{e,c}],
|
|
%% [{a,e},{b,c},{d,e}] % the stinker?
|
|
%% ,
|
|
%% [],
|
|
%% [{e,a},{g,d}],
|
|
%% [{b,f},{f,b}],
|
|
%% [{a,g},{c,d}]
|
|
%% ]. % for 5 in AP, yay, working now.
|
|
|
|
|
|
%% [ [{a,b},{b,d},{c,b}],
|
|
%% [{a,b},{b,d},{c,b}, {a,b},{b,a},{a,c},{c,a},{a,d},{d,a}],
|
|
%% %% [{a,b},{b,d},{c,b}, {b,a},{a,b},{b,c},{c,b},{b,d},{d,b}],
|
|
%% [{a,b},{b,d},{c,b}, {c,a},{a,c},{c,b},{b,c},{c,d},{d,c}],
|
|
%% [{a,b},{b,d},{c,b}, {d,a},{a,d},{d,b},{b,d},{d,c},{c,d}] ].
|
|
|
|
%% [ [{a,b}, {b,c}],
|
|
%% [{a,b}, {a,c}] ].
|
|
%% Q = [ {X,Y} || X <- [a], Y <- [b,c,d,e,f,g,h,i,j,k,l,m,n,o,p] ],
|
|
%% %% [ [{d,e}], Q]. %% len=7 problem: bad inner flip when ps=[] at end!
|
|
%% [ Q, [{a,b},{c,d},{e,f}] ]. %% len=7 problem: WTF, double-check please!
|
|
|
|
%% len=7 problem: insane evil-near-infinite-loop sometimes
|
|
|
|
%% [ [{a,b}], Q, [{c,d}], Q, [{d,e}], Q].
|
|
|
|
%% [ [{a,b}, {b,c}] ]. %% hosed-not-equal @ 3 FLUs
|
|
|
|
%% [ [{b,d}] ].
|
|
|
|
%% [ [{a,b}], [], [{a,b}], [], [{a,b}] ].
|
|
|
|
%% [
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% [{b,a},{d,e}],
|
|
%% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], []
|
|
%% ].
|
|
|
|
%% [
|
|
%% [{a,b}],
|
|
%% [],
|
|
%% [{a,b}, {b,a}],
|
|
%% [],
|
|
%% [{b,c}]
|
|
%% ].
|
|
|
|
%% [
|
|
%% [{a,c},{b,a},{c,b}],
|
|
%% [{b,a}]
|
|
%% ].
|
|
|
|
%% [
|
|
%% [{c,b}, {c,a}],
|
|
%% [{b,c}, {b,a}],
|
|
%% [],
|
|
%% [{c,b}, {c,a}],
|
|
%% [{b,c}, {b,a}]
|
|
%% ].
|
|
|
|
%% [
|
|
%% [{a,b}], [],
|
|
%% [{b,a}, {b,c}], [],
|
|
%% [{c,b}, {c,a}, {d,c}], [],
|
|
%% [{c,b}, {c,a}], [],
|
|
|
|
%% [{b,a}, {c,a}], [],
|
|
%% [{a,b}, {c,b}], [],
|
|
%% [{b,c}, {a,c}]
|
|
%% ].
|
|
|
|
%% [ [{a,b},{b,c},{c,a}],
|
|
%% [{a,b}, {b,a}, {a,c},{c,a}] ].
|
|
|
|
%% [ [{a,b}, {c,b}],
|
|
%% [{a,b}, {b,c}] ].
|
|
|
|
%% [ [{a,b}, {b,c}, {c,d}],
|
|
%% [{a,b}, {b,c},{b,d}, {c,d}],
|
|
%% [{b,a}, {b,c}, {c,d}],
|
|
%% [{a,b}, {c,b}, {c,d}],
|
|
%% [{a,b}, {b,c}, {d,c}] ].
|
|
|
|
%% [
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% [{a,b}], [], [{a,b}], [], [{a,b}]
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [],
|
|
%% %% [{b,a},{d,e}],
|
|
%% %% [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], [], [{a,b}], []
|
|
%% ].
|
|
%% [ [{a,b}, {b,c}, {c,d}, {d,e}],
|
|
%% [{b,a}, {b,c}, {c,d}, {d,e}],
|
|
%% [{a,b}, {c,b}, {c,d}, {d,e}],
|
|
%% [{a,b}, {b,c}, {d,c}, {d,e}],
|
|
%% [{a,b}, {b,c}, {c,d}, {e,d}] ].
|
|
|
|
%% [ [{c,a}] ]. %% TODO double-check for total repair stability at SET=[]!!
|
|
|
|
%% [ [{c,a}],
|
|
%% [{c,b}, {a, b}] ].
|
|
|
|
%% [ [{a,b},{b,a}, {a,c},{c,a}, {a,d},{d,a}],
|
|
%% [{a,b},{b,a}, {a,c},{c,a}, {a,d},{d,a}, {b,c}],
|
|
%% [{a,b},{b,a}, {a,c},{c,a}, {a,d},{d,a}, {c,d}] ].
|
|
|
|
%% [ [{a,b}, {a,b},{b,a},{a,c},{c,a},{a,d},{d,a}],
|
|
%% [{a,b}, {b,a},{a,b},{b,c},{c,b},{b,d},{d,b}],
|
|
%% [{a,b}],
|
|
%% [{a,b}, {c,a},{a,c},{c,b},{b,c},{c,d},{d,c}],
|
|
%% [{a,b}, {d,a},{a,d},{d,b},{b,d},{d,c},{c,d}] ].
|
|
|
|
todo_why_does_this_crash_sometimes(FLUName, FLU, PPPepoch) ->
|
|
try
|
|
{ok, _}=Res = ?FLU_PC:read_projection(FLU, public, PPPepoch),
|
|
Res
|
|
catch _:_ ->
|
|
io:format(user, "QQQ Whoa, it crashed this time for ~p at epoch ~p\n",
|
|
[FLUName, PPPepoch]),
|
|
timer:sleep(1000),
|
|
exit(still_a_problem),
|
|
?FLU_PC:read_projection(FLU, public, PPPepoch)
|
|
end.
|
|
|
|
private_projections_are_stable(Namez, PollFunc) ->
|
|
Private1 = [{Name, get_latest_inner_proj_summ(FLU)} || {Name,FLU} <- Namez],
|
|
[PollFunc(15, 1, 10) || _ <- lists:seq(1,6)],
|
|
Private2 = [{Name, get_latest_inner_proj_summ(FLU)} || {Name,FLU} <- Namez],
|
|
%% Is = [Inner_p || {_,_,_,_,Inner_p} <- Private1],
|
|
put(stable, lists:sort(Private1)),
|
|
%% We want either all true or all false (inner or not) ... except
|
|
%% that it isn't quite that simple. I've now witnessed a case
|
|
%% where the projections are stable but not everyone is
|
|
%% unanimously outer or unanimously inner!
|
|
%% Old partitions: [{a,b},{b,c},{c,a}]
|
|
%% result: all 3 had inner proj of [self]
|
|
%% New partitions: [{b,a},{c,b}]
|
|
%% Priv1 [{342,[c,a],[],[b],[],false},
|
|
%% {326,[b],[],[a,c],[],true},
|
|
%% {342,[c,a],[],[b],[],false}]
|
|
%% ... and it stays completely stable with these epoch #s.
|
|
%%
|
|
%% So, instead, if inner/outer status isn't unanimous, then we
|
|
%% should check to see if the sets of unique UPIs are disjoint.
|
|
%%
|
|
FLUs = [FLU || {FLU,_Pid} <- Namez],
|
|
U_UPI_Rs = lists:usort([UPI++Rep ||
|
|
{_Nm,{_EpochID,UPI,Rep,_Dn,_W,InnerP}} <- Private2]),
|
|
FLU_uses = [{Name, EpochID} ||
|
|
{Name,{EpochID,_UPI,Rep,_Dn,_W,InnerP}} <- Private2],
|
|
Witnesses = hd([Ws ||
|
|
{_Name,{_EpochID,_UPI,Rep,_Dn,Ws,InnerP}} <- Private2]),
|
|
HaveWitnesses_p = Witnesses /= [],
|
|
CMode = if HaveWitnesses_p -> cp_mode;
|
|
true -> ap_mode
|
|
end,
|
|
Unanimous_with_all_peers_p =
|
|
lists:all(fun({FLU, UsesEpochID}) ->
|
|
WhoInEpochID = [Name ||
|
|
{Name,{EpochID,_UPI,_Rep,_Dn,_W,I_}}<-Private2,
|
|
EpochID == UsesEpochID],
|
|
WhoInEpochID_s = ordsets:from_list(WhoInEpochID),
|
|
UPI_R_versions = [UPI++Rep ||
|
|
{_Name,{EpochID,UPI,Rep,_Dn,_W,I_}}<-Private2,
|
|
EpochID == UsesEpochID],
|
|
UPI_R_vers_s = ordsets:from_list(hd(UPI_R_versions)),
|
|
UPI_R_versions == [ [] ] % This FLU in minority partition
|
|
orelse
|
|
(length(lists:usort(UPI_R_versions)) == 1
|
|
andalso
|
|
(ordsets:is_subset(UPI_R_vers_s, WhoInEpochID_s) orelse
|
|
(CMode == cp_mode andalso
|
|
ordsets:is_disjoint(UPI_R_vers_s, WhoInEpochID_s))))
|
|
end, FLU_uses),
|
|
Flat_U_UPI_Rs = lists:flatten(U_UPI_Rs),
|
|
%% Pubs = [begin
|
|
%% {ok, P} = ?FLU_PC:read_latest_projection(FLU, public),
|
|
%% {Name, P#projection_v1.epoch_number}
|
|
%% end || {Name, FLU} <- Namez],
|
|
|
|
%% In AP mode, if not disjoint, then a FLU will appear twice in
|
|
%% flattented U_UPIs.
|
|
AP_mode_disjoint_test_p =
|
|
if CMode == cp_mode ->
|
|
true;
|
|
CMode == ap_mode ->
|
|
lists:sort(Flat_U_UPI_Rs) == lists:usort(Flat_U_UPI_Rs)
|
|
end,
|
|
|
|
CP_mode_agree_test_p =
|
|
if CMode == cp_mode ->
|
|
FullMajority = (length(Namez) div 2) + 1,
|
|
EpochIDs = lists:sort(
|
|
[EpochID || {_Name,{EpochID,_UPI,_Rep,_Dn,_W,I_}}<-Private2]),
|
|
case lists:reverse(lists:sort(uniq_c(EpochIDs))) of
|
|
[{Count,EpochID}|_] when Count >= FullMajority ->
|
|
[{UPI, Rep}] = lists:usort(
|
|
[{_UPI,_Rep} || {_Name,{EpochIDx,_UPI,_Rep,_Dn,_W,I_}}<-Private2,
|
|
EpochIDx == EpochID]),
|
|
ExpectedFLUs = lists:sort(UPI ++ Rep),
|
|
UsingFLUs = lists:sort(
|
|
[Name || {Name,{EpochIDx,_UPI,_Rep,_Dn,_W,I_}}<-Private2,
|
|
EpochIDx == EpochID]),
|
|
io:format(user, "Priv2: EID ~W e ~w u ~w\n", [EpochID, 7, ExpectedFLUs, UsingFLUs]),
|
|
ordsets:is_subset(ordsets:from_list(ExpectedFLUs),
|
|
ordsets:from_list(UsingFLUs));
|
|
_Else ->
|
|
io:format(user, "Priv2: Else ~p\n", [_Else]),
|
|
false
|
|
end;
|
|
CMode == ap_mode ->
|
|
true
|
|
end,
|
|
|
|
io:format(user, "\nPriv1 ~P\n1==2 ~w ap_disjoint ~w u_all_peers ~w cp_mode_agree ~w\n", [lists:sort(Private1), 20, Private1 == Private2, AP_mode_disjoint_test_p, Unanimous_with_all_peers_p, CP_mode_agree_test_p]),
|
|
Private1 == Private2 andalso
|
|
AP_mode_disjoint_test_p andalso
|
|
(
|
|
%% Another property that we want is that for each participant
|
|
%% X mentioned in a UPI or Repairing list of some epoch E that
|
|
%% X is using the same epoch E.
|
|
%%
|
|
%% It's possible (in theory) for humming consensus to agree on
|
|
%% the membership of UPI+Repairing but arrive those lists at
|
|
%% different epoch numbers. Machi chain replication won't
|
|
%% work in that case: all participants need to be using the
|
|
%% same epoch (and csum)!
|
|
(CMode == ap_mode andalso Unanimous_with_all_peers_p)
|
|
orelse
|
|
(CMode == cp_mode andalso CP_mode_agree_test_p)
|
|
).
|
|
|
|
get_latest_inner_proj_summ(FLU) ->
|
|
{ok, Proj} = ?FLU_PC:read_latest_projection(FLU, private),
|
|
#projection_v1{epoch_number=E, epoch_csum=CSum,
|
|
upi=UPI, repairing=Repairing,
|
|
witnesses=Witnesses, down=Down} =
|
|
machi_chain_manager1:inner_projection_or_self(Proj),
|
|
Inner_p = machi_chain_manager1:inner_projection_exists(Proj),
|
|
EpochID = {E, CSum},
|
|
{EpochID, UPI, Repairing, Down, Witnesses, Inner_p}.
|
|
|
|
random_sort(L) ->
|
|
random:seed(now()),
|
|
L1 = [{random:uniform(99999), X} || X <- L],
|
|
[X || {_, X} <- lists:sort(L1)].
|
|
|
|
foo(NumFLUs, MgrOpts0) ->
|
|
timer:sleep(100),
|
|
%% Faster test startup, commented: io:format(user, short_doc(), []),
|
|
%% Faster test startup, commented: timer:sleep(3000),
|
|
|
|
TcpPort = 62877,
|
|
ok = filelib:ensure_dir("/tmp/c/not-used"),
|
|
FluInfo = [
|
|
{a,TcpPort+0,"/tmp/c/data.a"}, {b,TcpPort+1,"/tmp/c/data.b"},
|
|
{c,TcpPort+2,"/tmp/c/data.c"}, {d,TcpPort+3,"/tmp/c/data.d"},
|
|
{e,TcpPort+4,"/tmp/c/data.e"}, {f,TcpPort+5,"/tmp/c/data.f"},
|
|
{g,TcpPort+6,"/tmp/c/data.g"}, {h,TcpPort+7,"/tmp/c/data.h"},
|
|
{i,TcpPort+8,"/tmp/c/data.i"}, {j,TcpPort+9,"/tmp/c/data.j"},
|
|
{k,TcpPort+10,"/tmp/c/data.k"}, {l,TcpPort+11,"/tmp/c/data.l"},
|
|
{m,TcpPort+12,"/tmp/c/data.m"}, {n,TcpPort+13,"/tmp/c/data.n"},
|
|
{o,TcpPort+14,"/tmp/c/data.o"}, {p,TcpPort+15,"/tmp/c/data.p"},
|
|
{q,TcpPort+16,"/tmp/c/data.q"}, {r,TcpPort+17,"/tmp/c/data.r"}
|
|
],
|
|
FLU_biglist = [X || {X,_,_} <- FluInfo],
|
|
All_list = lists:sublist(FLU_biglist, NumFLUs),
|
|
io:format(user, "\nSET # of FLUs = ~w members ~w).\n",
|
|
[NumFLUs, All_list]),
|
|
machi_partition_simulator:start_link({111,222,33}, 0, 100),
|
|
_ = machi_partition_simulator:get(All_list),
|
|
|
|
Ps = [#p_srvr{name=Name,address="localhost",port=Port} ||
|
|
{Name,Port,_Dir} <- lists:sublist(FluInfo, NumFLUs)],
|
|
PsDirs = lists:zip(Ps,
|
|
[Dir || {_,_,Dir} <- lists:sublist(FluInfo, NumFLUs)]),
|
|
FLU_pids = [machi_flu1_test:setup_test_flu(Name, Port, Dir) ||
|
|
{#p_srvr{name=Name,port=Port}, Dir} <- PsDirs],
|
|
Namez = [begin
|
|
{ok, PPid} = ?FLU_PC:start_link(P),
|
|
{Name, PPid}
|
|
end || {#p_srvr{name=Name}=P, _Dir} <- PsDirs],
|
|
MembersDict = machi_projection:make_members_dict(Ps),
|
|
MgrOpts = MgrOpts0 ++ ?DEFAULT_MGR_OPTS,
|
|
MgrNamez =
|
|
[begin
|
|
{ok, MPid} = ?MGR:start_link(P#p_srvr.name, MembersDict, MgrOpts),
|
|
{P#p_srvr.name, MPid}
|
|
end || P <- Ps],
|
|
|
|
try
|
|
[{_, Ma}|_] = MgrNamez,
|
|
{ok, P1} = ?MGR:test_calc_projection(Ma, false),
|
|
[ok = ?FLU_PC:write_projection(FLUPid, public, P1) ||
|
|
{_, FLUPid} <- Namez, FLUPid /= Ma],
|
|
|
|
machi_partition_simulator:reset_thresholds(10, 50),
|
|
_ = machi_partition_simulator:get(All_list),
|
|
|
|
Parent = self(),
|
|
DoIt = fun(Iters, S_min, S_max) ->
|
|
%% io:format(user, "\nDoIt: top\n\n", []),
|
|
io:format(user, "DoIt, ", []),
|
|
Pids = [spawn(fun() ->
|
|
random:seed(now()),
|
|
[begin
|
|
erlang:yield(),
|
|
S_max_rand = random:uniform(
|
|
S_max + 1),
|
|
%% io:format(user, "{t}", []),
|
|
Elapsed =
|
|
?MGR:sleep_ranked_order(
|
|
S_min, S_max_rand,
|
|
M_name, All_list),
|
|
_ = ?MGR:trigger_react_to_env(MMM),
|
|
%% Be more unfair by not
|
|
%% sleeping here.
|
|
% timer:sleep(S_max - Elapsed),
|
|
Elapsed
|
|
end || _ <- lists:seq(1, Iters)],
|
|
Parent ! done
|
|
end) || {M_name, MMM} <- MgrNamez ],
|
|
[receive
|
|
done ->
|
|
ok
|
|
after 120*1000 ->
|
|
exit(icky_timeout)
|
|
end || _ <- Pids]
|
|
end,
|
|
|
|
%% machi_partition_simulator:reset_thresholds(10, 50),
|
|
%% io:format(user, "\nLet loose the dogs of war!\n", []),
|
|
machi_partition_simulator:always_these_partitions([]),
|
|
io:format(user, "\nPuppies for everyone!\n", []),
|
|
[DoIt(30, 0, 0) || _ <- lists:seq(1,5)],
|
|
|
|
DoIt
|
|
catch XXX:YYY ->
|
|
{XXX,YYY}
|
|
end.
|
|
|
|
uniq_c(L) ->
|
|
uniq_c(L, 0, unused).
|
|
|
|
uniq_c([], 0, _Last) ->
|
|
[];
|
|
uniq_c([], Count, Last) ->
|
|
[{Count, Last}];
|
|
uniq_c([H|T], 0, _Last) ->
|
|
uniq_c(T, 1, H);
|
|
uniq_c([H|T], Count, H) ->
|
|
uniq_c(T, Count+1, H);
|
|
uniq_c([H|T], Count, Last) ->
|
|
[{Count, Last}|uniq_c(T, 1, H)].
|
|
|
|
|
|
%% MaxIters = NumFLUs * (NumFLUs + 1) * 6,
|
|
%% Stable = fun(S_Namez) ->
|
|
%% true = lists:foldl(
|
|
%% fun(_, true) ->
|
|
%% true;
|
|
%% (_, _) ->
|
|
%% %% Run a few iterations
|
|
%% [DoIt(10, 10, 50) || _ <- lists:seq(1, 6)],
|
|
%% %% If stable, return true to short circuit remaining
|
|
%% private_projections_are_stable(S_Namez, DoIt)
|
|
%% end, false, lists:seq(0, MaxIters))
|
|
%% end,
|
|
|
|
%% %% Part_b = [{a,b},{c,d}],
|
|
%% Part_b = [{c,d}],
|
|
%% %% Part_b = [{X,Y} || {X,_} <- Namez, {Y,_} <- Namez, X == b orelse Y == b],
|
|
%% %% Part_d = [{X,Y} || {X,_} <- Namez, {Y,_} <- Namez, X == d orelse Y == d],
|
|
|
|
%% %% machi_partition_simulator:always_these_partitions(Part_b),
|
|
%% %% io:format(user, "\nSET partitions = ~w at ~w\n", [Part_b, time()]),
|
|
%% %% true = Stable(Namez), io:format(user, "\nSweet, private projections are stable\n", []), io:format(user, "\t~P\n", [get(stable), 14]), (fun() -> ReportXX = machi_chain_manager1_test:unanimous_report(Namez), true = machi_chain_manager1_test:all_reports_are_disjoint(ReportXX), io:format(user, "Yay for ReportXX!\n", []) end)(),
|
|
|
|
%% %% Part_bd = Part_b ++ Part_d,
|
|
%% %% machi_partition_simulator:always_these_partitions(Part_bd),
|
|
%% %% io:format(user, "\nSET partitions = ~w at ~w\n", [Part_bd, time()]),
|
|
%% %% true = Stable(Namez), io:format(user, "\nSweet, private projections are stable\n", []), io:format(user, "\t~P\n", [get(stable), 14]), (fun() -> ReportXX = machi_chain_manager1_test:unanimous_report(Namez), true = machi_chain_manager1_test:all_reports_are_disjoint(ReportXX), io:format(user, "Yay for ReportXX!\n", []) end)(),
|
|
|
|
%% os:cmd("rm /tmp/signal"),
|
|
%% Part_b_partial_d = Part_b ++ [{e,f}],
|
|
%% %% Part_b_partial_d = [{a,b}, {b,c}, {c,d}, {d,e}],
|
|
%% %% Part_b_partial_d = [{a,b}, {b,d}, {d,e}],
|
|
%% machi_partition_simulator:always_these_partitions(Part_b_partial_d),
|
|
%% io:format(user, "\nSET partitions = ~w at ~w\n", [Part_b_partial_d, time()]),
|
|
%% %% Only_ab_namez = [T || T={Name, _} <- Namez, lists:member(Name, [a,b])],
|
|
%% true = Stable(Namez), io:format(user, "\nSweet, private projections are stable\n", []), io:format(user, "\t~P\n", [get(stable), 14]), (fun() -> ReportXX = machi_chain_manager1_test:unanimous_report(Namez), true = machi_chain_manager1_test:all_reports_are_disjoint(ReportXX), io:format(user, "Yay for ReportXX!\n", []) end)(),
|
|
|
|
%% machi_partition_simulator:always_these_partitions([{b,c}]),
|
|
%% io:format(user, "\nSET partitions = ~w at ~w\n", [[{b,c}], time()]),
|
|
%% %% Only_ab_namez = [T || T={Name, _} <- Namez, lists:member(Name, [a,b])],
|
|
%% [true = Stable(Namez) || _ <- [1,2,3] ], io:format(user, "\nSweet, private projections are stable\n", []), io:format(user, "\t~P\n", [get(stable), 14]), (fun() -> ReportXX = machi_chain_manager1_test:unanimous_report(Namez), true = machi_chain_manager1_test:all_reports_are_disjoint(ReportXX), io:format(user, "Yay for ReportXX!\n", []) end)(),
|
|
|
|
%% %% [begin
|
|
%% %% QQQ = lists:sublist(Part_b_partial_d, NNN),
|
|
%% %% machi_partition_simulator:always_these_partitions(QQQ),
|
|
%% %% io:format(user, "\nSET partitions = ~w at ~w\n", [QQQ, time()]),
|
|
%% %% %% Only_ab_namez = [T || T={Name, _} <- Namez, lists:member(Name, [a,b])],
|
|
%% %% true = Stable(Namez), io:format(user, "\nSweet, private projections are stable\n", []), io:format(user, "\t~P\n", [get(stable), 14]), (fun() -> ReportXX = machi_chain_manager1_test:unanimous_report(Namez), true = machi_chain_manager1_test:all_reports_are_disjoint(ReportXX), io:format(user, "Yay for ReportXX!\n", []) end)()
|
|
%% %% end || NNN <- lists:seq(1, length(Part_b_partial_d))],
|
|
|
|
%% io:format(user, "\nSET partitions = []\n", []),
|
|
%% io:format(user, "We should see convergence to 1 correct chain.\n", []),
|
|
%% machi_partition_simulator:no_partitions(),
|
|
%% [DoIt(50, 10, 50) || _ <- [1,2,3]],
|
|
%% true = private_projections_are_stable(Namez, DoIt),
|
|
%% io:format(user, "~s\n", [os:cmd("date")]),
|
|
|
|
%% %% We are stable now ... analyze it.
|
|
|
|
%% %% Create a report where at least one FLU has written a
|
|
%% %% private projection.
|
|
%% Report = machi_chain_manager1_test:unanimous_report(Namez),
|
|
%% %% ?D(Report),
|
|
|
|
%% %% Report is ordered by Epoch. For each private projection
|
|
%% %% written during any given epoch, confirm that all chain
|
|
%% %% members appear in only one unique chain, i.e., the sets of
|
|
%% %% unique chains are disjoint.
|
|
%% true = machi_chain_manager1_test:all_reports_are_disjoint(Report),
|
|
%% %% io:format(user, "\nLast Reports: ~p\n", [lists:nthtail(length(Report)-8,Report)]),
|
|
|
|
%% %% For each chain transition experienced by a particular FLU,
|
|
%% %% confirm that each state transition is OK.
|
|
%% PrivProjs = [{Name, begin
|
|
%% {ok, Ps9} = ?FLU_PC:get_all_projections(FLU,
|
|
%% private),
|
|
%% [P || P <- Ps9,
|
|
%% P#projection_v1.epoch_number /= 0]
|
|
%% end} || {Name, FLU} <- Namez],
|
|
%% try
|
|
%% [{FLU, true} = {FLU, ?MGR:projection_transitions_are_sane_retrospective(Psx, FLU)} ||
|
|
%% {FLU, Psx} <- PrivProjs],
|
|
%% io:format(user, "\nAll sanity checks pass, hooray!\n", [])
|
|
%% catch _Err:_What ->
|
|
%% io:format(user, "Report ~p\n", [Report]),
|
|
%% io:format(user, "PrivProjs ~p\n", [PrivProjs]),
|
|
%% exit({line, ?LINE, _Err, _What})
|
|
%% end,
|
|
%% %% ?D(R_Projs),
|
|
|
|
%% ok
|
|
%% catch
|
|
%% XX:YY ->
|
|
%% io:format(user, "BUMMER ~p ~p @ ~p\n",
|
|
%% [XX, YY, erlang:get_stacktrace()]),
|
|
%% exit({bummer,XX,YY})
|
|
%% after
|
|
%% [ok = ?MGR:stop(MgrPid) || {_, MgrPid} <- MgrNamez],
|
|
%% [ok = ?FLU_PC:quit(PPid) || {_, PPid} <- Namez],
|
|
%% [ok = machi_flu1:stop(FLUPid) || FLUPid <- FLU_pids],
|
|
%% ok = machi_partition_simulator:stop()
|
|
%% end.
|
|
|
|
-endif. % !PULSE
|
|
-endif. % TEST
|
|
|