Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest_jdk17_python3.8_cythonno_x86_64_10_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_10_64171262220.3602024-12-16T18:35:01.413427d502afbeeb96

Tests

NameStatusTypeTime(s)
test_system_auth_ks_is_alterableSuccess365.005
test_drop_role_cleans_up_udf_permissionsSuccess71.090
test_bootstrap_with_reset_bootstrap_stateSuccess544.372
test_disable_autocompaction_alter_and_nodetool[DateTieredCompactionStrategy]SkippedDateTieredCompactionStrategy is not supported in Cassandra 5.0 and later

/home/cassandra/cassandra-dtest/compaction_test.py:595: DateTieredCompactionStrategy is not supported in Cassandra 5.0 and later
1.454
test_large_collection_errorsSkipped5.1 > 3.0

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.0
1.049
test_countersSuccess78.204
test_base_view_consistency_on_failure_before_mv_applySuccess357.079
test_paging_with_filtering_on_partition_key_on_clustering_columns_compactSkipped5.1 > 3.X

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.X
1.579
test_fail_when_seedSuccess7.714
test_fail_when_seedFailureccmlib.node.TimeoutError: 16 Dec 2024 19:03:56 [node1] after 120.5/120 seconds Missing: ['Starting listening for CQL clients'] not found in system.log: Head: INFO [main] 2024-12-16 19:01:55,929 YamlConfigura Tail: ...e:1] 2024-12-16 19:03:55,568 FetchPeerLog.java:87 - Responding with log delta: LogState{baseState=none , entries=1: Epoch{epoch=4} -> Epoch{epoch=4}}

self = <replace_address_test.TestReplaceAddress object at 0x7fed1d4c46a0>

@since('3.0')
def test_fail_when_seed(self):
"""
When a node is a seed replace should fail
@jira_ticket CASSANDRA-14463
"""
self.fixture_dtest_setup.ignore_log_patterns = list(self.fixture_dtest_setup.ignore_log_patterns) + [
r'Couldn\'t find table with id 5bc52802-de25-35ed-aeab-188eecebb090', # system_auth
r'Exception encountered during startup',
r'Unknown endpoint'
]

# see CASSANDRA-17611
if self.cluster.version() < '4.0':
self.fixture_dtest_setup.ignore_log_patterns = list(self.fixture_dtest_setup.ignore_log_patterns) + [
r'RejectedExecutionException']

> self._setup(n=3)

