org.apache.hive.spark.client.metrics.ShuffleWriteMetrics Maven / Gradle / Ivy
/*
* 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.hive.spark.client.metrics;
import java.io.Serializable;
import org.apache.spark.executor.TaskMetrics;
import org.apache.hadoop.hive.common.classification.InterfaceAudience;
/**
* Metrics pertaining to writing shuffle data.
*/
@InterfaceAudience.Private
public class ShuffleWriteMetrics implements Serializable {
/** Number of bytes written for the shuffle by tasks. */
public final long shuffleBytesWritten;
/** Time tasks spent blocking on writes to disk or buffer cache, in nanoseconds. */
public final long shuffleWriteTime;
private ShuffleWriteMetrics() {
// For Serialization only.
this(0L, 0L);
}
public ShuffleWriteMetrics(
long shuffleBytesWritten,
long shuffleWriteTime) {
this.shuffleBytesWritten = shuffleBytesWritten;
this.shuffleWriteTime = shuffleWriteTime;
}
public ShuffleWriteMetrics(TaskMetrics metrics) {
this(metrics.shuffleWriteMetrics().shuffleBytesWritten(),
metrics.shuffleWriteMetrics().shuffleWriteTime());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy