Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-latest_jdk11_python3.8_cythonno_x86_64_59_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_59_64170132566.6272024-11-22T03:09:02.19854344aeb5455a97

Tests

NameStatusTypeTime(s)
test_list_permissions_validationSuccess44.787
test_logged_batch_compatibility_2Skipped5.0.3 > 3.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 3.x
0.999
test_compaction_strategy_switching[LeveledCompactionStrategy]Success84.779
test_multi_counter_updateSuccess82.064
test_hintedhandoff_windowSuccess226.438
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_colsSuccess92.737
test_failed_read_repairSuccess102.279
test_complementary_update_with_limit_on_static_column_with_empty_partitionsSuccess144.551
test_failing_manual_rebuild_indexSuccess96.273
test_splitSuccess197.772
test_wrapped_range_slicesSkipped5.0.3 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 4
1.027
test_simple_removenodeSuccess203.332
test_paxosSuccess166.585
test_login_rejects_bad_passSuccess49.915
test_bulk_round_trip_blogposts_with_max_connectionsSuccess6.882
test_bulk_round_trip_blogposts_with_max_connectionsFailurecassandra.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 0x7fc7741dddf0>

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.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
144.824
test_repair_validates_dcSuccess773.009
Properties »