Name | Status | Type | Time(s) |
test_only_superusers_can_drop_users | Skipped | 5.1 > 2.1.x
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 2.1.x | 0.780 |
test_udf_permissions_in_delete | Success | | 30.626 |
test_killed_wiped_node_cannot_join | Success | | 88.771 |
test_compression_cql_options | Success | | 20.908 |
test_prepared_statement_invalidation | Success | | 18.346 |
test_basic_data_types | Success | | 20.075 |
test_multi_partition_consistent_reads_after_write | Failure | Failed: 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_columns | Success | | 32.779 |
test_disallow_rebuild_nonlocal_range | Success | | 63.418 |
test_consistent_skinny_table | Success | | 26.814 |
test_map_indexes | Success | | 77.469 |
test_functional | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 1.049 |
test_describe_token_map | Skipped | 5.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4 | 0.361 |
test_move_forwards_between_and_cleanup | Success | | 133.612 |
test_udf_with_udt_keyspace_isolation | Success | | 18.484 |
test_cls | Success | | 19.787 |
test_explicit_column_order_reading | Success | | 19.902 |
test_force_with_none_down | Success | | 43.084 |