ivanzlenko commented on code in PR #7500:
URL: https://github.com/apache/ignite-3/pull/7500#discussion_r2754449643
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/raft/TablePartitionProcessor.java:
##########
@@ -104,15 +113,23 @@ public class TablePartitionProcessor implements
RaftTableProcessor {
*/
private final ZonePartitionId realReplicationGroupId;
+ private final SchemaCompatibilityValidator schemaCompatibilityValidator;
+
private ReplicaMeta lastKnownLease;
+ private final StorageUpdater<UpdateCommand> singleUpdateStorageUpdater =
new SingleUpdateStorageUpdater();
+
+ private final StorageUpdater<UpdateAllCommand> batchUpdateStorageUpdater =
new BatchUpdateStorageUpdater();
Review Comment:
I have the same concerns about StorageUpdater - we are needlesly
overcomplecating logic in this place.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]