replace_address_test.py:418:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replace_address_test.py:76: in _setup
self.cluster.start(jvm_args=jvm_args)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/cluster.py:550: in start
node.watch_log_for(start_message, timeout=timeout, process=p, verbose=verbose, from_mark=mark,
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:610: in watch_log_for
TimeoutError.raise_if_passed(start=start, timeout=timeout, node=self.name,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

start = 1734375716.0835092, timeout = 120
msg = "Missing: ['Starting listening for CQL clients'] not found in system.log:\n Head: INFO [main] 2024-12-16 19:01:55,929...hPeerLog.java:87 - Responding with log delta: LogState{baseState=none , entries=1: Epoch{epoch=4} -> Epoch{epoch=4}}\n"
node = 'node1'

@staticmethod
def raise_if_passed(start, timeout, msg, node=None):
if start + timeout < time.time():
> raise TimeoutError.create(start, timeout, msg, node)
E ccmlib.node.TimeoutError: 16 Dec 2024 19:03:56 [node1] after 120.5/120 seconds Missing: ['Starting listening for CQL clients'] not found in system.log:
E Head: INFO [main] 2024-12-16 19:01:55,929 YamlConfigura
E Tail: ...e:1] 2024-12-16 19:03:55,568 FetchPeerLog.java:87 - Responding with log delta: LogState{baseState=none , entries=1: Epoch{epoch=4} -> Epoch{epoch=4}}

../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:56: TimeoutError
152.084
test_rf_collapse_gossiping_property_file_snitchSkipped5.1 > 5.0.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 5.0.x
1.268
test_write_surveyFailureccmlib.node.NodeError: C* process with 13344 is terminated

self = <secondary_indexes_test.TestPreJoinCallback object at 0x7fed1d48b670>

def test_write_survey(self):
def write_survey_and_join(cluster, token):
node2 = new_node(cluster)
node2.set_configuration_options(values={'initial_token': token})
node2.start(jvm_args=["-Dcassandra.write_survey=true"], wait_for_binary_proto=True)
assert node2.grep_log('Startup complete, but write survey mode is active, not becoming an active ring member.')
assert not node2.grep_log('Executing pre-join')

node2.nodetool("join")
assert node2.grep_log('Leaving write survey mode and joining ring at operator request')
assert node2.grep_log('Executing pre-join post-bootstrap tasks')

> self._base_test(write_survey_and_join)

secondary_indexes_test.py:1287:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
secondary_indexes_test.py:1220: in _base_test
joinFn(cluster, tokens[1])
secondary_indexes_test.py:1279: in write_survey_and_join
node2.start(jvm_args=["-Dcassandra.write_survey=true"], wait_for_binary_proto=True)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:928: in start
self.wait_for_binary_interface(from_mark=self.mark)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:711: in wait_for_binary_interface
self.watch_log_for("Starting listening for CQL clients", **kwargs)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:608: in watch_log_for
self.raise_node_error_if_cassandra_process_is_terminated()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <ccmlib.node.Node object at 0x7fed15ef6ca0>

def raise_node_error_if_cassandra_process_is_terminated(self):
if not self._is_pid_running():
msg = "C* process with {pid} is terminated".format(pid=self.pid)
common.debug(msg)
> raise NodeError(msg)
E ccmlib.node.NodeError: C* process with 13344 is terminated

../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:692: NodeError
138.075
test_write_surveyErrorfailed on teardown with "Unexpected error found in node logs (see stdout for full details). Errors: [[node1] 'ERROR [InternalMetadataStage:2] 2024-12-16 19:04:41,460 JVMStabilityInspector.java:70 - Exception in thread Thread[InternalMetadataStage:2,5,InternalMetadataStage]\njava.lang.RuntimeException: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=4} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:135)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:51)\n\tat org.apache.cassandra.net.InboundMessageHandler$ProcessMessage.run(InboundMessageHandler.java:448)\n\tat org.apache.cassandra.concurrent.ExecutionFailure$1.run(ExecutionFailure.java:133)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\nCaused by: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=4} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.tcm.Commit$DefaultReplicator.send(Commit.java:435)\n\tat org.apache.cassandra.tcm.Commit$Handler.doVerb(Commit.java:372)\n\tat org.apache.cassandra.net.InboundSink.lambda$new$0(InboundSink.java:102)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:122)\n\t... 7 common frames omitted', [node1] 'ERROR [InternalMetadataStage:1] 2024-12-16 19:04:41,460 JVMStabilityInspector.java:70 - Exception in thread Thread[InternalMetadataStage:1,5,InternalMetadataStage]\njava.lang.RuntimeException: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=3} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:135)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:51)\n\tat org.apache.cassandra.net.InboundMessageHandler$ProcessMessage.run(InboundMessageHandler.java:448)\n\tat org.apache.cassandra.concurrent.ExecutionFailure$1.run(ExecutionFailure.java:133)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\nCaused by: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=3} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.tcm.Commit$DefaultReplicator.send(Commit.java:435)\n\tat org.apache.cassandra.tcm.Commit$Handler.doVerb(Commit.java:372)\n\tat org.apache.cassandra.net.InboundSink.lambda$new$0(InboundSink.java:102)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:122)\n\t... 7 common frames omitted']"

Unexpected error found in node logs (see stdout for full details). Errors: [[node1] 'ERROR [InternalMetadataStage:2] 2024-12-16 19:04:41,460 JVMStabilityInspector.java:70 - Exception in thread Thread[InternalMetadataStage:2,5,InternalMetadataStage]\njava.lang.RuntimeException: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=4} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:135)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:51)\n\tat org.apache.cassandra.net.InboundMessageHandler$ProcessMessage.run(InboundMessageHandler.java:448)\n\tat org.apache.cassandra.concurrent.ExecutionFailure$1.run(ExecutionFailure.java:133)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\nCaused by: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=4} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.tcm.Commit$DefaultReplicator.send(Commit.java:435)\n\tat org.apache.cassandra.tcm.Commit$Handler.doVerb(Commit.java:372)\n\tat org.apache.cassandra.net.InboundSink.lambda$new$0(InboundSink.java:102)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:122)\n\t... 7 common frames omitted', [node1] 'ERROR [InternalMetadataStage:1] 2024-12-16 19:04:41,460 JVMStabilityInspector.java:70 - Exception in thread Thread[InternalMetadataStage:1,5,InternalMetadataStage]\njava.lang.RuntimeException: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=3} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:135)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:51)\n\tat org.apache.cassandra.net.InboundMessageHandler$ProcessMessage.run(InboundMessageHandler.java:448)\n\tat org.apache.cassandra.concurrent.ExecutionFailure$1.run(ExecutionFailure.java:133)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\nCaused by: java.lang.AssertionError: Nothing to replicate after retaining epochs since Epoch{epoch=3} from LogState{baseState=none , entries=0: []}\n\tat org.apache.cassandra.tcm.Commit$DefaultReplicator.send(Commit.java:435)\n\tat org.apache.cassandra.tcm.Commit$Handler.doVerb(Commit.java:372)\n\tat org.apache.cassandra.net.InboundSink.lambda$new$0(InboundSink.java:102)\n\tat org.apache.cassandra.net.InboundSink.accept(InboundSink.java:122)\n\t... 7 common frames omitted']
4.166
test_insertSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
1.293
test_invalid_cf_namesSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
1.252
test_remove_column_ttlSuccess67.984
test_tracing_from_system_tracesSuccess78.481
test_default_null_indicatorSuccess106.156
test_reading_pk_timestamps_with_countersSuccess82.410
Properties »