Name | Status | Type | Time(s) |
test_grant_revoke_permissions | Success | | 29.764 |
test_multi_table_batch_for_10554 | Success | | 47.711 |
test_sstable_deletion[DateTieredCompactionStrategy] | Skipped | DateTieredCompactionStrategy is not supported in Cassandra 5.0 and later
/home/cassandra/cassandra-dtest/compaction_test.py:595: DateTieredCompactionStrategy is not supported in Cassandra 5.0 and later | 0.476 |
test_simple_increment | Success | | 39.524 |
test_hintedhandoff_setmaxwindow | Success | | 123.573 |
test_mv_with_default_ttl_with_flush | Success | | 245.379 |
test_group_by_with_range_name_query_paging | Success | | 50.504 |
test_range_slice_query_with_tombstones | Skipped | ported 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.272 |
test_complementary_deletion_with_limit_on_regular_column | Success | | 85.082 |
test_8280_validate_indexed_values | Success | | 25.537 |
test_sstableloader_compression_deflate_to_deflate | Skipped | Don'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.691 |
test_get_range_slices_tokens | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.524 |
test_multi_dc_tokens_random | Skipped | 5.1 > 3.0.0
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.0.0 | 0.307 |
test_mutation_quorum | Success | | 65.422 |
test_create_index | Success | | 28.829 |
test_bulk_round_trip_default | Success | | 6.305 |
test_bulk_round_trip_default | Failure | cassandra.OperationTimedOut: errors={'127.0.0.1:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.1:9042
self = <cqlsh_tests.test_cqlsh_copy.TestCqlshCopy object at 0x7f054e68feb0>
def test_bulk_round_trip_default(self):
"""
Test bulk import with default stress import (one row per operation)
@jira_ticket CASSANDRA-9302
"""
> self._test_bulk_round_trip(nodes=3, partitioner="murmur3", num_operations=100000)
cqlsh_tests/test_cqlsh_copy.py:2466:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
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.1: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.1:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.1:9042
../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: OperationTimedOut | 78.368 |
test_local_dc_repair | Success | | 447.778 |