Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1708#discussion_r158479625
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -573,23 +573,44 @@
/**
* NUMBER_OF_TRIES_FOR_LOAD_METADATA_LOCK
*/
- public static final int NUMBER_OF_TRIES_FOR_LOAD_METADATA_LOCK_DEFAULT =
3;
+ public static final int NUMBER_OF_TRIES_FOR_CONCURRENT_LOCK_DEFAULT = 3;
/**
* MAX_TIMEOUT_FOR_LOAD_METADATA_LOCK
*/
- public static final int MAX_TIMEOUT_FOR_LOAD_METADATA_LOCK_DEFAULT = 5;
+ public static final int MAX_TIMEOUT_FOR_CONCURRENT_LOCK_DEFAULT = 5;
--- End diff --
rename to CONCURRENT_LOAD_LOCK
---