Github user sraghunandan commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1177#discussion_r129195193
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/CarbonProperties.java ---
@@ -892,6 +892,23 @@ public int
getNoDeleteDeltaFilesThresholdForIUDCompaction() {
}
/**
+ * Returns whether to use multi temp dirs
+ * @return boolean
+ */
+ public boolean isUseMultiTempDir() {
+ String usingMultiDirStr =
getProperty(CarbonCommonConstants.CARBON_USING_MULTI_TEMP_DIR,
+ CarbonCommonConstants.CARBON_USING_MULTI_TEMP_DIR_DEFAULT);
+ boolean validateBoolean = CarbonUtil.validateBoolean(usingMultiDirStr);
+ if (!validateBoolean) {
+ LOGGER.info("The using multi temp dir value \"" + usingMultiDirStr
--- End diff --
carbon.use.multiple.temp.dir configuration value is invalid.Configured
value:usingMultiDirStr. Data Load will not use multiple temp directories
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---