Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-large-latest_jdk11_python3.8_cythonno_x86_64_1_8

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_1_850111877.3602024-11-08T07:49:51.952039863ca5bab79f

Failures

NameStatusTypeTime(s)
test_resume_failed_replaceFailurecassandra.OperationTimedOut: errors={'127.0.0.4:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.4:9042

self = <replace_address_test.TestReplaceAddress object at 0x7fbd2cfbe070>

@since('2.2')
@pytest.mark.resource_intensive
def test_resume_failed_replace(self):
"""
Test resumable bootstrap while replacing node. Feature introduced in
2.2 with ticket https://issues.apache.org/jira/browse/CASSANDRA-8838

@jira_ticket https://issues.apache.org/jira/browse/CASSANDRA-8838
"""
> self._test_restart_failed_replace(mode='resume')

replace_address_test.py:517:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replace_address_test.py:607: in _test_restart_failed_replace
self._verify_data(initial_data)
replace_address_test.py:167: in _verify_data
assert_all(session, 'select * from {} LIMIT {}'.format(table, limit),
tools/assertions.py:182: in assert_all
res = session.execute(simple_query) if timeout is None else session.execute(simple_query, timeout=timeout)
../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 keyspace1.standard1 LIMIT 10000", consistency=ONE>' requ...9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.4: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.4:9042': 'Client request timeout. See Session.execute[_async](timeout)'}, last_host=127.0.0.4:9042

../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: OperationTimedOut
159.690
Properties »