Name | Status | Type | Time(s) |
test_create_cf_auth | Success | | 63.641 |
test_credentials_cache_background_reload_handle_unavailable | Success | | 134.557 |
test_defaults | Success | | 50.157 |
test_snapshot | Skipped | awaiting CASSANDRA-10699
/home/cassandra/cassandra-dtest/concurrent_schema_changes_test.py:498: awaiting CASSANDRA-10699 | 0.001 |
test_tracing_simple | Success | | 114.356 |
test_create | Success | | 103.178 |
test_set_get_batchlog_replay_throttle | Success | | 98.368 |
test_single_row_deletions | Success | | 123.169 |
test_complementary_deletion_with_limit_on_regular_column | Success | | 204.188 |
test_collection_table_datatype | Success | | 58.955 |
test_ssl_wrong_hostname_no_validation | Success | | 120.066 |
test_batch_mutate_remove_standard_row | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.908 |
test_describe_ring_on_invalid_keyspace | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.886 |
test_migration | Success | | 96.410 |
test_protocol_negotiation | Success | | 53.294 |
test_reading_max_insert_errors | Success | | 72.149 |
test_multiple_full_repairs_lcs | Failure | Failed: Timeout >900.0s
self = <repair_tests.incremental_repair_test.TestIncRepair object at 0x7feff54626d0>
@since("2.2")
def test_multiple_full_repairs_lcs(self):
"""
@jira_ticket CASSANDRA-11172 - repeated full repairs should not cause infinite loop in getNextBackgroundTask
"""
cluster = self.cluster
cluster.populate(2).start()
node1, node2 = cluster.nodelist()
for x in range(0, 10):
> node1.stress(['write', 'n=100k', 'no-warmup', '-rate', 'threads=10', '-schema', 'compaction(strategy=LeveledCompactionStrategy,sstable_size_in_mb=10)', 'replication(factor=2)'])
repair_tests/incremental_repair_test.py:453:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:1529: in stress
return handle_external_tool_process(p, ['stress'] + stress_options)
../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 0x7feff4787eb0>, 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 | 905.247 |