org.apache.hudi.sink.compact.CompactionCommitEvent Maven / Gradle / Ivy
The newest version!
/*
* 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.hudi.sink.compact;
import org.apache.hudi.client.WriteStatus;
import java.io.Serializable;
import java.util.List;
/**
* Represents a commit event from the compaction task {@link CompactOperator}.
*/
public class CompactionCommitEvent implements Serializable {
private static final long serialVersionUID = 1L;
/**
* The compaction commit instant time.
*/
private String instant;
/**
* The file ID.
*/
private String fileId;
/**
* The write statuses.
*/
private List writeStatuses;
/**
* The compaction task identifier.
*/
private int taskID;
public CompactionCommitEvent() {
}
/**
* An event with NULL write statuses that represents a failed compaction.
*/
public CompactionCommitEvent(String instant, String fileId, int taskID) {
this(instant, fileId, null, taskID);
}
public CompactionCommitEvent(String instant, String fileId, List writeStatuses, int taskID) {
this.instant = instant;
this.fileId = fileId;
this.writeStatuses = writeStatuses;
this.taskID = taskID;
}
public boolean isFailed() {
return this.writeStatuses == null;
}
// -------------------------------------------------------------------------
// Getter/Setter
// -------------------------------------------------------------------------
public void setInstant(String instant) {
this.instant = instant;
}
public void setFileId(String fileId) {
this.fileId = fileId;
}
public void setWriteStatuses(List writeStatuses) {
this.writeStatuses = writeStatuses;
}
public void setTaskID(int taskID) {
this.taskID = taskID;
}
public String getInstant() {
return instant;
}
public String getFileId() {
return fileId;
}
public List getWriteStatuses() {
return writeStatuses;
}
public int getTaskID() {
return taskID;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy