-
Notifications
You must be signed in to change notification settings - Fork 969
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[core] add deletedFileTotalSizeInBytes in result of OrphanFilesClean (#…
- Loading branch information
1 parent
ca4af64
commit 8d57d3d
Showing
13 changed files
with
291 additions
and
132 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
paimon-core/src/main/java/org/apache/paimon/operation/CleanOrphanFilesResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* 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.paimon.operation; | ||
|
||
import org.apache.paimon.fs.Path; | ||
|
||
import java.util.List; | ||
|
||
/** The result of OrphanFilesClean. */ | ||
public class CleanOrphanFilesResult { | ||
|
||
private List<Path> deletedFilesPath; | ||
private final long deletedFileCount; | ||
private final long deletedFileTotalLenInBytes; | ||
|
||
public CleanOrphanFilesResult(long deletedFileCount, long deletedFileTotalLenInBytes) { | ||
this.deletedFileCount = deletedFileCount; | ||
this.deletedFileTotalLenInBytes = deletedFileTotalLenInBytes; | ||
} | ||
|
||
public CleanOrphanFilesResult( | ||
List<Path> deletedFilesPath, long deletedFileCount, long deletedFileTotalLenInBytes) { | ||
this(deletedFileCount, deletedFileTotalLenInBytes); | ||
this.deletedFilesPath = deletedFilesPath; | ||
} | ||
|
||
public long getDeletedFileCount() { | ||
return deletedFileCount; | ||
} | ||
|
||
public long getDeletedFileTotalLenInBytes() { | ||
return deletedFileTotalLenInBytes; | ||
} | ||
|
||
public List<Path> getDeletedFilesPath() { | ||
return deletedFilesPath; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.