CCF/tests/election.py

119 строки
3.9 KiB
Python
Исходник Обычный вид История

2019-04-26 18:27:27 +03:00
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache 2.0 License.
import os
import getpass
import logging
import time
import math
import http
2019-04-26 18:27:27 +03:00
import infra.ccf
import infra.proc
import infra.e2e_args
2019-04-26 18:27:27 +03:00
from loguru import logger as LOG
# This test starts from a given number of nodes (hosts), commits
2019-08-15 19:52:43 +03:00
# a transaction, stops the current primary, waits for an election and repeats
# this process until no progress can be made (i.e. no primary can be elected
2019-04-26 18:27:27 +03:00
# as F > N/2).
def wait_for_index_globally_committed(index, term, nodes):
"""
Wait for a specific version at a specific term to be committed on all nodes.
"""
for _ in range(infra.ccf.Network.replication_delay):
up_to_date_f = []
for f in nodes:
2019-10-01 18:17:14 +03:00
with f.node_client() as c:
2020-02-19 20:08:06 +03:00
res = c.request("getCommit", {"commit": index})
if res.result["term"] == term and (res.global_commit >= index):
2019-04-26 18:27:27 +03:00
up_to_date_f.append(f.node_id)
if len(up_to_date_f) == len(nodes):
break
time.sleep(1)
assert len(up_to_date_f) == len(
nodes
2019-08-15 19:52:43 +03:00
), "Only {} out of {} backups are up to date".format(len(up_to_date_f), len(nodes))
2019-04-26 18:27:27 +03:00
def run(args):
# Three nodes minimum to make sure that the raft network can still make progress
# if one node stops
hosts = ["localhost"] * (4 if args.consensus == "pbft" else 3)
2019-04-26 18:27:27 +03:00
with infra.ccf.network(
hosts, args.binary_dir, args.debug_nodes, args.perf_nodes, pdb=args.pdb
2019-04-26 18:27:27 +03:00
) as network:
network.start_and_join(args)
2019-04-26 18:27:27 +03:00
current_term = None
# Time before an election completes
max_election_duration = args.election_timeout * 4 // 1000
# Number of nodes F to stop until network cannot make progress
nodes_to_stop = math.ceil(len(hosts) / 2)
if args.consensus == "pbft":
nodes_to_stop = math.ceil(len(hosts) / 3)
2019-04-26 18:27:27 +03:00
for _ in range(nodes_to_stop):
2019-08-15 19:52:43 +03:00
# Note that for the first iteration, the primary is known in advance anyway
LOG.debug("Find freshly elected primary")
# After a view change in pbft, finding the new primary takes longer
primary, current_term = network.find_primary(
request_timeout=(30 if args.consensus == "pbft" else 3)
)
2019-04-26 18:27:27 +03:00
LOG.debug(
"Commit new transactions, primary:{}, current_term:{}".format(
primary.node_id, current_term
)
)
2019-04-26 18:27:27 +03:00
commit_index = None
2020-02-19 20:08:06 +03:00
with primary.user_client() as c:
2019-04-26 18:27:27 +03:00
res = c.do(
"LOG_record",
{
"id": current_term,
"msg": "This log is committed in term {}".format(current_term),
},
readonly_hint=None,
expected_result=True,
2019-04-26 18:27:27 +03:00
)
commit_index = res.commit
LOG.debug("Waiting for transaction to be committed by all nodes")
wait_for_index_globally_committed(
commit_index, current_term, network.get_joined_nodes()
2019-04-26 18:27:27 +03:00
)
2019-08-15 19:52:43 +03:00
LOG.debug("Stopping primary")
primary.stop()
2019-04-26 18:27:27 +03:00
LOG.debug("Waiting for a new primary to be elected...")
2019-04-26 18:27:27 +03:00
time.sleep(max_election_duration)
# More than F nodes have been stopped, trying to commit any message
LOG.debug(
"No progress can be made as more than {} nodes have stopped".format(
nodes_to_stop
)
)
2019-05-20 13:45:53 +03:00
try:
primary, _ = network.find_primary()
2019-08-15 19:52:43 +03:00
assert False, "Primary should not be found"
except infra.ccf.PrimaryNotFound:
pass
LOG.info(
"As expected, primary could not be found after election timeout. Test ended successfully."
)
2019-04-26 18:27:27 +03:00
if __name__ == "__main__":
args = infra.e2e_args.cli_args()
args.package = "liblogging"
2019-04-26 18:27:27 +03:00
run(args)