[
https://issues.apache.org/jira/browse/CASSANDRA-17456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17533914#comment-17533914
]
Josh McKenzie commented on CASSANDRA-17456:
-------------------------------------------
None of the single failures from the ASF CI run below look unaccounted for, and
thus are likely not influenced by this patch.
[CI Results]
Branch: 4.1, build number: 9
butler url:
[https://butler.cassandra.apache.org/#/ci/upstream/compare/Cassandra-4.1/Cassandra-4.1]
jenkins url: [https://ci-cassandra.apache.org/job/Cassandra-4.1/9/]
JIRA: CASSANDRA-17456
commit url:
[https://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=commit;h=9f3bc657273dfa9e20d233636adf662904f01f34]
affected paths:
* src/java/org/apache/cassandra/db/commitlog/CommitLog.java
* test/unit/org/apache/cassandra/db/commitlog/CommitLogTest.java
* NEWS.txt
* src/java/org/apache/cassandra/db/MutationVerbHandler.java
*
src/java/org/apache/cassandra/cql3/statements/SingleTableUpdatesCollector.java
*
test/distributed/org/apache/cassandra/distributed/test/OversizedMutationTest.java
* src/java/org/apache/cassandra/cql3/statements/BatchUpdatesCollector.java
* src/java/org/apache/cassandra/db/MutationExceededMaxSizeException.java
Build Result: UNSTABLE
Passing Tests: 48664
Failing Tests: 11
||Test|Failures|JIRA|
|org.apache.cassandra.net.ProxyHandlerConnectionsTest.testExpireSome-cdc|1 of
7|CASSANDRA-17301?|
|dtest-upgrade.upgrade_tests.upgrade_through_versions_test.TestProtoV4Upgrade_AllVersions_RandomPartitioner_EndsAt_Trunk_HEAD.test_parallel_upgrade_with_internode_ssl|2
of 7|CASSANDRA-17299?|
|org.apache.cassandra.distributed.test.CASTest.testConflictingWritesWithStaleRingInformation|2
of 7|CASSANDRA-17461?|
|org.apache.cassandra.cql3.KeywordTest.test[keyword KEYS isReserved false]|1 of
7|CASSANDRA-17615?|
|org.apache.cassandra.distributed.test.CASTest.testSucccessfulWriteDuringRangeMovementFollowedByRead|3
of 7|CASSANDRA-17461?|
|org.apache.cassandra.db.SinglePartitionSliceCommandTest.testPartitionDeletionRangeDeletionTie|3
of 7|CASSANDRA-17463?|
|org.apache.cassandra.distributed.test.CASTest.testSuccessfulWriteBeforeRangeMovement|1
of 7|CASSANDRA-17461?|
|dtest-upgrade.upgrade_tests.upgrade_through_versions_test.TestProtoV3Upgrade_AllVersions_RandomPartitioner_EndsAt_3_11_X_HEAD.test_rolling_upgrade_with_internode_ssl|1
of 7|[Multiple JIRAs
found|https://issues.apache.org/jira/issues/?jql=project%20%3D%20CASSANDRA%20and%20resolution%20%3D%20unresolved%20and%20summary%20~%20%22*TestProtoV3Upgrade*%22]|
|org.apache.cassandra.db.SinglePartitionSliceCommandTest.testPartitionDeletionRowDeletionTie|1
of 7|CASSANDRA-17463?|
|org.apache.cassandra.db.SinglePartitionSliceCommandTest.testPartitionDeletionRowDeletionTie-cdc|1
of 7|CASSANDRA-17463?|
> Test Failures:
> write_failures_test.TestMultiDCWriteFailures.test_oversized_mutation
> -----------------------------------------------------------------------------------
>
> Key: CASSANDRA-17456
> URL: https://issues.apache.org/jira/browse/CASSANDRA-17456
> Project: Cassandra
> Issue Type: Bug
> Components: CI
> Reporter: Ekaterina Dimitrova
> Assignee: Alex Sorokoumov
> Priority: Normal
> Fix For: 4.1
>
> Time Spent: 1h 10m
> Remaining Estimate: 0h
>
> https://ci-cassandra.apache.org/job/Cassandra-trunk/1002/testReport/dtest-offheap.write_failures_test/TestMultiDCWriteFailures/test_oversized_mutation/
> {code:java}
> Error Message
> AssertionError: assert 0 == 8 + where 8 = <bound method
> JolokiaAgent.read_attribute of <tools.jmxutils.JolokiaAgent object at
> 0x7f1fca78dac0>>('org.apache.cassandra.metrics:type=Storage,name=TotalHints',
> 'Count') + where <bound method JolokiaAgent.read_attribute of
> <tools.jmxutils.JolokiaAgent object at 0x7f1fca78dac0>> =
> <tools.jmxutils.JolokiaAgent object at 0x7f1fca78dac0>.read_attribute +
> and 'org.apache.cassandra.metrics:type=Storage,name=TotalHints' =
> make_mbean('metrics', type='Storage', name='TotalHints')
> Stacktrace
> self = <write_failures_test.TestMultiDCWriteFailures object at 0x7f1fca9dac40>
> def test_oversized_mutation(self):
> """
> Test that multi-DC write failures return operation failed rather
> than a timeout.
> @jira_ticket CASSANDRA-16334.
> """
>
> cluster = self.cluster
> cluster.populate([2, 2])
> cluster.set_configuration_options(values={'max_mutation_size_in_kb':
> 128})
> cluster.start()
>
> node1 = cluster.nodelist()[0]
> session = self.patient_exclusive_cql_connection(node1)
>
> session.execute("CREATE KEYSPACE k WITH replication = {'class':
> 'NetworkTopologyStrategy', 'dc1': 2, 'dc2': 2}")
> session.execute("CREATE TABLE k.t (key int PRIMARY KEY, val blob)")
>
> payload = '1' * 1024 * 256
> query = "INSERT INTO k.t (key, val) VALUES (1,
> textAsBlob('{}'))".format(payload)
>
> assert_write_failure(session, query, ConsistencyLevel.LOCAL_ONE)
> assert_write_failure(session, query, ConsistencyLevel.ONE)
>
> # verify that no hints are created
> with JolokiaAgent(node1) as jmx:
> > assert 0 == jmx.read_attribute(make_mbean('metrics',
> > type='Storage', name='TotalHints'), 'Count')
> E AssertionError: assert 0 == 8
> E + where 8 = <bound method JolokiaAgent.read_attribute of
> <tools.jmxutils.JolokiaAgent object at
> 0x7f1fca78dac0>>('org.apache.cassandra.metrics:type=Storage,name=TotalHints',
> 'Count')
> E + where <bound method JolokiaAgent.read_attribute of
> <tools.jmxutils.JolokiaAgent object at 0x7f1fca78dac0>> =
> <tools.jmxutils.JolokiaAgent object at 0x7f1fca78dac0>.read_attribute
> E + and
> 'org.apache.cassandra.metrics:type=Storage,name=TotalHints' =
> make_mbean('metrics', type='Storage', name='TotalHints')
> write_failures_test.py:277: AssertionError
> REST API
> CloudBees CI Client Controller 2.319.3.4-rolling
> {code}
--
This message was sent by Atlassian Jira
(v8.20.7#820007)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]