This is an automated email from the ASF dual-hosted git repository. maedhroz pushed a change to branch cep-45-mutation-tracking in repository https://gitbox.apache.org/repos/asf/cassandra.git
from c342b8dd07 Fix failing repair tests new 4bc014434a Enable single-partition AST fuzz tests w/ mutation tracking new 8b7753f7ec Single-partition read fixes: - filter augmenting mutations and add comment explaining why we don't exclude reconciled mutations when augmenting - propagate exceptions during acknowledgeReconcile - fix UnreconciledMutations handling of single key bounds - fix single offset remove bug new 4bbb14c179 Fix loss of isRepaired StatsMetadata on compaction race The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../cassandra/io/sstable/format/SSTableWriter.java | 20 +- .../cassandra/replication/Log2OffsetsMap.java | 29 ++ .../org/apache/cassandra/replication/Offsets.java | 6 +- .../replication/UnreconciledMutations.java | 15 +- .../service/reads/tracked/PartialTrackedRead.java | 9 + .../tracked/PartialTrackedSinglePartitionRead.java | 8 +- .../service/reads/tracked/ReadReconciliations.java | 14 + .../service/reads/tracked/TrackedLocalReads.java | 22 +- .../test/cql3/MultiNodeTableWalkBase.java | 14 +- ...MultiNodeTableWalkWithMutationTrackingTest.java | 106 +++++ .../distributed/test/cql3/StatefulASTBase.java | 12 +- .../tracking/MutationTrackingRangeReadTest.java | 316 +++++++++++++++ .../apache/cassandra/replication/OffsetsTest.java | 22 ++ .../replication/UnreconciledMutationsTest.java | 429 +++++++++++++++++++++ 14 files changed, 998 insertions(+), 24 deletions(-) create mode 100644 test/distributed/org/apache/cassandra/distributed/test/cql3/MultiNodeTableWalkWithMutationTrackingTest.java create mode 100644 test/distributed/org/apache/cassandra/distributed/test/tracking/MutationTrackingRangeReadTest.java create mode 100644 test/unit/org/apache/cassandra/replication/UnreconciledMutationsTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org