Name | Status | Type | Time(s) |
test_login | Success | | 82.559 |
test_drop_function_and_keyspace_cleans_up_udf_permissions | Success | | 21.614 |
test_manual_bootstrap | Success | | 124.902 |
test_user_defined_compaction | Success | | 72.778 |
test_rename | Skipped | 5.0.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4 | 0.213 |
test_basic_data_types | Success | | 14.098 |
test_multi_partition_consistent_reads_after_write | Failure | Failed: Timeout >900.0s
self = <materialized_views_test.TestMaterializedViewsConsistency object at 0x7f4bc699d910>
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 0x7f4bc699d910>
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.426 |
test_paging_with_filtering_on_partition_key_on_static_columns | Success | | 35.220 |
test_insert_data_during_replace_same_address | Success | | 188.626 |
test_rf_collapse_property_file_snitch | Success | | 111.341 |
test_startup_non_seed_with_peers | Success | | 142.741 |
test_cas | Skipped | 5.0.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4 | 0.255 |
test_system_keyspace_operations | Skipped | 5.0.1 > 4
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 4 | 0.487 |
test_remove_column_ttl_with_default_ttl | Skipped | 5.0.1 > 3.5
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.1 > 3.5 | 0.233 |
test_list_queries | Success | | 24.412 |
test_undefined_as_null_indicator | Success | | 16.929 |
test_reading_text_pk_counters | Success | | 14.661 |