gesterzhou commented on a change in pull request #4987: URL: https://github.com/apache/geode/pull/4987#discussion_r419023089
########## File path: geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionClear.java ########## @@ -30,18 +31,22 @@ import org.apache.geode.internal.cache.versions.RegionVersionVector; import org.apache.geode.logging.internal.log4j.api.LogService; -public class ClearPartitionedRegion { +public class PartitionedRegionClear { private static final Logger logger = LogService.getLogger(); + private static final String CLEAR_OPERATION = "_clearOperation"; + + private final int retryTime = 2 * 60 * 1000 /* partitionedRegion.getRetryTimeout() */; Review comment: Our current clear timeout is actually determined by rvv domination timeout, i.e. 5 seconds. If a clear took more than 5 seconds, that means a rvv domination timeout happened. Something must have been wrong. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org