Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-latest_jdk11_python3.8_cythonno_x86_64_12_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_12_64170181405.5422024-11-10T22:38:40.353794d0eee10b6b09

Tests

NameStatusTypeTime(s)
test_only_superuser_can_create_usersSkipped5.1 > 2.1.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 2.1.x
3.813
test_udf_with_overloads_permissionsSuccess32.160
test_local_quorum_bootstrapSuccess114.973
test_fanout_size[LeveledCompactionStrategy]SkippedNot implemented unless LeveledCompactionStrategy is used

/home/cassandra/cassandra-dtest/compaction_test.py:547: Not implemented unless LeveledCompactionStrategy is used
0.482
test_renameSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.449
test_basic_data_typesSuccess23.168
test_multi_partition_consistent_reads_after_writeFailureFailed: Timeout >900.0s

self = <materialized_views_test.TestMaterializedViewsConsistency object at 0x7f2b9bd8aac0>

def test_multi_partition_consistent_reads_after_write(self):
"""
Tests consistency of multiple writes to a multiple partitions

@jira_ticket CASSANDRA-10981
"""
> self._consistent_reads_after_write_test(5)

materialized_views_test.py:2846:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <materialized_views_test.TestMaterializedViewsConsistency object at 0x7f2b9bd8aac0>
num_partitions = 5

def _consistent_reads_after_write_test(self, num_partitions):

session = self.prepare()
node1, node2, node3 = self.cluster.nodelist()

# Test config
lower = 0
upper = 100000
processes = 4
queues = [None] * processes
eachProcess = (upper - lower) // processes

logger.debug("Creating schema")
session.execute(
("CREATE KEYSPACE IF NOT EXISTS mvtest WITH replication = "
"{'class': 'SimpleStrategy', 'replication_factor': '3'}")
)
session.execute(
"CREATE TABLE mvtest.test1 (a int, b int, c int, d int, PRIMARY KEY (a,b))"
)
session.cluster.control_connection.wait_for_schema_agreement()

insert1 = session.prepare("INSERT INTO mvtest.test1 (a,b,c,d) VALUES (?,?,?,?)")
insert1.consistency_level = writeConsistency

logger.debug("Writing data to base table")
for i in range(upper // 10):
self._do_row(insert1, i, num_partitions)

logger.debug("Creating materialized view")
session.execute(
('CREATE MATERIALIZED VIEW mvtest.mv1 AS '
'SELECT a,b,c,d FROM mvtest.test1 WHERE a IS NOT NULL AND b IS NOT NULL AND '
'c IS NOT NULL PRIMARY KEY (c,a,b)')
)
session.cluster.control_connection.wait_for_schema_agreement()

logger.debug("Writing more data to base table")
for i in range(upper // 10, upper):
self._do_row(insert1, i, num_partitions)

# Wait that all requests are done
while self.num_request_done < upper:
> time.sleep(1)
E Failed: Timeout >900.0s

materialized_views_test.py:2891: Failed
906.362
test_paging_with_filtering_on_partition_key_on_static_columnsSuccess39.577
test_insert_data_during_replace_same_addressSuccess200.832
test_rf_collapse_property_file_snitchSkipped5.1 > 5.0.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 5.0.x
0.266
test_startup_non_seed_with_peersSkipped5.1 > 5.0.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 5.0.x
0.518
test_casSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.280
test_system_keyspace_operationsSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.243
test_remove_column_ttl_with_default_ttlSkipped5.1 > 3.5

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.5
0.518
test_list_queriesSuccess33.294
test_undefined_as_null_indicatorSuccess25.203
test_reading_text_pk_countersSuccess22.713
Properties »