1
0

[HUDI-4078][HUDI-FLINK]BootstrapOperator contains the pending compact… (#5545)

* [HUDI-4078][HUDI-FLINK]BootstrapOperator contains the pending compaction files
This commit is contained in:
Bo Cui
2022-05-13 14:32:48 +08:00
committed by GitHub
parent 8ad0bb9745
commit 7fb436d3cf
6 changed files with 40 additions and 11 deletions

View File

@@ -124,7 +124,7 @@ public interface TableFileSystemView {
* @param maxInstantTime Max Instant Time
* @return
*/
public Stream<FileSlice> getLatestMergedFileSlicesBeforeOrOn(String partitionPath, String maxInstantTime);
Stream<FileSlice> getLatestMergedFileSlicesBeforeOrOn(String partitionPath, String maxInstantTime);
/**
* Stream all the latest file slices, in the given range.

View File

@@ -33,28 +33,28 @@ public interface Functions {
/**
* A function which has not any parameter.
*/
public interface Function0<R> extends Serializable {
interface Function0<R> extends Serializable {
R apply();
}
/**
* A function which contains only one parameter.
*/
public interface Function1<T1, R> extends Serializable {
interface Function1<T1, R> extends Serializable {
R apply(T1 val1);
}
/**
* A function which contains two parameters.
*/
public interface Function2<T1, T2, R> extends Serializable {
interface Function2<T1, T2, R> extends Serializable {
R apply(T1 val1, T2 val2);
}
/**
* A function which contains three parameters.
*/
public interface Function3<T1, T2, T3, R> extends Serializable {
interface Function3<T1, T2, T3, R> extends Serializable {
R apply(T1 val1, T2 val2, T3 val3);
}
}