Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1227#discussion_r131137046
--- Diff:
integration/spark-common/src/main/scala/org/apache/carbondata/spark/util/CommonUtil.scala
---
@@ -713,16 +714,20 @@ object CommonUtil {
SegmentStatusManager.readLoadMetadata(
carbonTablePath.getMetadataDirectoryPath)
var loadInprogressExist = false
+ val staleFolders: Seq[CarbonFile] = Seq()
listOfLoadFolderDetailsArray.foreach { load =>
if
(load.getLoadStatus.equals(LoadStatusType.IN_PROGRESS.getMessage) ||
load.getLoadStatus.equals(LoadStatusType.INSERT_OVERWRITE.getMessage)) {
load.setLoadStatus(CarbonCommonConstants.MARKED_FOR_DELETE)
+ staleFolders :+ FileFactory.getCarbonFile(
+
carbonTablePath.getCarbonDataDirectoryPath("0", load.getLoadName))
--- End diff --
why not delete the stale folder right now?
---
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.
---