Name | Status | Type | Time(s) |
test_create_drop_role_validation | Success | | 47.825 |
test_logged_batch_rejects_counter_mutations | Success | | 33.590 |
test_stop_commit_failure_policy | Success | | 94.363 |
test_13911_rows_srp | Skipped | ported to in-JVM from 4.0 >= 5.0.3
/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 4.0 >= 5.0.3 | 1.016 |
test_disk_balance_after_joining_ring_stcs | Success | | 663.960 |
test_clustering_column | Success | | 112.724 |
test_sstableupgrade | Skipped | 5.0.3 > 3.X
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 3.X | 1.027 |
test_move_single_node | Success | | 138.516 |
test_complementary_update_with_limit_on_regular_column | Success | | 142.507 |
test_nondefault_table_settings | Success | | 30.054 |
test_optional_outbound_tls | Success | | 272.610 |
test_batch_mutate_remove_slice_of_entire_supercolumns | Skipped | 5.0.3 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 4 | 1.045 |
test_incr_decr_standard_remove | Skipped | 5.0.3 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 4 | 1.043 |
test_full_repair_from_full_replica | Success | | 123.309 |
test_oversized_mutation | Success | | 124.586 |
test_list_roles_after_login | Success | | 49.909 |
test_bulk_round_trip_with_single_core | Success | | 259.128 |
test_dc_repair | Failure | Failed: Timeout >900.0s
self = <repair_tests.repair_test.TestRepair object at 0x7f28d94ca9d0>
def test_dc_repair(self):
"""
* Set up a multi DC cluster
* Perform a -dc repair on two dc's
* Assert only nodes on those dcs were repaired
"""
cluster = self._setup_multi_dc()
node1 = cluster.nodes["node1"]
node2 = cluster.nodes["node2"]
node3 = cluster.nodes["node3"]
logger.debug("starting repair...")
opts = ["-dc", "dc1", "-dc", "dc2"]
opts += _repair_options(self.cluster.version(), ks="ks")
> node1.repair(opts)
repair_tests/repair_test.py:660:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:1576: in repair
return self.nodetool(cmd)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:1032: in nodetool
return handle_external_tool_process(p, ['nodetool', '-h', 'localhost', '-p', str(self.jmx_port)] + shlex.split(cmd))
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:2325: in handle_external_tool_process
out, err = process.communicate()
/usr/lib/python3.8/subprocess.py:1028: in communicate
stdout, stderr = self._communicate(input, endtime, timeout)
/usr/lib/python3.8/subprocess.py:1868: in _communicate
ready = selector.select(timeout)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <selectors.PollSelector object at 0x7f28d95a94f0>, timeout = None
def select(self, timeout=None):
# This is shared between poll() and epoll().
# epoll() has a different signature and handling of timeout parameter.
if timeout is None:
timeout = None
elif timeout <= 0:
timeout = 0
else:
# poll() has a resolution of 1 millisecond, round away from
# zero to wait *at least* timeout seconds.
timeout = math.ceil(timeout * 1e3)
ready = []
try:
> fd_event_list = self._selector.poll(timeout)
E Failed: Timeout >900.0s
/usr/lib/python3.8/selectors.py:415: Failed | 908.967 |