All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.fs.azurebfs.services.RetryReasonConstants Maven / Gradle / Ivy

Go to download

This module contains code to support integration with Azure. Currently this consists of a filesystem client to read data from and write data to Azure Storage.

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.hadoop.fs.azurebfs.services; public final class RetryReasonConstants { private RetryReasonConstants() { } public static final String CONNECTION_TIMEOUT_JDK_MESSAGE = "connect timed out"; public static final String READ_TIMEOUT_JDK_MESSAGE = "Read timed out"; public static final String CONNECTION_RESET_MESSAGE = "Connection reset"; public static final String CONNECTION_RESET_ABBREVIATION = "CR"; public static final String CONNECTION_TIMEOUT_ABBREVIATION = "CT"; public static final String READ_TIMEOUT_ABBREVIATION = "RT"; public static final String INGRESS_LIMIT_BREACH_ABBREVIATION = "ING"; public static final String EGRESS_LIMIT_BREACH_ABBREVIATION = "EGR"; public static final String TPS_LIMIT_BREACH_ABBREVIATION = "OPR"; public static final String OTHER_SERVER_THROTTLING_ABBREVIATION = "OTH"; public static final String UNKNOWN_HOST_EXCEPTION_ABBREVIATION = "UH"; public static final String IO_EXCEPTION_ABBREVIATION = "IOE"; public static final String SOCKET_EXCEPTION_ABBREVIATION = "SE"; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy