Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest_jdk11_python3.8_cythonno_x86_64_59_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_59_64170133188.9272024-12-16T21:36:07.48418160b847285f25

Tests

NameStatusTypeTime(s)
test_list_permissions_validationSuccess61.425
test_logged_batch_compatibility_2Skipped5.1 > 3.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.x
0.892
test_compaction_strategy_switching[LeveledCompactionStrategy]Success133.495
test_multi_counter_updateSuccess116.603
test_hintedhandoff_windowSuccess209.913
test_no_base_column_in_view_pk_complex_timestamp_without_flushSkippedFrequently fails in CI. Skipping until fixed as tracked by CASSANDRA-14148

/home/cassandra/cassandra-dtest/materialized_views_test.py:1464: Frequently fails in CI. Skipping until fixed as tracked by CASSANDRA-14148
0.001
test_paging_using_secondary_indexes_with_static_colsSuccess127.799
test_failed_read_repairSuccess117.111
test_complementary_update_with_limit_on_static_column_with_empty_partitionsSuccess194.447
test_failing_manual_rebuild_indexSuccess138.406
test_splitSuccess291.259
test_wrapped_range_slicesSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
1.038
test_simple_removenodeSuccess261.723
test_paxosSuccess218.761
test_login_rejects_bad_passSuccess75.355
test_bulk_round_trip_blogposts_with_max_connectionsSuccess7.274
test_bulk_round_trip_blogposts_with_max_connectionsFailurecassandra.OperationTimedOut: errors={'127.0.0.3:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.3:9042

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

def test_bulk_round_trip_blogposts_with_max_connections(self):
"""
Same as test_bulk_round_trip_blogposts but limit the maximum number of concurrent connections a host will
accept to simulate a failed connection to a replica that is up. Here we are interested in testing COPY TO,
where we should have at most worker_processes * nodes connections + 1 connections, the +1 is the cqlsh
connection. For COPY FROM the driver handles retries, we use only 2 worker processes to make sure it succeeds.

@jira_ticket CASSANDRA-10938
"""
> self._test_bulk_round_trip(nodes=3, partitioner="murmur3", num_operations=10000,
configuration_options={'native_transport_max_concurrent_connections': '12',
'batch_size_warn_threshold_in_kb': '10'},
profile=os.path.join(os.path.dirname(os.path.realpath(__file__)), 'blogposts.yaml'),
stress_table='stresscql.blogposts',
copy_to_options={'NUMPROCESSES': 5, 'MAXATTEMPTS': 20},
copy_from_options={'NUMPROCESSES': 2})

cqlsh_tests/test_cqlsh_copy.py:2498:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
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 stresscql.blogposts", consistency=ALL>' request_i...9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.3: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.3:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.3:9042

../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: OperationTimedOut
179.816
test_repair_validates_dcSuccess888.294
Properties »