spark ErrorHandler 源码
spark ErrorHandler 代码
文件路径:/common/network-shuffle/src/main/java/org/apache/spark/network/shuffle/ErrorHandler.java
/*
* 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.spark.network.shuffle;
import java.io.FileNotFoundException;
import java.net.ConnectException;
import com.google.common.base.Throwables;
import org.apache.spark.annotation.Evolving;
import org.apache.spark.network.server.BlockPushNonFatalFailure;
/**
* Plugs into {@link RetryingBlockTransferor} to further control when an exception should be retried
* and logged.
* Note: {@link RetryingBlockTransferor} will delegate the exception to this handler only when
* - remaining retries < max retries
* - exception is an IOException
*
* @since 3.1.0
*/
@Evolving
public interface ErrorHandler {
boolean shouldRetryError(Throwable t);
default boolean shouldLogError(Throwable t) {
return true;
}
/**
* A no-op error handler instance.
*/
ErrorHandler NOOP_ERROR_HANDLER = t -> true;
/**
* The error handler for pushing shuffle blocks to remote shuffle services.
*
* @since 3.1.0
*/
class BlockPushErrorHandler implements ErrorHandler {
/**
* String constant used for generating exception messages indicating the server encountered
* IOExceptions multiple times, greater than the configured threshold, while trying to merged
* shuffle blocks of the same shuffle partition. When the client receives this this response,
* it will stop pushing any more blocks for the same shuffle partition.
*/
public static final String IOEXCEPTIONS_EXCEEDED_THRESHOLD_PREFIX =
"IOExceptions exceeded the threshold";
/**
* String constant used for generating exception messages indicating the server rejecting a
* shuffle finalize request since shuffle blocks of a higher shuffleMergeId for a shuffle is
* already being pushed. This typically happens in the case of indeterminate stage retries
* where if a stage attempt fails then the entirety of the shuffle output needs to be rolled
* back. For more details refer SPARK-23243, SPARK-25341 and SPARK-32923.
*/
public static final String STALE_SHUFFLE_FINALIZE_SUFFIX =
"stale shuffle finalize request as shuffle blocks of a higher shuffleMergeId for the"
+ " shuffle is already being pushed";
@Override
public boolean shouldRetryError(Throwable t) {
// If it is a connection time-out or a connection closed exception, no need to retry.
// If it is a FileNotFoundException originating from the client while pushing the shuffle
// blocks to the server, even then there is no need to retry. We will still log this
// exception once which helps with debugging.
if (t.getCause() instanceof ConnectException ||
t.getCause() instanceof FileNotFoundException) {
return false;
}
// If the block is too late or the invalid block push or the attempt is not the latest one,
// there is no need to retry it
return !(t instanceof BlockPushNonFatalFailure &&
BlockPushNonFatalFailure
.shouldNotRetryErrorCode(((BlockPushNonFatalFailure) t).getReturnCode()));
}
@Override
public boolean shouldLogError(Throwable t) {
return !(t instanceof BlockPushNonFatalFailure);
}
}
class BlockFetchErrorHandler implements ErrorHandler {
public static final String STALE_SHUFFLE_BLOCK_FETCH =
"stale shuffle block fetch request as shuffle blocks of a higher shuffleMergeId for the"
+ " shuffle is available";
@Override
public boolean shouldRetryError(Throwable t) {
return !Throwables.getStackTraceAsString(t).contains(STALE_SHUFFLE_BLOCK_FETCH);
}
@Override
public boolean shouldLogError(Throwable t) {
return !Throwables.getStackTraceAsString(t).contains(STALE_SHUFFLE_BLOCK_FETCH);
}
}
}
相关信息
相关文章
spark BlockFetchingListener 源码
spark BlockTransferListener 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