Move all trace validation logging into raft.h (#5200)

This commit is contained in:
Markus Alexander Kuppe 2023-04-24 11:30:15 -07:00 коммит произвёл GitHub
Родитель ade01a9957
Коммит b5e27b0213
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 497 добавлений и 515 удалений

Просмотреть файл

@ -23,13 +23,6 @@ ToConfigurations(c) ==
THEN (0 :> {})
ELSE FoldSeq(LAMBDA x,y: (x.idx :> DOMAIN x.nodes) @@ y, <<>>, c)
ToReplicatedDataType(data) ==
\* TODO Add a signature enum to aft::ReplicatedDataType::signature in logging_stub.h to remove
\* TODO matching on the data string "signature" in driver.h::emit_signature.
IF data = "eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9"
THEN TypeSignature
ELSE TypeEntry \* TODO Handle TypeReconfiguration.
IsAppendEntriesRequest(msg, dst, src, logline) ==
/\ msg.type = AppendEntriesRequest
/\ msg.type = RaftMsgType[logline.msg.paket.msg + 1]
@ -144,13 +137,9 @@ commit ==
add_configuration ==
/\ IsEvent([ component |-> "raft", function |-> "add_configuration" ])
/\ UNCHANGED vars
truncate ==
/\ IsEvent([ component |-> "ledger", function |-> "truncate" ])
/\ UNCHANGED vars
append ==
/\ IsEvent([ component |-> "ledger", function |-> "append" ])
execute_append_entries_sync ==
/\ IsEvent([ component |-> "raft", function |-> "execute_append_entries_sync" ])
/\ UNCHANGED vars
TraceRcvUpdateTermReqVote ==
@ -170,8 +159,7 @@ TraceNext ==
\/ send_append_entries_response
\/ commit
\/ add_configuration
\/ truncate
\/ append
\/ execute_append_entries_sync
\/ TraceRcvUpdateTermReqVote
\/ TraceRcvUpdateTermReqAppendEntries
@ -198,34 +186,34 @@ IsBecomeLeader(logline) ==
/\ <<BecomeLeader(logline.msg.node)>>_vars
IsClientRequest(logline) ==
/\ logline.msg.event = [ component |-> "ledger", function |-> "append" ]
/\ ToReplicatedDataType(logline.msg.data) = TypeEntry
/\ logline.msg.event = [ component |-> "raft", function |-> "replicate" ]
/\ ~logline.msg.globallycommittable
/\ <<ClientRequest(logline.msg.node)>>_vars
\* TODO Consider creating a mapping from clientRequests to actual values in the system trace.
\* TODO Alternatively, extract the written values from the system trace and redefine clientRequests at startup.
IsSendAppendEntries(logline) ==
/\ logline.msg.event = [ component |-> "raft", function |-> "send_authenticated" ]
/\ LET n == logline.msg.node
m == logline.msg.to
IN /\ <<AppendEntries(n, m)>>_vars
/\ LET i == logline.msg.node
j == logline.msg.to
IN /\ <<AppendEntries(i, j)>>_vars
\* The AppendEntries action models the leader sending a message to some other node. Thus, we could add a
\* constraint s.t. Cardinality(messages') > Cardinality(messages) . However, the variable messages is
\* a set and, thus, the variable messages remains unchanged if the leaders resend the same message, which
\* it may.
/\ \E msg \in Messages':
/\ IsAppendEntriesRequest(msg, m, n, logline)
/\ IsAppendEntriesRequest(msg, j, i, logline)
\* There is now one more message of this type.
/\ OneMoreMessage(msg)
IsRcvAppendEntriesRequest(logline) ==
\/ /\ logline.msg.event = [ component |-> "raft", function |-> "recv_append_entries" ]
/\ LET n == logline.msg.node
m == logline.msg.from
IN /\ \E msg \in Messages:
/\ IsAppendEntriesRequest(msg, n, m, logline)
/\ \/ <<HandleAppendEntriesRequest(n, m, msg)>>_vars
\/ <<UpdateTerm(n, m, msg) \cdot HandleAppendEntriesRequest(n, m, msg)>>_vars
/\ LET i == logline.msg.node
j == logline.msg.from
IN /\ \E m \in Messages:
/\ IsAppendEntriesRequest(m, i, j, logline)
/\ \/ <<HandleAppendEntriesRequest(i, j, m)>>_vars
\/ <<UpdateTerm(i, j, m) \cdot HandleAppendEntriesRequest(i, j, m)>>_vars
/\ logline'.msg.event = [ component |-> "raft", function |-> "send_append_entries_response" ]
\* Match on logline', which is log line of saer below.
=> \E msg \in Messages':
@ -240,8 +228,8 @@ IsRcvAppendEntriesRequest(logline) ==
/\ UNCHANGED vars
IsSignCommittableMessages(logline) ==
/\ logline.msg.event = [ component |-> "ledger", function |-> "append" ]
/\ ToReplicatedDataType(logline.msg.data) = TypeSignature
/\ logline.msg.event = [ component |-> "raft", function |-> "replicate" ]
/\ logline.msg.globallycommittable
/\ <<SignCommittableMessages(logline.msg.node)>>_vars
IsAdvanceCommitIndex(logline) ==
@ -249,9 +237,9 @@ IsAdvanceCommitIndex(logline) ==
\* TypeSignature entry in the log.
\/ /\ logline.msg.event = [ component |-> "raft", function |-> "commit" ]
/\ logline.msg.leadership = "Leader"
/\ LET n == logline.msg.node
IN /\ <<AdvanceCommitIndex(n)>>_vars
/\ commitIndex'[n] >= logline.msg.state.commit_idx
/\ LET i == logline.msg.node
IN /\ <<AdvanceCommitIndex(i)>>_vars
/\ commitIndex'[i] >= logline.msg.state.commit_idx
\/ /\ logline.msg.event = [ component |-> "raft", function |-> "commit" ]
/\ logline.msg.leadership = "Follower"
/\ UNCHANGED vars
@ -259,40 +247,41 @@ IsAdvanceCommitIndex(logline) ==
IsChangeConfiguration(logline) ==
/\ logline.msg.event = [ component |-> "raft", function |-> "add_configuration" ]
/\ state[logline.msg.node] = Leader
/\ LET n == logline.msg.node
/\ LET i == logline.msg.node
conf == ToConfigurations(logline.msg.configurations)
domConf == DOMAIN conf
currConf == Min(domConf)
nextConf == Max(domConf \ {currConf})
IN <<ChangeConfigurationInt(n, conf[nextConf])>>_vars
newConfiguration == conf[nextConf]
IN <<ChangeConfigurationInt(i, newConfiguration)>>_vars
IsRcvAppendEntriesResponse(logline) ==
/\ logline.msg.event = [ component |-> "raft", function |-> "recv_append_entries_response" ]
/\ LET n == logline.msg.node
m == logline.msg.from
IN \E msg \in Messages :
/\ IsAppendEntriesResponse(msg, n, m, logline)
/\ <<HandleAppendEntriesResponse(n, m, msg)>>_vars
/\ LET i == logline.msg.node
j == logline.msg.from
IN \E m \in Messages :
/\ IsAppendEntriesResponse(m, i, j, logline)
/\ <<HandleAppendEntriesResponse(i, j, m)>>_vars
IsSendRequestVote(logline) ==
/\ logline.msg.event = [ component |-> "raft", function |-> "send_request_vote" ]
/\ LET n == logline.msg.node
m == logline.msg.to
IN <<RequestVote(n, m)>>_vars
/\ LET i == logline.msg.node
j == logline.msg.to
IN <<RequestVote(i, j)>>_vars
IsRcvRequestVoteRequest(logline) ==
\/ /\ logline.msg.event = [ component |-> "raft", function |-> "recv_request_vote" ]
/\ LET n == logline.msg.node
m == logline.msg.from
IN \E msg \in Messages:
/\ msg.type = RequestVoteRequest
/\ msg.dest = n
/\ msg.source = m
/\ \/ <<HandleRequestVoteRequest(n, m, msg)>>_vars
/\ LET i == logline.msg.node
j == logline.msg.from
IN \E m \in Messages:
/\ m.type = RequestVoteRequest
/\ m.dest = i
/\ m.source = j
/\ \/ <<HandleRequestVoteRequest(i, j, m)>>_vars
\* Below formula is a decomposed TraceRcvUpdateTermReqVote step, i.e.,
\* a (ccfraft!UpdateTerm \cdot ccfraft!HandleRequestVoteRequest) step.
\* (see https://github.com/microsoft/CCF/issues/5057#issuecomment-1487279316)
\/ <<UpdateTerm(n, m, msg) \cdot HandleRequestVoteRequest(n, m, msg)>>_vars
\/ <<UpdateTerm(i, j, m) \cdot HandleRequestVoteRequest(i, j, m)>>_vars
\/ \* Skip srvr because ccfraft!HandleRequestVoteRequest atomcially handles the request and sends the response.
\* Alternatively, rrv could be mapped to UpdateTerm and srvr to HandleRequestVoteRequest. However, this
\* causes problems if an UpdateTerm step is *not* enabled because the node's term is already up-to-date.
@ -300,23 +289,23 @@ IsRcvRequestVoteRequest(logline) ==
/\ UNCHANGED vars
\/ \* Skip append because ccfraft!HandleRequestVoteRequest atomcially handles the request, sends the response,
\* and appends the entry to the ledger.
/\ logline.msg.event = [ component |-> "ledger", function |-> "append" ]
/\ logline.msg.event = [ component |-> "raft", function |-> "execute_append_entries_sync" ]
/\ state[logline.msg.node] = Follower
/\ currentTerm[logline.msg.node] = logline.msg.term
/\ currentTerm[logline.msg.node] = logline.msg.state.current_view
/\ UNCHANGED vars
IsRcvRequestVoteResponse(logline) ==
/\ logline.msg.event = [ component |-> "raft", function |-> "recv_request_vote_response" ]
/\ LET n == logline.msg.node
m == logline.msg.from
IN \E msg \in Messages:
/\ msg.type = RequestVoteResponse
/\ msg.dest = n
/\ msg.source = m
/\ msg.term = logline.msg.paket.term
/\ msg.voteGranted = logline.msg.paket.vote_granted
/\ \/ <<HandleRequestVoteResponse(n, m, msg)>>_vars
\/ <<UpdateTerm(n, m, msg) \cdot HandleRequestVoteResponse(n, m, msg)>>_vars
/\ LET i == logline.msg.node
j == logline.msg.from
IN \E m \in Messages:
/\ m.type = RequestVoteResponse
/\ m.dest = i
/\ m.source = j
/\ m.term = logline.msg.paket.term
/\ m.voteGranted = logline.msg.paket.vote_granted
/\ \/ <<HandleRequestVoteResponse(i, j, m)>>_vars
\/ <<UpdateTerm(i, j, m) \cdot HandleRequestVoteResponse(i, j, m)>>_vars
IsBecomeFollower(logline) ==
/\ logline.msg.event = [ component |-> "raft", function |-> "become_follower" ]
@ -425,22 +414,22 @@ TraceAlias ==
matchIndex |-> matchIndex,
_ENABLED |->
[
Timeout |-> [ i \in Servers |-> ENABLED Timeout(i) ],
RequestVote |-> [ i,j \in Servers |-> ENABLED RequestVote(i, j) ],
BecomeLeader |-> [ i \in Servers |-> ENABLED BecomeLeader(i) ],
ClientRequest |-> [ i \in Servers |-> ENABLED ClientRequest(i) ],
SignCommittableMessages |-> [ i \in Servers |-> ENABLED SignCommittableMessages(i) ],
ChangeConfiguration |-> [ i \in Servers |-> ENABLED ChangeConfiguration(i) ],
NotifyCommit |-> [ i,j \in Servers |-> ENABLED NotifyCommit(i,j) ],
AdvanceCommitIndex |-> [ i \in Servers |-> ENABLED AdvanceCommitIndex(i) ],
AppendEntries |-> [ i,j \in Servers |-> ENABLED AppendEntries(i, j) ],
CheckQuorum |-> [ i \in Servers |-> ENABLED CheckQuorum(i) ],
Receive |-> ENABLED Receive,
RcvAppendEntriesRequest |-> ENABLED RcvAppendEntriesRequest,
RcvAppendEntriesResponse|-> ENABLED RcvAppendEntriesResponse,
RcvUpdateTerm |-> ENABLED RcvUpdateTerm,
RcvRequestVoteRequest |-> ENABLED RcvRequestVoteRequest,
RcvRequestVoteResponse |-> ENABLED RcvRequestVoteResponse,
Timeout |-> [ i \in Servers |-> ENABLED Timeout(i) ],
RequestVote |-> [ i,j \in Servers |-> ENABLED RequestVote(i, j) ],
BecomeLeader |-> [ i \in Servers |-> ENABLED BecomeLeader(i) ],
ClientRequest |-> [ i \in Servers |-> ENABLED ClientRequest(i) ],
SignCommittableMessages |-> [ i \in Servers |-> ENABLED SignCommittableMessages(i) ],
ChangeConfiguration |-> [ i \in Servers |-> ENABLED ChangeConfiguration(i) ],
NotifyCommit |-> [ i,j \in Servers |-> ENABLED NotifyCommit(i,j) ],
AdvanceCommitIndex |-> [ i \in Servers |-> ENABLED AdvanceCommitIndex(i) ],
AppendEntries |-> [ i,j \in Servers |-> ENABLED AppendEntries(i, j) ],
CheckQuorum |-> [ i \in Servers |-> ENABLED CheckQuorum(i) ],
Receive |-> ENABLED Receive,
RcvAppendEntriesRequest |-> ENABLED RcvAppendEntriesRequest,
RcvAppendEntriesResponse |-> ENABLED RcvAppendEntriesResponse,
RcvUpdateTerm |-> ENABLED RcvUpdateTerm,
RcvRequestVoteRequest |-> ENABLED RcvRequestVoteRequest,
RcvRequestVoteResponse |-> ENABLED RcvRequestVoteResponse,
TraceRcvUpdateTermReqVote |-> ENABLED TraceRcvUpdateTermReqVote
]
]

Просмотреть файл

@ -1,7 +0,0 @@
These .ndjson files have been manually pre-processed:
replicate.ndjson:
- Removed the second and third line, created by driver.h calling raft::add_configuration in create_new_nodes in a loop.
election.ndjson:
- Removed the second and third line, created by driver.h calling raft::add_configuration in create_new_nodes in a loop.

Просмотреть файл

@ -2,161 +2,161 @@
{"h_ts":"10","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"15","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"20","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"3","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"3"}}}
{"h_ts":"25","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1809","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"32","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"33","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"3","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"3"},"type":3}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"3","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"}}}
{"h_ts":"41","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"42","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"48","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"51","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"57","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"63","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1877","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"70","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"74","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"75","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"type":0}}
{"h_ts":"84","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"93","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"100","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"101","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"105","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"109","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"114","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"116","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"118","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"type":0}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"130","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"131","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"136","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"137","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"141","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"145","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"151","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"155","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"3","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"3"},"term":1}}
{"h_ts":"170","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"3","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"3"},"term":1}}
{"h_ts":"175","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"176","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"189","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"194","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"203","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"204","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"208","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"215","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"216","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"225","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"226","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"3","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"}}}
{"h_ts":"235","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"236","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"243","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"}}}
{"h_ts":"245","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"246","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"253","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"}}}
{"h_ts":"255","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"256","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"260","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"264","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"269","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"271","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"273","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"274","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"279","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"280","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"285","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"286","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"290","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"295","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"297","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"299","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"300","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"305","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"306","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"311","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"312","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"316","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"321","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"323","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"325","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"327","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"332","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"333","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"338","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"339","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"343","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"348","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"350","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"352","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"354","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"359","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"360","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"365","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"367","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"369","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"371","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"376","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"377","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"382","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"384","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"386","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"393","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"0","oldleadership":"Leader","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"394","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"399","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"400","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"405","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"406","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"411","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"412","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Follower","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"414","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Follower","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"416","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Follower","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"419","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1809","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"422","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"424","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"426","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"427","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":3}}
{"h_ts":"433","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"3","oldleadership":"Follower","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"}}}
{"h_ts":"435","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"436","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":3}}
{"h_ts":"442","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"Follower","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"}}}
{"h_ts":"444","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"445","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":3}}
{"h_ts":"451","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"Follower","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"}}}
{"h_ts":"453","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"454","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":4}}
{"h_ts":"457","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":4}}
{"h_ts":"464","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1877","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"466","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"468","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"470","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"471","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":4}}
{"h_ts":"473","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"480","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"481","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"488","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"489","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"496","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"497","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"501","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"505","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"25","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1831","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"32","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"33","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"3","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"3"},"type":3}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"3","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"}}}
{"h_ts":"41","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"42","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"48","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"51","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"57","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"63","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1899","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"70","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"74","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"75","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"type":0}}
{"h_ts":"84","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"93","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"100","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"101","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"105","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"109","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"114","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"116","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"118","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"type":0}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"130","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"131","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"136","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"137","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"141","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"145","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"151","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"0"},"term":1}}
{"h_ts":"155","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"3"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"3","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"3"},"term":1}}
{"h_ts":"170","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"3","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"3"},"term":1}}
{"h_ts":"175","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"176","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"2"},"term":1}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"term":1}}
{"h_ts":"189","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"194","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"1"},"term":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"term":1}}
{"h_ts":"203","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"204","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"208","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"215","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"216","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"225","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"226","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"3","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"}}}
{"h_ts":"235","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"236","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"243","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"}}}
{"h_ts":"245","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"246","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"253","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"}}}
{"h_ts":"255","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"256","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"260","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"264","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"269","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"271","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"273","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"274","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"279","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"280","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"285","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"286","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"290","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"295","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"297","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"299","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"300","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"305","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"306","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"311","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"312","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"316","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"321","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"323","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"325","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"327","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"332","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"333","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"338","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"339","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"343","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"348","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"350","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"352","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"354","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"359","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"360","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"365","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"367","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"369","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"371","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"376","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"377","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"382","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"384","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"386","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"393","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"0","oldleadership":"Leader","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"394","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"399","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"400","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"405","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"406","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"411","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"412","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Follower","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"414","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Follower","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"416","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Follower","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"419","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1831","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"422","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"424","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"426","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"427","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"3"},"type":3}}
{"h_ts":"433","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"3","oldleadership":"Follower","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"}}}
{"h_ts":"435","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"436","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":3}}
{"h_ts":"442","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"Follower","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"}}}
{"h_ts":"444","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"445","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"last_committable_idx":2,"msg":3,"term":2,"term_of_last_committable_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":3}}
{"h_ts":"451","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"Follower","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"}}}
{"h_ts":"453","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"454","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":4}}
{"h_ts":"457","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":4}}
{"h_ts":"464","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1899","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"},"3":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"466","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"3","type":1}}
{"h_ts":"468","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"470","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"471","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":2,"vote_granted":true},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":4}}
{"h_ts":"473","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"3","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"},"type":0}}
{"h_ts":"480","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"3","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"3"},"to":"0","type":1}}
{"h_ts":"481","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"488","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"489","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":2,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"496","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"497","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"501","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"505","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"3","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":2},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":2,"last_idx":2,"my_node_id":"0"},"type":1}}

Просмотреть файл

@ -1,73 +1,73 @@
{"h_ts":"4","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"8","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"12","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1809","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1877","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"153","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"2"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"1"}}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"197","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"205","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"}}}
{"h_ts":"206","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"211","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"213","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"214","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"type":0}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"}}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"224","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"type":0}}
{"h_ts":"231","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"}}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"234","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"238","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1831","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1899","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"153","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":3,"node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":4,"node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"term":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":3,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":3,"my_node_id":"2"},"term":1}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"2"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":4,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"term":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":3,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":3,"my_node_id":"1"},"term":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"1"}}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":4,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"term":1}}
{"h_ts":"197","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"205","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"}}}
{"h_ts":"206","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"211","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"213","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"214","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"type":0}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"}}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"224","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"type":0}}
{"h_ts":"231","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"}}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"234","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"238","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}

Просмотреть файл

@ -1,73 +1,73 @@
{"h_ts":"4","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"8","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"12","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1809","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1877","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"153","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1RPSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1RPSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"2"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1RPSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"1"}}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"197","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"205","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"}}}
{"h_ts":"206","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"211","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"213","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"214","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"type":0}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"}}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"224","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"type":0}}
{"h_ts":"231","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"}}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"234","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"238","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1831","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1899","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"153","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1RPSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":3,"node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":4,"node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"term":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1RPSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":3,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":3,"my_node_id":"2"},"term":1}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"2"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":4,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"term":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1RPSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":3,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":3,"my_node_id":"1"},"term":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"1"}}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":4,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"term":1}}
{"h_ts":"197","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"205","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"}}}
{"h_ts":"206","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"211","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"213","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"214","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"type":0}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"}}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"224","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"type":0}}
{"h_ts":"231","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"}}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"234","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"238","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}

Просмотреть файл

@ -1,73 +1,73 @@
{"h_ts":"4","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"8","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"12","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1809","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1877","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"153","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"2"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":3,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"1"}}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":4,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"197","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"205","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"}}}
{"h_ts":"206","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"211","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"213","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"214","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"type":0}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"}}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"224","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"type":0}}
{"h_ts":"231","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"}}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"234","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"238","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1831","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1899","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"153","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":3,"node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"0"},"term":1}}
{"h_ts":"157","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":4,"node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"term":1}}
{"h_ts":"159","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"161","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"166","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":3,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":3,"my_node_id":"2"},"term":1}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"2"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":4,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"term":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"180","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJGc2RYUnZibTF2Ym1SdiIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":3,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":3,"my_node_id":"1"},"term":1}}
{"h_ts":"190","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":3,"my_node_id":"1"}}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":4,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"term":1}}
{"h_ts":"197","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"205","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"}}}
{"h_ts":"206","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"211","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"213","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"214","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"2"},"type":0}}
{"h_ts":"221","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"}}}
{"h_ts":"223","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"224","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":4,"leader_commit_idx":4,"msg":0,"prev_idx":4,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":4,"my_node_id":"1"},"type":0}}
{"h_ts":"231","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"}}}
{"h_ts":"233","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"234","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}
{"h_ts":"238","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":4,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":4,"commit_idx":4,"current_view":1,"last_idx":4,"my_node_id":"0"},"type":1}}

Просмотреть файл

@ -1,64 +1,64 @@
{"h_ts":"4","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"8","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"12","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"494","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"add_configuration"},"leadership":"none","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1809","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1571","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"740","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1943","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1688","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1877","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"759","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"ledger","function":"append"},"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/test/driver.h","number":"62","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"ledger","function":"append"},"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"152","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"154","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"155","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"}}}
{"h_ts":"164","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"165","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2263","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"175","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"186","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1034","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"187","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"193","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"703","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1426","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"199","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"203","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"722","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"16","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1831","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_candidate"},"leadership":"Candidate","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"19","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"21","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1593","msg":{"event":{"component":"raft","function":"send_request_vote"},"leadership":"Candidate","membership":"Active","node":"0","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"22","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"2","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"2"},"type":3}}
{"h_ts":"28","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"2","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"}}}
{"h_ts":"30","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"31","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"751","msg":{"event":{"component":"raft","function":"recv_request_vote"},"from":"0","leadership":"none","membership":"Active","node":"1","paket":{"last_committable_idx":0,"msg":3,"term":1,"term_of_last_committable_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":0,"last_idx":0,"my_node_id":"1"},"type":3}}
{"h_ts":"37","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1965","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_follower"},"leadership":"Follower","membership":"Active","node":"1","oldleadership":"none","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"}}}
{"h_ts":"39","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1710","msg":{"event":{"component":"raft","function":"send_request_vote_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"40","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"1","leadership":"Candidate","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"45","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1899","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"become_leader"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"}}}
{"h_ts":"47","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"49","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"50","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"770","msg":{"event":{"component":"raft","function":"recv_request_vote_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"msg":4,"term":1,"vote_granted":true},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":4}}
{"h_ts":"52","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"59","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"60","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"67","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"68","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"72","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"77","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"79","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"80","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"85","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"86","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":0,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":0},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"91","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"92","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"96","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":0,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"0"},"type":1}}
{"h_ts":"102","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"replicate"},"globallycommittable":false,"index":1,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"0"},"term":1}}
{"h_ts":"106","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"663","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"replicate"},"globallycommittable":true,"index":2,"node":"0","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"term":1}}
{"h_ts":"108","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"110","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"111","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"2"},"type":0}}
{"h_ts":"115","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"2"},"term":1}}
{"h_ts":"119","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"2","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"term":1}}
{"h_ts":"124","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"125","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":0,"msg":0,"prev_idx":0,"prev_term":0,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":0,"my_node_id":"1"},"type":0}}
{"h_ts":"129","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYUdWc2JHOTNiM0pzWkE9PSIsInR5cGUiOiJyYXcifQ==","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":1,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":1,"my_node_id":"1"},"term":1}}
{"h_ts":"133","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1304","msg":{"data":"eyJkYXRhIjoiYzJsbmJtRjBkWEpsIiwidHlwZSI6InJhdyJ9","event":{"component":"raft","function":"execute_append_entries_sync"},"globallycommittable":true,"index":2,"node":"1","state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"term":1}}
{"h_ts":"138","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"139","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"146","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Leader","membership":"Active","node":"0","state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"}}}
{"h_ts":"147","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"152","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"154","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"155","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"162","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"2","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"}}}
{"h_ts":"164","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"165","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":0,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"172","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"2285","msg":{"configurations":[{"idx":0,"nodes":{"0":{"address":":"},"1":{"address":":"},"2":{"address":":"}},"rid":0}],"event":{"component":"raft","function":"commit"},"leadership":"Follower","membership":"Active","node":"1","state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"}}}
{"h_ts":"174","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"175","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"179","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"184","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"2","type":1}}
{"h_ts":"186","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1045","msg":{"event":{"component":"raft","function":"send_authenticated"},"leadership":"Leader","membership":"Active","node":"0","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"to":"1","type":1}}
{"h_ts":"187","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"2","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"type":0}}
{"h_ts":"192","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"2","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"2"},"to":"0","type":1}}
{"h_ts":"193","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"714","msg":{"event":{"component":"raft","function":"recv_append_entries"},"from":"0","leadership":"Follower","membership":"Active","node":"1","paket":{"contains_new_view":false,"idx":2,"leader_commit_idx":2,"msg":0,"prev_idx":2,"prev_term":1,"term":1,"term_of_idx":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"type":0}}
{"h_ts":"198","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"1448","msg":{"event":{"component":"raft","function":"send_append_entries_response"},"leadership":"Follower","membership":"Active","node":"1","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":0,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"1"},"to":"0","type":1}}
{"h_ts":"199","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"1","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}
{"h_ts":"203","thread_id":"100","level":"info","tag":"tla","file":"../src/consensus/aft/raft.h","number":"733","msg":{"event":{"component":"raft","function":"recv_append_entries_response"},"from":"2","leadership":"Leader","membership":"Active","node":"0","paket":{"last_log_idx":2,"msg":1,"success":0,"term":1},"state":{"cft_watermark_idx":2,"commit_idx":2,"current_view":1,"last_idx":2,"my_node_id":"0"},"type":1}}