![JAR search and dependency download from the Maven repository](/logo.png)
oracle.kv.RequestTimeoutException Maven / Gradle / Ivy
/*-
* Copyright (C) 2011, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This file was distributed by Oracle as part of a version of Oracle NoSQL
* Database made available at:
*
* http://www.oracle.com/technetwork/database/database-technologies/nosqldb/downloads/index.html
*
* Please see the LICENSE file included in the top-level directory of the
* appropriate version of Oracle NoSQL Database for a copy of the license and
* additional information.
*/
package oracle.kv;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
/**
* Thrown when a request cannot be processed because the configured timeout
* interval is exceeded.
*
* The default timeout interval (specified by {@link
* KVStoreConfig#getRequestTimeout}) is five seconds, and this exception should
* rarely be thrown.
*
* Note that the durability of an update operation may be uncertain if it
* results in a {@link RequestTimeoutException} being thrown. In most cases,
* the exception means that the changes requested by the update may or may not
* have been committed to the master or propagated to one or more replicas.
* Applications may want to retry the update operation if it is idempotent, or
* perform read operations to determine the outcome of the previous update.
*
* In the case that an application receives a {@link
* RequestTimeoutException} whose cause is a {@link DurabilityException} and
* calling {@link DurabilityException#getNoSideEffects()} returns true, the
* application can safely assume that none of the changes requested by the
* operation have been performed and can retry the operation. If
* getNoSideEffects returns false, then the operation may or may not have had
* side effects.
*
* Note also that if the consistency specified for a read operation
* is {@link Consistency#NONE_REQUIRED_NO_MASTER}, then this exception
* will be thrown if the operation is attempted when the only node
* available is the Master.
*
* Depending on the nature of the application, when this exception is thrown
* the client may wish to
*
* - retry the operation,
* - fall back to using a larger timeout interval, and resume using the
* original timeout interval at a later time, or
* - give up and report an error at a higher level.
*
*
* @hiddensee {@link #writeFastExternal FastExternalizable format}
*/
/* Ignore warning about reference to deprecated NONE_REQUIRED_NO_MASTER */
@SuppressWarnings("javadoc")
public class RequestTimeoutException extends FaultException {
private static final long serialVersionUID = 1L;
private volatile int timeoutMs;
/**
* For internal use only.
* @hidden
*/
public RequestTimeoutException(int timeoutMs,
String msg,
Exception cause,
boolean isRemote) {
super(msg, cause, isRemote);
this.timeoutMs = timeoutMs;
}
/**
* Creates an instance from the input stream.
*
* @hidden For internal use only
*/
public RequestTimeoutException(DataInput in, short serialVersion)
throws IOException {
super(in, serialVersion);
timeoutMs = in.readInt();
}
/**
* Writes the fields of this object to the output stream. Format:
*
* - ({@link FaultException}) {@code super}
*
- ({@link DataOutput#writeInt int}) {@link #getTimeoutMs timeoutMs}
*
*
* @hidden For internal use only
*/
@Override
public void writeFastExternal(DataOutput out, short serialVersion)
throws IOException {
/* Use super's message so that the timeout isn't included twice */
writeFastExternal(out, serialVersion, super.getMessage());
out.writeInt(timeoutMs);
}
@Override
public String getMessage() {
if (timeoutMs == 0) {
return super.getMessage();
}
return super.getMessage() + " Timeout: " + timeoutMs + "ms";
}
/**
* Returns the timeout that was in effect for the operation.
*/
public int getTimeoutMs() {
return timeoutMs;
}
/**
* Sets the timeout that was in effect for the operation.
*/
public void setTimeoutMs(int timeoutMs) {
this.timeoutMs = timeoutMs;
}
}