vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516798767 ########## File path: integration/spark/src/main/scala/org/apache/carbondata/cleanfiles/CleanFilesUtil.scala ########## @@ -0,0 +1,416 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.cleanfiles + +import java.sql.Timestamp +import java.util +import java.util.concurrent.TimeUnit + +import scala.collection.JavaConverters._ +import scala.collection.mutable.ListBuffer + +import org.apache.spark.sql.{AnalysisException, CarbonEnv, Row, SparkSession} +import org.apache.spark.sql.index.CarbonIndexUtil + +import org.apache.carbondata.common.logging.LogServiceFactory +import org.apache.carbondata.core.constants.CarbonCommonConstants +import org.apache.carbondata.core.datastore.filesystem.CarbonFile +import org.apache.carbondata.core.datastore.impl.FileFactory +import org.apache.carbondata.core.exception.ConcurrentOperationException +import org.apache.carbondata.core.indexstore.PartitionSpec +import org.apache.carbondata.core.locks.{CarbonLockFactory, CarbonLockUtil, ICarbonLock, LockUsage} +import org.apache.carbondata.core.metadata.{AbsoluteTableIdentifier, CarbonMetadata, SegmentFileStore} +import org.apache.carbondata.core.metadata.schema.table.CarbonTable +import org.apache.carbondata.core.mutate.CarbonUpdateUtil +import org.apache.carbondata.core.statusmanager.{LoadMetadataDetails, SegmentStatus, SegmentStatusManager} +import org.apache.carbondata.core.util.{CarbonProperties, CarbonUtil} +import org.apache.carbondata.core.util.path.{CarbonTablePath, TrashUtil} +import org.apache.carbondata.processing.loading.TableProcessingOperations + +object CleanFilesUtil { + private val LOGGER = LogServiceFactory.getLogService(this.getClass.getCanonicalName) + + /** + * The method deletes all data if forceTableClean <true> and clean garbage segment + * (MARKED_FOR_DELETE state) if forceTableClean <false> + * + * @param dbName : Database name + * @param tableName : Table name + * @param tablePath : Table path + * @param carbonTable : CarbonTable Object <null> in case of force clean + * @param forceTableClean : <true> for force clean it will delete all data + * <false> it will clean garbage segment (MARKED_FOR_DELETE state) + * @param currentTablePartitions : Hive Partitions details + */ + def cleanFiles( + dbName: String, + tableName: String, + tablePath: String, + carbonTable: CarbonTable, + forceTableClean: Boolean, + currentTablePartitions: Option[Seq[PartitionSpec]] = None, + truncateTable: Boolean = false): Unit = { + var carbonCleanFilesLock: ICarbonLock = null + val absoluteTableIdentifier = if (forceTableClean) { + AbsoluteTableIdentifier.from(tablePath, dbName, tableName, tableName) + } else { + carbonTable.getAbsoluteTableIdentifier + } + try { + val errorMsg = "Clean files request is failed for " + + s"$dbName.$tableName" + + ". Not able to acquire the clean files lock due to another clean files " + + "operation is running in the background." + // in case of force clean the lock is not required + if (forceTableClean) { + FileFactory.deleteAllCarbonFilesOfDir( + FileFactory.getCarbonFile(absoluteTableIdentifier.getTablePath)) + } else { + carbonCleanFilesLock = + CarbonLockUtil + .getLockObject(absoluteTableIdentifier, LockUsage.CLEAN_FILES_LOCK, errorMsg) + if (truncateTable) { + SegmentStatusManager.truncateTable(carbonTable) + } + SegmentStatusManager.deleteLoadsAndUpdateMetadata( + carbonTable, true, currentTablePartitions.map(_.asJava).orNull) + CarbonUpdateUtil.cleanUpDeltaFiles(carbonTable, true) + currentTablePartitions match { + case Some(partitions) => + SegmentFileStore.cleanSegments( + carbonTable, + currentTablePartitions.map(_.asJava).orNull, + true) + case _ => + } + } + } finally { + if (currentTablePartitions.equals(None)) { + cleanUpPartitionFoldersRecursively(carbonTable, List.empty[PartitionSpec]) + } else { + cleanUpPartitionFoldersRecursively(carbonTable, currentTablePartitions.get.toList) + } + + if (carbonCleanFilesLock != null) { + CarbonLockUtil.fileUnlock(carbonCleanFilesLock, LockUsage.CLEAN_FILES_LOCK) + } + } + } + + + /** + * delete partition folders recursively + * + * @param carbonTable + * @param partitionSpecList + */ + def cleanUpPartitionFoldersRecursively(carbonTable: CarbonTable, + partitionSpecList: List[PartitionSpec]): Unit = { + if (carbonTable != null && carbonTable.isHivePartitionTable) { + val loadMetadataDetails = SegmentStatusManager + .readLoadMetadata(carbonTable.getMetadataPath) + + val carbonFile = FileFactory.getCarbonFile(carbonTable.getTablePath) + + // list all files from table path + val listOfDefaultPartFilesIterator = carbonFile.listFiles(true) + loadMetadataDetails.foreach { metadataDetail => + if (metadataDetail.getSegmentStatus.equals(SegmentStatus.MARKED_FOR_DELETE) && + metadataDetail.getSegmentFile == null) { + val loadStartTime: Long = metadataDetail.getLoadStartTime + // delete all files of @loadStartTime from table path + cleanCarbonFilesInFolder(listOfDefaultPartFilesIterator, loadStartTime) + partitionSpecList.foreach { + partitionSpec => + val partitionLocation = partitionSpec.getLocation + // For partition folder outside the tablePath + if (!partitionLocation.toString.startsWith(carbonTable.getTablePath)) { + val partitionCarbonFile = FileFactory + .getCarbonFile(partitionLocation.toString) + // list all files from partitionLocation + val listOfExternalPartFilesIterator = partitionCarbonFile.listFiles(true) + // delete all files of @loadStartTime from externalPath + cleanCarbonFilesInFolder(listOfExternalPartFilesIterator, loadStartTime) + } + } + } + } + } + } + + /** + * Compare CarbonFile Timestamp and delete files. + * + * @param carbonFiles + * @param timestamp + */ + private def cleanCarbonFilesInFolder(carbonFiles: java.util.List[CarbonFile], + timestamp: Long): Unit = { + carbonFiles.asScala.foreach { carbonFile => + val filePath = carbonFile.getPath + val fileName = carbonFile.getName + if (CarbonTablePath.DataFileUtil.compareCarbonFileTimeStamp(fileName, timestamp)) { + FileFactory.deleteFile(filePath) + } + } + } + + /** + * The in-progress segments which are in stale state will be marked as deleted + * when driver is initializing. + * + * @param databaseLocation + * @param dbName + */ + def cleanInProgressSegments(databaseLocation: String, dbName: String): Unit = { + val loaderDriver = CarbonProperties.getInstance(). + getProperty(CarbonCommonConstants.DATA_MANAGEMENT_DRIVER, + CarbonCommonConstants.DATA_MANAGEMENT_DRIVER_DEFAULT).toBoolean + if (!loaderDriver) { + return + } + try { + if (FileFactory.isFileExist(databaseLocation)) { + val file = FileFactory.getCarbonFile(databaseLocation) + if (file.isDirectory) { + val tableFolders = file.listFiles() + tableFolders.foreach { tableFolder => + if (tableFolder.isDirectory) { + val tablePath = databaseLocation + CarbonCommonConstants.FILE_SEPARATOR + + tableFolder.getName + val tableUniqueName = CarbonTable.buildUniqueName(dbName, tableFolder.getName) + val tableStatusFile = + CarbonTablePath.getTableStatusFilePath(tablePath) + if (FileFactory.isFileExist(tableStatusFile)) { + try { + val carbonTable = CarbonMetadata.getInstance.getCarbonTable(tableUniqueName) + SegmentStatusManager.deleteLoadsAndUpdateMetadata(carbonTable, true, null) + } catch { + case _: Exception => + LOGGER.warn(s"Error while cleaning table " + s"$tableUniqueName") + } + } + } + } + } + } + } catch { + case s: java.io.FileNotFoundException => + LOGGER.error(s) + } + } + + /** + * The below method deletes all the files and folders in the trash folders of all carbon tables + * in all databases + */ + def deleteDataFromTrashFolderInAllTables(sparkSession: SparkSession): Unit = { + try { + val databases = sparkSession.sessionState.catalog.listDatabases() + databases.foreach(dbName => { + val databaseLocation = CarbonEnv.getDatabaseLocation(dbName, sparkSession) + if (FileFactory.isFileExist(databaseLocation)) { + val file = FileFactory.getCarbonFile(databaseLocation) + if (file.isDirectory) { + val tableFolders = file.listFiles() + tableFolders.foreach { tableFolder => + if (tableFolder.isDirectory) { + val tablePath = databaseLocation + + CarbonCommonConstants.FILE_SEPARATOR + tableFolder.getName + TrashUtil.deleteAllDataFromTrashFolder(tablePath) + } + } + } + } + }) + } catch { + case e: Throwable => + // catch all exceptions to avoid failure + LOGGER.error("Failed to clear trash folder of all tables", e) + } + } + /** + * The below method deletes all the files and folders in trash folder in a carbontable and all + * it's index tables + */ + def deleteDataFromTrashFolder(carbonTable: CarbonTable, sparkSession: SparkSession): Unit = { + TrashUtil.deleteAllDataFromTrashFolder(carbonTable.getTablePath) + // check for index tables + val indexTables = CarbonIndexUtil + .getIndexCarbonTables(carbonTable, sparkSession) + indexTables.foreach { indexTable => + TrashUtil.deleteAllDataFromTrashFolder(indexTable.getTablePath) + } + } + + /** + * The below method deletes the timestamp sub directory in the trash folder based on the + * expiration day + */ + def deleteDataFromTrashFolderByTimeStamp(carbonTable: CarbonTable, sparkSession: + SparkSession): Unit = { + val expirationDay = CarbonProperties.getInstance().getTrashFolderExpirationTime + TrashUtil.deleteAllDataFromTrashFolderByTimeStamp(carbonTable.getTablePath, expirationDay) + // check for index tables + val indexTables = CarbonIndexUtil + .getIndexCarbonTables(carbonTable, sparkSession) + indexTables.foreach { indexTable => + TrashUtil.deleteAllDataFromTrashFolderByTimeStamp(indexTable.getTablePath, expirationDay) + } + } + + /** + * Actual dry run operation. It will also do dry run for stale segments + */ + def cleanFilesDryRunOp(carbonTable: CarbonTable, sparkSession: SparkSession): Seq[Row] = { + // dry run for clean files command + // Clean files will remove compacted, Marked_for_delete, Insert in progress(stale) segments. + val tableStatusLock = CarbonLockFactory + .getCarbonLockObj(carbonTable.getAbsoluteTableIdentifier, LockUsage.TABLE_STATUS_LOCK) + var loadMetadataDetails = List[LoadMetadataDetails]() + try { + if (tableStatusLock.lockWithRetries()) { + val tableStatusFilePath = CarbonTablePath + .getTableStatusFilePath(carbonTable.getTablePath) + loadMetadataDetails = SegmentStatusManager.readTableStatusFile(tableStatusFilePath).toList + } else { + throw new ConcurrentOperationException(carbonTable.getDatabaseName, + carbonTable.getTableName, "table status read", "clean files command dry run") + } + } finally { + tableStatusLock.unlock() + } + + // no need to show the first and the last segments here if they are already deleted but their + // entry is in the tablestatus + val finalsSegments = new ListBuffer[Row] + loadMetadataDetails.map(loadDetails => + if ((loadDetails.getSegmentStatus == SegmentStatus.MARKED_FOR_DELETE || loadDetails + .getSegmentStatus == SegmentStatus.COMPACTED)) { + if (loadDetails.getVisibility == null || (loadDetails.getVisibility != null && loadDetails + .getVisibility.toBoolean)) { + finalsSegments += Row(carbonTable.getTableName, loadDetails.getLoadName, + loadDetails.getSegmentStatus.toString, "FACT", "DELETE", "NULL") + } + } else if (loadDetails.getSegmentStatus == SegmentStatus.INSERT_IN_PROGRESS && (loadDetails + .getVisibility == null || (loadDetails.getVisibility != null && loadDetails.getVisibility + .toBoolean))) { + // try getting segment lock, if the lock is available, then it is a stale segment + // and can be moved to trash + if (CarbonUtil.tryGettingSegmentLock(loadDetails, carbonTable.getAbsoluteTableIdentifier)) { + finalsSegments += Row(carbonTable.getTableName, loadDetails.getLoadName, + loadDetails.getSegmentStatus.toString, "FACT", "DELETE", "NULL") + } + }) + finalsSegments ++= dryRunStaleSegments(carbonTable, sparkSession) + finalsSegments + } + + /** + * Dry run operation for carbonTable and all it's index tables + */ + def cleanFilesDryRun(carbonTable: CarbonTable, sparkSession: SparkSession): Seq[Row] = { + var res = cleanFilesDryRunOp(carbonTable, sparkSession) + res ++= trashFolderDryRun(carbonTable) + // check for index tables + val indexTables = CarbonIndexUtil + .getIndexCarbonTables(carbonTable, sparkSession) + indexTables.foreach { indexTable => + res ++= cleanFilesDryRunOp(indexTable, sparkSession) + res ++= trashFolderDryRun(indexTable) + } + res + } + + + /** + * Dry run operation for stale segments + */ + def dryRunStaleSegments(carbonTable: CarbonTable, sparkSession: SparkSession): Seq[Row] = { + // stale segments are those segments whose entry is not present in the table status file, but + // those segments are in Fact folder and metadata folder + + val metaDataLocation = carbonTable.getMetadataPath + val details = SegmentStatusManager.readLoadMetadata(metaDataLocation) + val finalSegments = new java.util.ArrayList[Row]() + + val partitionPath = CarbonTablePath.getPartitionDir(carbonTable.getTablePath) + if (FileFactory.isFileExist(partitionPath)) { + val allSegments = FileFactory.getCarbonFile(partitionPath).listFiles + // there is no segment + if (allSegments == null || allSegments.isEmpty) Seq.empty + // there is no segment or failed to read tablestatus file. + if (details == null || details.isEmpty) Seq.empty + val staleSegments = TableProcessingOperations.getStaleSegments(details, allSegments, false) + staleSegments.asScala.foreach( + staleSegmentName => finalSegments.add(Row(carbonTable.getTableName, staleSegmentName._2, + "UNKNOWN", "FACT", "MOVE TO TRASH")) + ) + } else { + // for partition table flow + val partitionFolderList : java.util.ArrayList[String] = new util.ArrayList() + val allFolders = FileFactory.getCarbonFile(carbonTable.getTablePath).listFiles() + allFolders.toSeq.foreach( name => + if (name.getName.contains(CarbonCommonConstants.EQUALS) ) { + partitionFolderList.add(name.getAbsolutePath) + }) + val tableLoadDetails = details.map(detail => detail.getLoadName) + partitionFolderList.asScala.foreach(name => + FileFactory.getCarbonFile(name).listFiles().foreach(fileName => + if (fileName.getName.endsWith(CarbonTablePath.MERGE_INDEX_FILE_EXT) && !tableLoadDetails + .contains(fileName.getName.substring(0, fileName.getName.indexOf(CarbonCommonConstants + .UNDERSCORE)))) { + val filePath = fileName.getAbsolutePath.split(CarbonCommonConstants.FILE_SEPARATOR) + finalSegments.add(Row(carbonTable.getTableName, fileName.getName.substring(0, fileName + .getName.indexOf("_")), "UNKNOWN", filePath(filePath.length - 2), "MOVE TO TRASH")) + } + ) + ) + } + finalSegments.asScala + } + + /** + * Dry run operation for trash folder + */ + def trashFolderDryRun(carbonTable: CarbonTable): Seq[Row] = { Review comment: yes, it will return all the segments in trash folder and show how much time is left for each for expiration. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516799647 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala ########## @@ -48,13 +54,38 @@ import org.apache.carbondata.view.MVManagerInSpark case class CarbonCleanFilesCommand( databaseNameOp: Option[String], tableName: Option[String], + options: Option[List[(String, String)]], forceTableClean: Boolean = false, isInternalCleanCall: Boolean = false, truncateTable: Boolean = false) extends AtomicRunnableCommand { var carbonTable: CarbonTable = _ var cleanFileCommands: List[CarbonCleanFilesCommand] = List.empty + val optionsMap = options.getOrElse(List.empty[(String, String)]).toMap + var isDryRun: Boolean = false + val dryRun = "isDryRun" + if (optionsMap.contains(dryRun.toLowerCase) ) { + isDryRun = Boolean.parseBoolean(optionsMap(dryRun.toLowerCase).toString) + } Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516800475 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala ########## @@ -80,40 +112,96 @@ case class CarbonCleanFilesCommand( } override def processData(sparkSession: SparkSession): Seq[Row] = { - // if insert overwrite in progress, do not allow delete segment - if (SegmentStatusManager.isOverwriteInProgressInTable(carbonTable)) { - throw new ConcurrentOperationException(carbonTable, "insert overwrite", "clean file") - } - val operationContext = new OperationContext - val cleanFilesPreEvent: CleanFilesPreEvent = - CleanFilesPreEvent(carbonTable, - sparkSession) - OperationListenerBus.getInstance.fireEvent(cleanFilesPreEvent, operationContext) - if (tableName.isDefined) { - Checker.validateTableExists(databaseNameOp, tableName.get, sparkSession) - if (forceTableClean) { - deleteAllData(sparkSession, databaseNameOp, tableName.get) + if (!isDryRun) { + // if insert overwrite in progress, do not allow delete segment + if (SegmentStatusManager.isOverwriteInProgressInTable(carbonTable)) { + throw new ConcurrentOperationException(carbonTable, "insert overwrite", "clean file") + } + val operationContext = new OperationContext + val cleanFilesPreEvent: CleanFilesPreEvent = CleanFilesPreEvent(carbonTable, sparkSession) + OperationListenerBus.getInstance.fireEvent(cleanFilesPreEvent, operationContext) + if (tableName.isDefined) { + Checker.validateTableExists(databaseNameOp, tableName.get, sparkSession) + if (forceTrashClean) { + CleanFilesUtil.deleteDataFromTrashFolder(carbonTable, sparkSession) + } else { + // clear trash based on timestamp + CleanFilesUtil.deleteDataFromTrashFolderByTimeStamp(carbonTable, sparkSession) + } + if (forceTableClean) { + deleteAllData(sparkSession, databaseNameOp, tableName.get) + } else { + cleanGarbageData(sparkSession, databaseNameOp, tableName.get) + } + // delete partial load and send them to trash + TableProcessingOperations + .deletePartialLoadDataIfExist(carbonTable, false) + // clean stash in metadata folder too + deleteStashInMetadataFolder(carbonTable) } else { - cleanGarbageData(sparkSession, databaseNameOp, tableName.get) + cleanGarbageDataInAllTables(sparkSession) + } + if (cleanFileCommands != null) { + cleanFileCommands.foreach(_.processData(sparkSession)) } + val cleanFilesPostEvent: CleanFilesPostEvent = + CleanFilesPostEvent(carbonTable, sparkSession) + OperationListenerBus.getInstance.fireEvent(cleanFilesPostEvent, operationContext) + Seq.empty + } else if (isDryRun && tableName.isDefined) { + // dry run, do not clean anything and do not delete trash too + CleanFilesUtil.cleanFilesDryRun(carbonTable, sparkSession) } else { - cleanGarbageDataInAllTables(sparkSession) + Seq.empty } - if (cleanFileCommands != null) { - cleanFileCommands.foreach(_.processData(sparkSession)) + } + + // This method deletes the stale segment files in the segment folder. + def deleteStashInMetadataFolder(carbonTable: CarbonTable): Unit = { Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516802032 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala ########## @@ -80,40 +112,96 @@ case class CarbonCleanFilesCommand( } override def processData(sparkSession: SparkSession): Seq[Row] = { - // if insert overwrite in progress, do not allow delete segment - if (SegmentStatusManager.isOverwriteInProgressInTable(carbonTable)) { - throw new ConcurrentOperationException(carbonTable, "insert overwrite", "clean file") - } - val operationContext = new OperationContext - val cleanFilesPreEvent: CleanFilesPreEvent = - CleanFilesPreEvent(carbonTable, - sparkSession) - OperationListenerBus.getInstance.fireEvent(cleanFilesPreEvent, operationContext) - if (tableName.isDefined) { - Checker.validateTableExists(databaseNameOp, tableName.get, sparkSession) - if (forceTableClean) { - deleteAllData(sparkSession, databaseNameOp, tableName.get) + if (!isDryRun) { + // if insert overwrite in progress, do not allow delete segment + if (SegmentStatusManager.isOverwriteInProgressInTable(carbonTable)) { + throw new ConcurrentOperationException(carbonTable, "insert overwrite", "clean file") + } + val operationContext = new OperationContext + val cleanFilesPreEvent: CleanFilesPreEvent = CleanFilesPreEvent(carbonTable, sparkSession) + OperationListenerBus.getInstance.fireEvent(cleanFilesPreEvent, operationContext) + if (tableName.isDefined) { + Checker.validateTableExists(databaseNameOp, tableName.get, sparkSession) + if (forceTrashClean) { + CleanFilesUtil.deleteDataFromTrashFolder(carbonTable, sparkSession) + } else { + // clear trash based on timestamp + CleanFilesUtil.deleteDataFromTrashFolderByTimeStamp(carbonTable, sparkSession) + } + if (forceTableClean) { + deleteAllData(sparkSession, databaseNameOp, tableName.get) + } else { + cleanGarbageData(sparkSession, databaseNameOp, tableName.get) + } + // delete partial load and send them to trash + TableProcessingOperations + .deletePartialLoadDataIfExist(carbonTable, false) + // clean stash in metadata folder too + deleteStashInMetadataFolder(carbonTable) } else { - cleanGarbageData(sparkSession, databaseNameOp, tableName.get) + cleanGarbageDataInAllTables(sparkSession) + } + if (cleanFileCommands != null) { + cleanFileCommands.foreach(_.processData(sparkSession)) } + val cleanFilesPostEvent: CleanFilesPostEvent = + CleanFilesPostEvent(carbonTable, sparkSession) + OperationListenerBus.getInstance.fireEvent(cleanFilesPostEvent, operationContext) + Seq.empty + } else if (isDryRun && tableName.isDefined) { + // dry run, do not clean anything and do not delete trash too + CleanFilesUtil.cleanFilesDryRun(carbonTable, sparkSession) } else { - cleanGarbageDataInAllTables(sparkSession) + Seq.empty } - if (cleanFileCommands != null) { - cleanFileCommands.foreach(_.processData(sparkSession)) + } + + // This method deletes the stale segment files in the segment folder. + def deleteStashInMetadataFolder(carbonTable: CarbonTable): Unit = { + val tableStatusLock = CarbonLockFactory + .getCarbonLockObj(carbonTable.getAbsoluteTableIdentifier, LockUsage.TABLE_STATUS_LOCK) + val carbonLoadModel = new CarbonLoadModel + try { + if (tableStatusLock.lockWithRetries()) { + val tableStatusFilePath = CarbonTablePath + .getTableStatusFilePath(carbonTable.getTablePath) + val loadMetaDataDetails = SegmentStatusManager + .readTableStatusFile(tableStatusFilePath).filter(details => details.getSegmentStatus == Review comment: just reading it once ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516802253 ########## File path: processing/src/main/java/org/apache/carbondata/processing/loading/TableProcessingOperations.java ########## @@ -149,9 +132,167 @@ public static void deletePartialLoadDataIfExist(CarbonTable carbonTable, } finally { carbonTableStatusLock.unlock(); } + } else { + int retryCount = CarbonLockUtil + .getLockProperty(CarbonCommonConstants.NUMBER_OF_TRIES_FOR_CONCURRENT_LOCK, + CarbonCommonConstants.NUMBER_OF_TRIES_FOR_CONCURRENT_LOCK_DEFAULT); + int maxTimeout = CarbonLockUtil + .getLockProperty(CarbonCommonConstants.MAX_TIMEOUT_FOR_CONCURRENT_LOCK, + CarbonCommonConstants.MAX_TIMEOUT_FOR_CONCURRENT_LOCK_DEFAULT); + ICarbonLock carbonTableStatusLock = CarbonLockFactory + .getCarbonLockObj(carbonTable.getAbsoluteTableIdentifier(), LockUsage.TABLE_STATUS_LOCK); + + try { + if (carbonTableStatusLock.lockWithRetries(retryCount, maxTimeout)) { Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516802654 ########## File path: processing/src/main/java/org/apache/carbondata/processing/loading/TableProcessingOperations.java ########## @@ -149,9 +132,167 @@ public static void deletePartialLoadDataIfExist(CarbonTable carbonTable, } finally { carbonTableStatusLock.unlock(); } + } else { + int retryCount = CarbonLockUtil + .getLockProperty(CarbonCommonConstants.NUMBER_OF_TRIES_FOR_CONCURRENT_LOCK, + CarbonCommonConstants.NUMBER_OF_TRIES_FOR_CONCURRENT_LOCK_DEFAULT); + int maxTimeout = CarbonLockUtil + .getLockProperty(CarbonCommonConstants.MAX_TIMEOUT_FOR_CONCURRENT_LOCK, + CarbonCommonConstants.MAX_TIMEOUT_FOR_CONCURRENT_LOCK_DEFAULT); Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516803097 ########## File path: core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java ########## @@ -3441,4 +3443,33 @@ public static void agingTempFolderForIndexServer(long agingTime)throws }); } } + + /** + * The below method tries to get the segment lock for the given segment. + */ + public static boolean tryGettingSegmentLock(LoadMetadataDetails oneLoad, + AbsoluteTableIdentifier absoluteTableIdentifier) { + ICarbonLock segmentLock = CarbonLockFactory.getCarbonLockObj(absoluteTableIdentifier, + CarbonTablePath.addSegmentPrefix(oneLoad.getLoadName()) + LockUsage.LOCK); + boolean canBeDeleted; + try { + if (segmentLock.lockWithRetries(CarbonCommonConstants + .NUMBER_OF_TRIES_FOR_CARBON_LOCK_DEFAULT, CarbonCommonConstants + .MAX_TIMEOUT_FOR_CARBON_LOCK_DEFAULT)) { Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516803267 ########## File path: core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java ########## @@ -3441,4 +3443,33 @@ public static void agingTempFolderForIndexServer(long agingTime)throws }); } } + + /** + * The below method tries to get the segment lock for the given segment. + */ + public static boolean tryGettingSegmentLock(LoadMetadataDetails oneLoad, + AbsoluteTableIdentifier absoluteTableIdentifier) { + ICarbonLock segmentLock = CarbonLockFactory.getCarbonLockObj(absoluteTableIdentifier, + CarbonTablePath.addSegmentPrefix(oneLoad.getLoadName()) + LockUsage.LOCK); + boolean canBeDeleted; Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516806745 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala ########## @@ -80,40 +112,96 @@ case class CarbonCleanFilesCommand( } override def processData(sparkSession: SparkSession): Seq[Row] = { - // if insert overwrite in progress, do not allow delete segment - if (SegmentStatusManager.isOverwriteInProgressInTable(carbonTable)) { - throw new ConcurrentOperationException(carbonTable, "insert overwrite", "clean file") - } - val operationContext = new OperationContext - val cleanFilesPreEvent: CleanFilesPreEvent = - CleanFilesPreEvent(carbonTable, - sparkSession) - OperationListenerBus.getInstance.fireEvent(cleanFilesPreEvent, operationContext) - if (tableName.isDefined) { - Checker.validateTableExists(databaseNameOp, tableName.get, sparkSession) - if (forceTableClean) { - deleteAllData(sparkSession, databaseNameOp, tableName.get) + if (!isDryRun) { Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516807830 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonCleanFilesCommand.scala ########## @@ -48,13 +54,38 @@ import org.apache.carbondata.view.MVManagerInSpark case class CarbonCleanFilesCommand( databaseNameOp: Option[String], tableName: Option[String], + options: Option[List[(String, String)]], forceTableClean: Boolean = false, isInternalCleanCall: Boolean = false, truncateTable: Boolean = false) extends AtomicRunnableCommand { var carbonTable: CarbonTable = _ var cleanFileCommands: List[CarbonCleanFilesCommand] = List.empty + val optionsMap = options.getOrElse(List.empty[(String, String)]).toMap + var isDryRun: Boolean = false + val dryRun = "isDryRun" + if (optionsMap.contains(dryRun.toLowerCase) ) { + isDryRun = Boolean.parseBoolean(optionsMap(dryRun.toLowerCase).toString) + } + var forceTrashClean: Boolean = false + if (optionsMap.contains("force") ) { + forceTrashClean = Boolean.parseBoolean(optionsMap("force").toString) + } Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516828124 ########## File path: core/src/main/java/org/apache/carbondata/core/util/path/TrashUtil.java ########## @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.core.util.path; + +import java.io.File; +import java.io.IOException; +import java.sql.Timestamp; +import java.util.ArrayList; +import java.util.List; + +import org.apache.carbondata.common.logging.LogServiceFactory; +import org.apache.carbondata.core.constants.CarbonCommonConstants; +import org.apache.carbondata.core.datastore.filesystem.CarbonFile; +import org.apache.carbondata.core.datastore.impl.FileFactory; +import org.apache.carbondata.core.exception.CarbonFileException; +import org.apache.carbondata.core.util.CarbonUtil; + +import org.apache.commons.io.FileUtils; + +import org.apache.log4j.Logger; + +/** + * Mantains the trash folder in carbondata. This class has methods to copy data to the trash and + * remove data from the trash. + */ +public final class TrashUtil { + + private static final Logger LOGGER = + LogServiceFactory.getLogService(CarbonUtil.class.getName()); + + /** + * The below method copies the complete a file to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param pathOfFileToCopy the files which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashFolderByFile(String carbonTablePath, String pathOfFileToCopy, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + if (new File(pathOfFileToCopy).exists()) { + FileUtils.copyFileToDirectory(new File(pathOfFileToCopy), new File(trashFolderPath)); + LOGGER.info("File: " + pathOfFileToCopy + " successfully copied to the trash folder: " + + trashFolderPath); + } Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516840202 ########## File path: core/src/main/java/org/apache/carbondata/core/util/path/TrashUtil.java ########## @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.core.util.path; + +import java.io.File; +import java.io.IOException; +import java.sql.Timestamp; +import java.util.ArrayList; +import java.util.List; + +import org.apache.carbondata.common.logging.LogServiceFactory; +import org.apache.carbondata.core.constants.CarbonCommonConstants; +import org.apache.carbondata.core.datastore.filesystem.CarbonFile; +import org.apache.carbondata.core.datastore.impl.FileFactory; +import org.apache.carbondata.core.exception.CarbonFileException; +import org.apache.carbondata.core.util.CarbonUtil; + +import org.apache.commons.io.FileUtils; + +import org.apache.log4j.Logger; + +/** + * Mantains the trash folder in carbondata. This class has methods to copy data to the trash and + * remove data from the trash. + */ +public final class TrashUtil { + + private static final Logger LOGGER = + LogServiceFactory.getLogService(CarbonUtil.class.getName()); + + /** + * The below method copies the complete a file to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param pathOfFileToCopy the files which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashFolderByFile(String carbonTablePath, String pathOfFileToCopy, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + if (new File(pathOfFileToCopy).exists()) { + FileUtils.copyFileToDirectory(new File(pathOfFileToCopy), new File(trashFolderPath)); + LOGGER.info("File: " + pathOfFileToCopy + " successfully copied to the trash folder: " + + trashFolderPath); + } + } catch (IOException e) { + LOGGER.error("Unable to copy " + pathOfFileToCopy + " to the trash folder", e); + } + } + + /** + * The below method copies the complete segment folder to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param path the folder which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashBySegment(CarbonFile path, String carbonTablePath, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + FileUtils.copyDirectory(new File(path.getAbsolutePath()), new File(trashFolderPath)); + LOGGER.info("Segment: " + path.getAbsolutePath() + " has been copied to the trash folder" + + " successfully"); + } catch (IOException e) { + LOGGER.error("Unable to create the trash folder and copy data to it", e); + } + } + + /** + * The below method deletes timestamp subdirectories in the trash folder which have expired as + * per the user defined expiration time + */ + public static void deleteAllDataFromTrashFolderByTimeStamp(String carbonTablePath, Long timeStamp) + throws IOException { + String pathOfTrashFolder = CarbonTablePath.getTrashFolderPath(carbonTablePath); + // Deleting the timestamp based subdirectories in the trashfolder by the given timestamp. + if (FileFactory.isFileExist(pathOfTrashFolder)) { + try { + List<CarbonFile> carbonFileList = FileFactory.getFolderList(pathOfTrashFolder); + for (CarbonFile carbonFile : carbonFileList) { + String[] splitPath = carbonFile.getAbsolutePath().split(CarbonCommonConstants + .FILE_SEPARATOR); + Long currentTime = Long.valueOf(new Timestamp(System.currentTimeMillis()).getTime()); + Long givenTime = Long.valueOf(splitPath[splitPath.length - 1]); + // If the timeStamp at which the timeStamp subdirectory has expired as per the user + // defined value, delete the complete timeStamp subdirectory + if (givenTime + timeStamp < currentTime) { + deleteDataFromTrashFolderByFile(carbonFile); + } else { + LOGGER.info("Timestamp folder not expired: " + carbonFile.getAbsolutePath()); + } + } + } catch (IOException e) { + LOGGER.error("Error during deleting from trash folder", e); + } + } + } + + /** + * The below method deletes all the files and folders in the trash folder of a carbon table. + */ + public static void deleteAllDataFromTrashFolder(String carbonTablePath) + throws IOException { + String pathOfTrashFolder = CarbonTablePath.getTrashFolderPath(carbonTablePath); + // if the trash folder exists delete the contents of the trash folder + if (FileFactory.isFileExist(pathOfTrashFolder)) { + try { + List<CarbonFile> carbonFileList = FileFactory.getFolderList(pathOfTrashFolder); + for (CarbonFile carbonFile : carbonFileList) { + deleteDataFromTrashFolderByFile(carbonFile); + } + } catch (IOException e) { + LOGGER.error("Error during deleting from trash folder", e); + } + } + } + + /** + * The below method deletes by carbonFiles, if it is a directory, it will delete recursively + */ + private static void deleteDataFromTrashFolderByFile(CarbonFile carbonFile) { + try { + FileFactory.deleteAllCarbonFilesOfDir(carbonFile); + LOGGER.info("delete file from trash+ " + carbonFile.getPath()); + } catch (CarbonFileException e) { + LOGGER.error("Error during deleting from trash folder", e); + } + } + + /** + * The below method will list all files in the trash folder + */ + public static List<String> listSegmentsInTrashFolder(String carbonTablePath) + throws IOException { + String pathOfTrashFolder = CarbonTablePath.getTrashFolderPath(carbonTablePath); + List<String> segmentsList = new ArrayList<String>(); + if (FileFactory.isFileExist(pathOfTrashFolder)) { + try { + List<CarbonFile> timeStampList = FileFactory.getFolderList(pathOfTrashFolder); + for (CarbonFile carbonFile : timeStampList) { + List<CarbonFile> SegmentList = FileFactory.getFolderList(carbonFile.getAbsolutePath()); Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516841463 ########## File path: core/src/main/java/org/apache/carbondata/core/util/path/TrashUtil.java ########## @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.core.util.path; + +import java.io.File; +import java.io.IOException; +import java.sql.Timestamp; +import java.util.ArrayList; +import java.util.List; + +import org.apache.carbondata.common.logging.LogServiceFactory; +import org.apache.carbondata.core.constants.CarbonCommonConstants; +import org.apache.carbondata.core.datastore.filesystem.CarbonFile; +import org.apache.carbondata.core.datastore.impl.FileFactory; +import org.apache.carbondata.core.exception.CarbonFileException; +import org.apache.carbondata.core.util.CarbonUtil; + +import org.apache.commons.io.FileUtils; + +import org.apache.log4j.Logger; + +/** + * Mantains the trash folder in carbondata. This class has methods to copy data to the trash and + * remove data from the trash. + */ +public final class TrashUtil { + + private static final Logger LOGGER = + LogServiceFactory.getLogService(CarbonUtil.class.getName()); + + /** + * The below method copies the complete a file to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param pathOfFileToCopy the files which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashFolderByFile(String carbonTablePath, String pathOfFileToCopy, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + if (new File(pathOfFileToCopy).exists()) { + FileUtils.copyFileToDirectory(new File(pathOfFileToCopy), new File(trashFolderPath)); + LOGGER.info("File: " + pathOfFileToCopy + " successfully copied to the trash folder: " + + trashFolderPath); + } + } catch (IOException e) { + LOGGER.error("Unable to copy " + pathOfFileToCopy + " to the trash folder", e); + } + } + + /** + * The below method copies the complete segment folder to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param path the folder which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashBySegment(CarbonFile path, String carbonTablePath, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + FileUtils.copyDirectory(new File(path.getAbsolutePath()), new File(trashFolderPath)); + LOGGER.info("Segment: " + path.getAbsolutePath() + " has been copied to the trash folder" + + " successfully"); + } catch (IOException e) { + LOGGER.error("Unable to create the trash folder and copy data to it", e); + } + } + + /** + * The below method deletes timestamp subdirectories in the trash folder which have expired as + * per the user defined expiration time + */ + public static void deleteAllDataFromTrashFolderByTimeStamp(String carbonTablePath, Long timeStamp) + throws IOException { + String pathOfTrashFolder = CarbonTablePath.getTrashFolderPath(carbonTablePath); + // Deleting the timestamp based subdirectories in the trashfolder by the given timestamp. + if (FileFactory.isFileExist(pathOfTrashFolder)) { + try { + List<CarbonFile> carbonFileList = FileFactory.getFolderList(pathOfTrashFolder); + for (CarbonFile carbonFile : carbonFileList) { + String[] splitPath = carbonFile.getAbsolutePath().split(CarbonCommonConstants + .FILE_SEPARATOR); + Long currentTime = Long.valueOf(new Timestamp(System.currentTimeMillis()).getTime()); + Long givenTime = Long.valueOf(splitPath[splitPath.length - 1]); + // If the timeStamp at which the timeStamp subdirectory has expired as per the user + // defined value, delete the complete timeStamp subdirectory + if (givenTime + timeStamp < currentTime) { + deleteDataFromTrashFolderByFile(carbonFile); + } else { + LOGGER.info("Timestamp folder not expired: " + carbonFile.getAbsolutePath()); + } + } + } catch (IOException e) { + LOGGER.error("Error during deleting from trash folder", e); + } + } + } + + /** + * The below method deletes all the files and folders in the trash folder of a carbon table. + */ + public static void deleteAllDataFromTrashFolder(String carbonTablePath) + throws IOException { + String pathOfTrashFolder = CarbonTablePath.getTrashFolderPath(carbonTablePath); + // if the trash folder exists delete the contents of the trash folder + if (FileFactory.isFileExist(pathOfTrashFolder)) { + try { + List<CarbonFile> carbonFileList = FileFactory.getFolderList(pathOfTrashFolder); + for (CarbonFile carbonFile : carbonFileList) { + deleteDataFromTrashFolderByFile(carbonFile); + } + } catch (IOException e) { + LOGGER.error("Error during deleting from trash folder", e); + } + } + } + + /** + * The below method deletes by carbonFiles, if it is a directory, it will delete recursively + */ + private static void deleteDataFromTrashFolderByFile(CarbonFile carbonFile) { Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516850514 ########## File path: core/src/main/java/org/apache/carbondata/core/util/path/TrashUtil.java ########## @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.core.util.path; + +import java.io.File; +import java.io.IOException; +import java.sql.Timestamp; +import java.util.ArrayList; +import java.util.List; + +import org.apache.carbondata.common.logging.LogServiceFactory; +import org.apache.carbondata.core.constants.CarbonCommonConstants; +import org.apache.carbondata.core.datastore.filesystem.CarbonFile; +import org.apache.carbondata.core.datastore.impl.FileFactory; +import org.apache.carbondata.core.exception.CarbonFileException; +import org.apache.carbondata.core.util.CarbonUtil; + +import org.apache.commons.io.FileUtils; + +import org.apache.log4j.Logger; + +/** + * Mantains the trash folder in carbondata. This class has methods to copy data to the trash and + * remove data from the trash. + */ +public final class TrashUtil { + + private static final Logger LOGGER = + LogServiceFactory.getLogService(CarbonUtil.class.getName()); + + /** + * The below method copies the complete a file to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param pathOfFileToCopy the files which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashFolderByFile(String carbonTablePath, String pathOfFileToCopy, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + if (new File(pathOfFileToCopy).exists()) { + FileUtils.copyFileToDirectory(new File(pathOfFileToCopy), new File(trashFolderPath)); + LOGGER.info("File: " + pathOfFileToCopy + " successfully copied to the trash folder: " + + trashFolderPath); + } + } catch (IOException e) { + LOGGER.error("Unable to copy " + pathOfFileToCopy + " to the trash folder", e); + } + } + + /** + * The below method copies the complete segment folder to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param path the folder which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashBySegment(CarbonFile path, String carbonTablePath, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + FileUtils.copyDirectory(new File(path.getAbsolutePath()), new File(trashFolderPath)); + LOGGER.info("Segment: " + path.getAbsolutePath() + " has been copied to the trash folder" + + " successfully"); + } catch (IOException e) { + LOGGER.error("Unable to create the trash folder and copy data to it", e); + } + } + + /** + * The below method deletes timestamp subdirectories in the trash folder which have expired as + * per the user defined expiration time + */ + public static void deleteAllDataFromTrashFolderByTimeStamp(String carbonTablePath, Long timeStamp) + throws IOException { + String pathOfTrashFolder = CarbonTablePath.getTrashFolderPath(carbonTablePath); + // Deleting the timestamp based subdirectories in the trashfolder by the given timestamp. + if (FileFactory.isFileExist(pathOfTrashFolder)) { + try { + List<CarbonFile> carbonFileList = FileFactory.getFolderList(pathOfTrashFolder); + for (CarbonFile carbonFile : carbonFileList) { + String[] splitPath = carbonFile.getAbsolutePath().split(CarbonCommonConstants Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#discussion_r516851234 ########## File path: core/src/main/java/org/apache/carbondata/core/util/path/TrashUtil.java ########## @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.core.util.path; + +import java.io.File; +import java.io.IOException; +import java.sql.Timestamp; +import java.util.ArrayList; +import java.util.List; + +import org.apache.carbondata.common.logging.LogServiceFactory; +import org.apache.carbondata.core.constants.CarbonCommonConstants; +import org.apache.carbondata.core.datastore.filesystem.CarbonFile; +import org.apache.carbondata.core.datastore.impl.FileFactory; +import org.apache.carbondata.core.exception.CarbonFileException; +import org.apache.carbondata.core.util.CarbonUtil; + +import org.apache.commons.io.FileUtils; + +import org.apache.log4j.Logger; + +/** + * Mantains the trash folder in carbondata. This class has methods to copy data to the trash and + * remove data from the trash. + */ +public final class TrashUtil { + + private static final Logger LOGGER = + LogServiceFactory.getLogService(CarbonUtil.class.getName()); + + /** + * The below method copies the complete a file to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param pathOfFileToCopy the files which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashFolderByFile(String carbonTablePath, String pathOfFileToCopy, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + if (new File(pathOfFileToCopy).exists()) { + FileUtils.copyFileToDirectory(new File(pathOfFileToCopy), new File(trashFolderPath)); + LOGGER.info("File: " + pathOfFileToCopy + " successfully copied to the trash folder: " + + trashFolderPath); + } + } catch (IOException e) { + LOGGER.error("Unable to copy " + pathOfFileToCopy + " to the trash folder", e); + } + } + + /** + * The below method copies the complete segment folder to the trash folder. Provide necessary + * timestamp and the segment number in the suffixToAdd variable, so that the proper folder is + * created in the trash folder. + * + * @param carbonTablePath table path of the carbon table + * @param path the folder which are to be moved to the trash folder + * @param suffixToAdd timestamp, partition folder(if any) and segment number + * @return + */ + public static void copyDataToTrashBySegment(CarbonFile path, String carbonTablePath, + String suffixToAdd) { + String trashFolderPath = CarbonTablePath.getTrashFolderPath(carbonTablePath) + + CarbonCommonConstants.FILE_SEPARATOR + suffixToAdd; + try { + FileUtils.copyDirectory(new File(path.getAbsolutePath()), new File(trashFolderPath)); Review comment: in this case while copying directory, should i list the files then move them one by one or is there any other way to copy directory using FileFactory.getDataOutputStream, FileFactory.getDataInputStream, IOUtils.copyBytes ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#issuecomment-721343938 Build Failed with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/3014/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#issuecomment-721344165 Build Failed with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4772/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#issuecomment-721392003 Build Failed with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4773/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#issuecomment-721392387 Build Failed with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/3015/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3917: URL: https://github.com/apache/carbondata/pull/3917#issuecomment-721961239 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4776/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
Free forum by Nabble | Edit this page |