Github user KanakaKumar commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2623#discussion_r211922952
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/CarbonProperties.java ---
@@ -407,7 +407,7 @@ private void validateLockType() {
* @param lockTypeConfigured
*/
private void validateAndConfigureLockType(String lockTypeConfigured) {
- Configuration configuration = new Configuration(true);
+ Configuration configuration = FileFactory.getConfiguration();
--- End diff --
Remove new Configuration from other places as well (CarbonUtil,
DataMapLoaderRDD...etc)
---