com.sap.hana.datalake.files.HdlfsTaskCommitInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sap-hdlfs Show documentation
Show all versions of sap-hdlfs Show documentation
An implementation of org.apache.hadoop.fs.FileSystem targeting SAP HANA Data Lake Files.
// © 2022-2023 SAP SE or an SAP affiliate company. All rights reserved.
package com.sap.hana.datalake.files;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class HdlfsTaskCommitInfo implements Serializable {
private static final long serialVersionUID = 3341447121567041634L;
public String taskAttemptId;
public List taskOutputsInfo;
public HdlfsTaskCommitInfo() {
// no-op
}
public HdlfsTaskCommitInfo(final String taskAttemptId) {
this.taskAttemptId = taskAttemptId;
this.taskOutputsInfo = new ArrayList<>();
}
public void addTaskOutputInfo(final HdlfsTaskOutputInfo info) {
this.taskOutputsInfo.add(info);
}
}
// © 2022-2023 SAP SE or an SAP affiliate company. All rights reserved.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy