Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest_jdk11_python3.8_cythonno_x86_64_63_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_63_6417012986.0162024-08-22T17:49:14.309615c9c422df2706

Tests

NameStatusTypeTime(s)
test_create_user_as_alias_for_create_roleSuccess30.803
test_logged_batch_compatibility_5Skipped5.1 > 3.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.x
0.255
test_disable_autocompaction_nodetool[LeveledCompactionStrategy]Success47.212
test_counter_node_downFailurecassandra.WriteTimeout: Error from server: code=1100 [Coordinator node timed out waiting for replica nodes' responses] message="Operation timed out - received 0/1 responses." info={'consistency': 'ONE', 'required_responses': 1, 'received_responses': 0, 'write_type': 'COUNTER'}

self = <counter_test.TestCounters object at 0x7f7db9ab9eb0>

def test_counter_node_down(self):
"""
@jira_ticket CASSANDRA-17411
"""
cluster = self.cluster
cluster.populate(3).start()
node1, node2, node3 = cluster.nodelist()
session = self.patient_cql_connection(node1)
create_ks(session, 'counter_tests', 3)

session.execute("""
CREATE TABLE IF NOT EXISTS counter_cs (
key text PRIMARY KEY,
count counter
)
""")

node2.stop(gently=False, wait_other_notice=True)

for _ in range(0, 20):
> session.execute("UPDATE counter_cs SET count = count + 1 WHERE key = 'test'")

counter_test.py:447:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:2618: in execute
return self.execute_async(query, parameters, trace, custom_payload, timeout, execution_profile, paging_state, host, execute_as).result()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <ResponseFuture: query='<SimpleStatement query="UPDATE counter_cs SET count = count + 1 WHERE key = 'test'", consisten...cy': 'ONE', 'required_responses': 1, 'received_responses': 0, 'write_type': 'COUNTER'} coordinator_host=127.0.0.3:9042>

def result(self):
"""
Return the final result or raise an Exception if errors were
encountered. If the final result or error has not been set
yet, this method will block until it is set, or the timeout
set for the request expires.

Timeout is specified in the Session request execution functions.
If the timeout is exceeded, an :exc:`cassandra.OperationTimedOut` will be raised.
This is a client-side timeout. For more information
about server-side coordinator timeouts, see :class:`.policies.RetryPolicy`.

Example usage::

>>> future = session.execute_async("SELECT * FROM mycf")
>>> # do other stuff...

>>> try:
... rows = future.result()
... for row in rows:
... ... # process results
... except Exception:
... log.exception("Operation failed:")

"""
self._event.wait()
if self._final_result is not _NOT_SET:
return ResultSet(self, self._final_result)
else:
> raise self._final_exception
E cassandra.WriteTimeout: Error from server: code=1100 [Coordinator node timed out waiting for replica nodes' responses] message="Operation timed out - received 0/1 responses." info={'consistency': 'ONE', 'required_responses': 1, 'received_responses': 0, 'write_type': 'COUNTER'}

../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: WriteTimeout
66.611
test_revoked_jmx_accessSuccess48.841
test_expired_liveness_with_limit_rf1_nodes3Success76.727
test_paging_with_filtering_on_counter_columnsSuccess45.639
test_quorum_requirementSuccess48.640
test_partition_deletion_on_skinny_tableSuccess97.304
test_only_coordinator_chooses_index_for_querySuccess54.447
test_zerocopy_streamingSuccess96.895
test_multi_countSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.290
test_decommissioned_node_cant_rejoinSuccess63.529
test_pycodestyle_complianceSuccess1.816
test_cqlsh_execute_cmdlineSuccess27.864
test_bulk_round_trip_with_backoffSuccess138.514
test_wide_row_repairSuccess139.846
Properties »