Name | Status | Type | Time(s) |
test_modify_and_select_auth | Success | | 84.256 |
test_udf_permissions_validation | Success | | 21.490 |
test_resumable_bootstrap | Success | | 166.617 |
test_disable_autocompaction_alter_and_nodetool[SizeTieredCompactionStrategy] | Success | | 32.924 |
test_large_collection_errors | Skipped | 5.0 > 3.0
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 3.0 | 0.464 |
test_counters | Success | | 13.436 |
test_base_view_consistency_on_failure_before_mv_apply | Success | | 119.748 |
test_paging_with_filtering_on_partition_key_on_clustering_columns_compact | Skipped | 5.0 > 3.X
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 3.X | 0.465 |
test_fail_when_seed | Success | | 41.656 |
test_rf_collapse_gossiping_property_file_snitch | Success | | 2.355 |
test_rf_collapse_gossiping_property_file_snitch | Failure | ccmlib.common.UnavailableSocketError: Inet address 127.0.0.2:7000 is not available: [Errno 98] Address already in use; a cluster may already be running or you may need to add the loopback alias
itf = ('127.0.0.2', 7000)
def assert_socket_available(itf):
info = socket.getaddrinfo(itf[0], itf[1], socket.AF_UNSPEC, socket.SOCK_STREAM)
if not info:
raise UnavailableSocketError("Failed to get address info for [%s]:%s" % itf)
(family, socktype, proto, canonname, sockaddr) = info[0]
s = socket.socket(family, socktype)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
> s.bind(sockaddr)
E OSError: [Errno 98] Address already in use
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/common.py:631: OSError
During handling of the above exception, another exception occurred:
self = <replication_test.TestSnitchConfigurationUpdate object at 0x7ff196f10970>
@since('2.1', max_version='5.0.x')
def test_rf_collapse_gossiping_property_file_snitch(self):
"""
@jira_ticket CASSANDRA-10238
@jira_ticket CASSANDRA-10242
@jira_ticket CASSANDRA-10243
Confirm that when racks are collapsed using a gossiping property file snitch the RF is not impacted.
"""
> self._test_rf_on_snitch_update(nodes=[3], rf={'class': '\'NetworkTopologyStrategy\'', 'dc1': 3},
snitch_class_name='GossipingPropertyFileSnitch',
snitch_config_file='cassandra-rackdc.properties',
snitch_lines_before=lambda i, node: ["dc=dc1", "rack=rack{}".format(i)],
snitch_lines_after=lambda i, node: ["dc=dc1", "rack=rack1"],
final_racks=["rack1", "rack1", "rack1"],
nodes_to_shutdown=[0, 2])
replication_test.py:373:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replication_test.py:552: in _test_rf_on_snitch_update
cluster.start()
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/cluster.py:515: in start
common.assert_socket_available(itf)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
itf = ('127.0.0.2', 7000)
def assert_socket_available(itf):
info = socket.getaddrinfo(itf[0], itf[1], socket.AF_UNSPEC, socket.SOCK_STREAM)
if not info:
raise UnavailableSocketError("Failed to get address info for [%s]:%s" % itf)
(family, socktype, proto, canonname, sockaddr) = info[0]
s = socket.socket(family, socktype)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
s.bind(sockaddr)
s.close()
return True
except socket.error as msg:
s.close()
addr, port = itf
> raise UnavailableSocketError(
"Inet address %s:%s is not available: %s; a cluster may already be running or you may need to add the loopback alias" % (
addr, port, msg))
E ccmlib.common.UnavailableSocketError: Inet address 127.0.0.2:7000 is not available: [Errno 98] Address already in use; a cluster may already be running or you may need to add the loopback alias
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/common.py:637: UnavailableSocketError | 5.023 |
test_write_survey | Failure | ccmlib.common.UnavailableSocketError: Inet address 127.0.0.2:7000 is not available: [Errno 98] Address already in use; a cluster may already be running or you may need to add the loopback alias
itf = ('127.0.0.2', 7000)
def assert_socket_available(itf):
info = socket.getaddrinfo(itf[0], itf[1], socket.AF_UNSPEC, socket.SOCK_STREAM)
if not info:
raise UnavailableSocketError("Failed to get address info for [%s]:%s" % itf)
(family, socktype, proto, canonname, sockaddr) = info[0]
s = socket.socket(family, socktype)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
> s.bind(sockaddr)
E OSError: [Errno 98] Address already in use
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/common.py:631: OSError
During handling of the above exception, another exception occurred:
self = <secondary_indexes_test.TestPreJoinCallback object at 0x7ff196f3f1c0>
def test_write_survey(self):
def write_survey_and_join(cluster, token):
node2 = new_node(cluster)
node2.set_configuration_options(values={'initial_token': token})
node2.start(jvm_args=["-Dcassandra.write_survey=true"], wait_for_binary_proto=True)
assert node2.grep_log('Startup complete, but write survey mode is active, not becoming an active ring member.')
assert not node2.grep_log('Executing pre-join')
node2.nodetool("join")
assert node2.grep_log('Leaving write survey mode and joining ring at operator request')
assert node2.grep_log('Executing pre-join post-bootstrap tasks')
> self._base_test(write_survey_and_join)
secondary_indexes_test.py:1287:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
secondary_indexes_test.py:1220: in _base_test
joinFn(cluster, tokens[1])
secondary_indexes_test.py:1279: in write_survey_and_join
node2.start(jvm_args=["-Dcassandra.write_survey=true"], wait_for_binary_proto=True)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:791: in start
common.assert_socket_available(itf)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
itf = ('127.0.0.2', 7000)
def assert_socket_available(itf):
info = socket.getaddrinfo(itf[0], itf[1], socket.AF_UNSPEC, socket.SOCK_STREAM)
if not info:
raise UnavailableSocketError("Failed to get address info for [%s]:%s" % itf)
(family, socktype, proto, canonname, sockaddr) = info[0]
s = socket.socket(family, socktype)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
s.bind(sockaddr)
s.close()
return True
except socket.error as msg:
s.close()
addr, port = itf
> raise UnavailableSocketError(
"Inet address %s:%s is not available: %s; a cluster may already be running or you may need to add the loopback alias" % (
addr, port, msg))
E ccmlib.common.UnavailableSocketError: Inet address 127.0.0.2:7000 is not available: [Errno 98] Address already in use; a cluster may already be running or you may need to add the loopback alias
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/common.py:637: UnavailableSocketError | 22.652 |
test_insert | Skipped | 5.0 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 4 | 0.483 |
test_invalid_cf_names | Skipped | 5.0 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 4 | 0.308 |
test_remove_column_ttl | Success | | 16.688 |
test_tracing_from_system_traces | Success | | 18.673 |
test_default_null_indicator | Success | | 21.684 |
test_reading_pk_timestamps_with_counters | Success | | 16.924 |