Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest_jdk17_python3.8_cythonno_x86_64_62_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_62_64170142179.1432024-12-17T05:30:23.4582472937a098a0d9

Tests

NameStatusTypeTime(s)
test_prevent_circular_grantsSuccess46.764
test_batchlog_replay_compatibility_4Skippedported to in-JVM from 4.0 >= 5.1

/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 4.0 >= 5.1
0.902
test_large_compaction_warningSkippedported to in-JVM from 5.0 >= 5.1

/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 5.0 >= 5.1
0.877
test_compact_counter_clusterSkipped5.1 > 3.X

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.X
0.862
test_basic_authSuccess83.042
test_expired_liveness_with_limit_rf1_nodes1Success45.970
test_paging_with_filteringSuccess88.332
test_speculative_writeSuccess87.593
test_complementary_update_with_limit_and_rows_betweenSuccess136.677
test_multi_index_filtering_querySuccess46.500
test_abortedcompactionSuccess433.282
test_multiget_sliceSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.902
test_resumable_decommissionSuccess228.383
test_oversized_mutationSuccess135.963
test_list_roles_after_loginSuccess56.232
test_bulk_round_trip_with_single_coreSuccess6.694
test_bulk_round_trip_with_single_coreFailurecassandra.OperationTimedOut: errors={'127.0.0.2:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.2:9042

self = <cqlsh_tests.test_cqlsh_copy.TestCqlshCopy object at 0x7ff765f90760>

def test_bulk_round_trip_with_single_core(self):
"""
Perform a round trip on a simulated single core machine. When determining the number of cores,
copyutil.py will return the number carried by the environment variable CQLSH_COPY_TEST_NUM_CORES if it has
been set.

@jira_ticket CASSANDRA-11053
"""
os.environ['CQLSH_COPY_TEST_NUM_CORES'] = '1'
> ret = self._test_bulk_round_trip(nodes=3, partitioner="murmur3", num_operations=100000)

cqlsh_tests/test_cqlsh_copy.py:2539:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
cqlsh_tests/test_cqlsh_copy.py:2436: in _test_bulk_round_trip
num_records = create_records()
cqlsh_tests/test_cqlsh_copy.py:2409: in create_records
ret = rows_to_list(self.session.execute(count_statement))[0][0]
../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 COUNT(*) FROM keyspace1.standard1", consistency=ALL>' request_i...9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.2:9042 coordinator_host=None>

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.OperationTimedOut: errors={'127.0.0.2:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.2:9042

../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: OperationTimedOut
150.774
test_thread_count_repairSuccess475.914
Properties »