Cyrill commented on code in PR #5219:
URL: https://github.com/apache/ignite-3/pull/5219#discussion_r1954564024


##########
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/distributed/disaster/AbstractHighAvailablePartitionsRecoveryTest.java:
##########
@@ -506,4 +506,28 @@ private static Row marshalKey(TableViewInternal table, 
Tuple key) {
     private static boolean isPrimaryReplicaHasChangedException(IgniteException 
cause) {
         return ExceptionUtils.extractCodeFrom(cause) == 
Replicator.REPLICA_MISS_ERR;
     }
+
+    void setDistributionResetTimeout(IgniteImpl node, long timeout) {
+        CompletableFuture<Void> changeFuture = node
+                .clusterConfiguration()
+                .getConfiguration(SystemDistributedExtensionConfiguration.KEY)
+                .system().change(c0 -> c0.changeProperties()
+                        .createOrUpdate(PARTITION_DISTRIBUTION_RESET_TIMEOUT,
+                                c1 -> 
c1.changePropertyValue(String.valueOf(timeout)))
+                );
+
+        assertThat(changeFuture, willCompleteSuccessfully());
+    }
+
+    void triggerManualReset(IgniteImpl node) {
+        CompletableFuture<?> updateFuture = 
node.disasterRecoveryManager().resetAllPartitions(
+                HA_ZONE_NAME,
+                SCHEMA_NAME,
+                HA_TABLE_NAME,
+                true,
+                0

Review Comment:
   done



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to