Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-novnode_jdk11_python3.8_cythonno_x86_64_18_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_18_64180131523.1812024-12-04T11:25:31.407452187e5bc3b9ba

Tests

NameStatusTypeTime(s)
test_only_superusers_can_drop_usersSkipped5.1 > 2.1.x

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 2.1.x
0.780
test_udf_permissions_in_deleteSuccess30.626
test_killed_wiped_node_cannot_joinSuccess88.771
test_compression_cql_optionsSuccess20.908
test_prepared_statement_invalidationSuccess18.346
test_basic_data_typesSuccess20.075
test_multi_partition_consistent_reads_after_writeFailureFailed: Timeout >900.0s

self = <materialized_views_test.TestMaterializedViewsConsistency object at 0x7f0a4b908550>

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 0x7f0a4b908550>
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.385
test_paging_with_filtering_on_partition_key_on_static_columnsSuccess32.779
test_disallow_rebuild_nonlocal_rangeSuccess63.418
test_consistent_skinny_tableSuccess26.814
test_map_indexesSuccess77.469
test_functionalSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
1.049
test_describe_token_mapSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.361
test_move_forwards_between_and_cleanupSuccess133.612
test_udf_with_udt_keyspace_isolationSuccess18.484
test_clsSuccess19.787
test_explicit_column_order_readingSuccess19.902
test_force_with_none_downSuccess43.084
Properties »