Github user kadirozde commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/399#discussion_r229546497
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/TaskRegionObserver.java
---
@@ -70,7 +70,11 @@
private long timeMaxInterval =
QueryServicesOptions.DEFAULT_TASK_HANDLING_MAX_INTERVAL_MS;
@GuardedBy("TaskRegionObserver.class")
// initial delay before the first task is handled
- private static final long initialDelay = 10000; // 10 secs
+ private static long initialDelay = 10000; // 10 secs
+
+ public static void disableTaskHandling() {
--- End diff --
OK. I have implemented the config option.
---