Github user kkhatua commented on a diff in the pull request:
https://github.com/apache/drill/pull/755#discussion_r171944817
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/store/LocalPersistentStore.java
---
@@ -61,16 +63,29 @@
private final AutoCloseableLock readLock = new
AutoCloseableLock(readWriteLock.readLock());
private final AutoCloseableLock writeLock = new
AutoCloseableLock(readWriteLock.writeLock());
+ //Provides a threshold above which we report the time to load
+ private static final long LISTTIME_THRESHOLD_MSEC = 2000L;
--- End diff --
OK. Will fix this.
---