Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-latest_jdk17_python3.8_cythonno_x86_64_40_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_40_6417014948.1642024-08-08T19:29:23.689128a5c174d3cdd1

Tests

NameStatusTypeTime(s)
test_list_permissionsSuccess24.744
test_counter_batch_accepts_counter_mutationsSuccess13.963
test_small_compressed_segment_sizeSuccess28.015
test_13911Skippedported to in-JVM from 4.0 >= 5.0.1

/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 4.0 >= 5.0.1
0.289
test_disk_balance_after_boundary_change_lcsSuccess389.745
test_insert_during_range_movement_rf1Success123.072
test_sstabledumpSuccess24.381
test_add_and_remove_nodeSuccess191.458
test_consistent_skinny_tableFailurecassandra.ReadFailure: Error from server: code=1300 [Replica(s) failed to execute read] message="Operation failed - received 1 responses and 1 failures: INDEX_NOT_AVAILABLE from /127.0.0.2:7000" info={'consistency': 'ALL', 'required_responses': 2, 'received_responses': 1, 'failures': 1, 'error_code_map': {'127.0.0.2': '0x0006'}}

self = <replica_side_filtering_test.TestSecondaryIndexes object at 0x7fc5499546d0>

def test_consistent_skinny_table(self):
self._prepare_cluster(
create_table="CREATE TABLE t (k int PRIMARY KEY, v text)",
create_index="CREATE INDEX ON t(v)",
both_nodes=["INSERT INTO t(k, v) VALUES (1, 'old')", # updated to 'new'
"INSERT INTO t(k, v) VALUES (2, 'old')",
"INSERT INTO t(k, v) VALUES (3, 'old')", # updated to 'new'
"INSERT INTO t(k, v) VALUES (4, 'old')",
"INSERT INTO t(k, v) VALUES (5, 'old')", # deleted partition
"UPDATE t SET v = 'new' WHERE k = 1",
"UPDATE t SET v = 'new' WHERE k = 3",
"DELETE FROM t WHERE k = 5"])

> self._assert_one("SELECT * FROM t WHERE v = 'old' LIMIT 1", row=[2, 'old'])

replica_side_filtering_test.py:453:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replica_side_filtering_test.py:90: in _assert_one
assert_one(self.session, decorated_query, row)
tools/assertions.py:130: in assert_one
res = session.execute(simple_query)
../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="SELECT * FROM t WHERE v = 'old' LIMIT 1", consistency=Not Set>' reques... 2, 'received_responses': 1, 'failures': 1, 'error_code_map': {'127.0.0.2': '0x0006'}} coordinator_host=127.0.0.1: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.ReadFailure: Error from server: code=1300 [Replica(s) failed to execute read] message="Operation failed - received 1 responses and 1 failures: INDEX_NOT_AVAILABLE from /127.0.0.2:7000" info={'consistency': 'ALL', 'required_responses': 2, 'received_responses': 1, 'failures': 1, 'error_code_map': {'127.0.0.2': '0x0006'}}

../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: ReadFailure
27.013
test_drop_column_compactionSuccess16.498
test_sstableloader_compression_deflate_to_snappySkippedDon't need to run base class test, only derived classes

/home/cassandra/cassandra-dtest/sstable_generation_loading_test.py:47: Don't need to run base class test, only derived classes
0.563
test_cf_remove_columnSkipped5.0.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4
0.304
test_counter_get_slice_rangeSkipped5.0.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4
0.305
test_type_secondary_indexingSuccess38.873
test_colons_in_string_literalsSuccess13.988
test_all_datatypes_readSuccess17.024
test_nonexistent_table_repairSuccess36.988
Properties »