blob: 241dada2d674da573d81b522e6944d78924a4c7d [file] [log] [blame]
/**
* 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.tez.dag.history.events;
import java.io.IOException;
import java.io.OutputStream;
import com.google.protobuf.CodedInputStream;
import com.google.protobuf.CodedOutputStream;
import org.apache.tez.dag.history.HistoryEvent;
import org.apache.tez.dag.history.HistoryEventType;
import org.apache.tez.dag.history.SummaryEvent;
import org.apache.tez.dag.records.TezDAGID;
import org.apache.tez.dag.recovery.records.RecoveryProtos.DAGCommitStartedProto;
import org.apache.tez.dag.recovery.records.RecoveryProtos.SummaryEventProto;
import org.apache.tez.dag.utils.ProtoUtils;
public class DAGCommitStartedEvent implements HistoryEvent, SummaryEvent {
private TezDAGID dagID;
private long commitStartTime;
public DAGCommitStartedEvent() {
}
public DAGCommitStartedEvent(TezDAGID dagID, long commitStartTime) {
this.dagID = dagID;
this.commitStartTime = commitStartTime;
}
@Override
public HistoryEventType getEventType() {
return HistoryEventType.DAG_COMMIT_STARTED;
}
@Override
public boolean isRecoveryEvent() {
return true;
}
@Override
public boolean isHistoryEvent() {
return false;
}
public DAGCommitStartedProto toProto() {
return DAGCommitStartedProto.newBuilder()
.setDagId(dagID.toString())
.build();
}
public void fromProto(DAGCommitStartedProto proto) {
this.dagID = TezDAGID.fromString(proto.getDagId());
}
@Override
public void toProtoStream(CodedOutputStream outputStream) throws IOException {
outputStream.writeMessageNoTag(toProto());
}
@Override
public void fromProtoStream(CodedInputStream inputStream) throws IOException {
DAGCommitStartedProto proto = inputStream.readMessage(DAGCommitStartedProto.PARSER, null);
if (proto == null) {
throw new IOException("No data found in stream");
}
fromProto(proto);
}
@Override
public String toString() {
return "dagID=" + dagID;
}
public TezDAGID getDagID() {
return dagID;
}
@Override
public void toSummaryProtoStream(OutputStream outputStream) throws IOException {
ProtoUtils.toSummaryEventProto(dagID, commitStartTime,
getEventType(), null).writeDelimitedTo(outputStream);
}
@Override
public void fromSummaryProtoStream(SummaryEventProto proto) throws IOException {
this.dagID = TezDAGID.fromString(proto.getDagId());
this.commitStartTime = proto.getTimestamp();
}
@Override
public boolean writeToRecoveryImmediately() {
return false;
}
}