Package com.attivio.sdk.error
Class ReplicationError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.ReplicationError
-
- All Implemented Interfaces:
java.io.Serializable
public final class ReplicationError extends ErrorCode
Contains Error codes related to index replication.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
BEGIN_ERROR
INDEX_REPLICATION-20 An error occurred while preparing for receiving files.static ErrorCode
COMMIT_ERROR
INDEX_REPLICATION-11 Failed to commit synchronized index on replication slave.static ErrorCode
ENGINE_RESTART_ERROR
INDEX_REPLICATION-22 Failed to restart engine after failed recovery.static ErrorCode
EXECUTION_ERROR
INDEX_REPLICATION-10 Unexpected execution error occurred.static ErrorCode
FINISH_COMMIT_FAILED
INDEX_REPLICATION-15 Master received a failure from a slave when telling it to put the new index live.static ErrorCode
ILLEGAL_ACCESS
INDEX_REPLICATION-17 Replication task was not permitted due to illegal access.static ErrorCode
INDEX_STATE_ERROR
INDEX_REPLICATION-5 Failed to gather index state from replication slave.static ErrorCode
INVALID_INPUT_ADDRESS
INDEX_REPLICATION-16 The Replication Input Address for a slave is invalid or not specified.static ErrorCode
INVALID_MASTER
INDEX_REPLICATION-21 A replica attempted to register with an invalid master.static ErrorCode
NOT_INITIALIZED
INDEX_REPLICATION-23 Replica has not received an initial replication yet.static ErrorCode
NOT_SUPPORTED
INDEX_REPLICATION-18 A replication event/request is not supported.static ErrorCode
NOTIFY_ERROR
INDEX_REPLICATION-8 Failed to send a notification to a replication slave.static ErrorCode
OPEN_ERROR
INDEX_REPLICATION-12 Failed to open an index on the replication slave.static ErrorCode
POLL_ERROR
INDEX_REPLICATION-3 Failed to poll master.static ErrorCode
PUT_ERROR
INDEX_REPLICATION-7 Failed to send file to replication slave.static ErrorCode
REBUILD_ERROR
INDEX_REPLICATION-26 Failed to initialize rebuild of index.static ErrorCode
REBUILD_REQUIRED
INDEX_REPLICATION-25 An index is out of sync and must be rebuild from scratch.static ErrorCode
REGISTER_ERROR
INDEX_REPLICATION-24 Failed to properly register replica with master.static ErrorCode
REPLICATION_FAILED
INDEX_REPLICATION-13 Replication to a slave resulted in an unrecoverable error.static ErrorCode
ROLLBACK_FAILED
INDEX_REPLICATION-14 Master received a failure from a slave when telling it to rollback.static ErrorCode
TEMP_DIR_ERROR
INDEX_REPLICATION-19 An error occurred when opening a temporary directory.static ErrorCode
TRANSPORT_CLOSE_ERROR
INDEX_REPLICATION-6 Failed to properly close transport used for replication.static ErrorCode
UNEXPECTED_RESPONSE
INDEX_REPLICATION-9 An unexpected response was received.static ErrorCode
UNKNOWN_EVENT
INDEX_REPLICATION-4 The replication slave received an unknown replication event.static ErrorCode
UNREGISTER_ERROR
INDEX_REPLICATION-2 Failed to properly unregister slave from master.static ErrorCode
UNSUPPORTED_URI
INDEX_REPLICATION-1 URI for replication address is unsupported by replication master with current configuration.
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
UNSUPPORTED_URI
public static final ErrorCode UNSUPPORTED_URI
INDEX_REPLICATION-1 URI for replication address is unsupported by replication master with current configuration.
-
UNREGISTER_ERROR
public static final ErrorCode UNREGISTER_ERROR
INDEX_REPLICATION-2 Failed to properly unregister slave from master.
-
POLL_ERROR
public static final ErrorCode POLL_ERROR
INDEX_REPLICATION-3 Failed to poll master.
-
UNKNOWN_EVENT
public static final ErrorCode UNKNOWN_EVENT
INDEX_REPLICATION-4 The replication slave received an unknown replication event.
-
INDEX_STATE_ERROR
public static final ErrorCode INDEX_STATE_ERROR
INDEX_REPLICATION-5 Failed to gather index state from replication slave.
-
TRANSPORT_CLOSE_ERROR
public static final ErrorCode TRANSPORT_CLOSE_ERROR
INDEX_REPLICATION-6 Failed to properly close transport used for replication.
-
PUT_ERROR
public static final ErrorCode PUT_ERROR
INDEX_REPLICATION-7 Failed to send file to replication slave.
-
NOTIFY_ERROR
public static final ErrorCode NOTIFY_ERROR
INDEX_REPLICATION-8 Failed to send a notification to a replication slave.
-
UNEXPECTED_RESPONSE
public static final ErrorCode UNEXPECTED_RESPONSE
INDEX_REPLICATION-9 An unexpected response was received.
-
EXECUTION_ERROR
public static final ErrorCode EXECUTION_ERROR
INDEX_REPLICATION-10 Unexpected execution error occurred.
-
COMMIT_ERROR
public static final ErrorCode COMMIT_ERROR
INDEX_REPLICATION-11 Failed to commit synchronized index on replication slave.
-
OPEN_ERROR
public static final ErrorCode OPEN_ERROR
INDEX_REPLICATION-12 Failed to open an index on the replication slave.
-
REPLICATION_FAILED
public static final ErrorCode REPLICATION_FAILED
INDEX_REPLICATION-13 Replication to a slave resulted in an unrecoverable error.
-
ROLLBACK_FAILED
public static final ErrorCode ROLLBACK_FAILED
INDEX_REPLICATION-14 Master received a failure from a slave when telling it to rollback.
-
FINISH_COMMIT_FAILED
public static final ErrorCode FINISH_COMMIT_FAILED
INDEX_REPLICATION-15 Master received a failure from a slave when telling it to put the new index live.
-
INVALID_INPUT_ADDRESS
public static final ErrorCode INVALID_INPUT_ADDRESS
INDEX_REPLICATION-16 The Replication Input Address for a slave is invalid or not specified.
-
ILLEGAL_ACCESS
public static final ErrorCode ILLEGAL_ACCESS
INDEX_REPLICATION-17 Replication task was not permitted due to illegal access.This can happen if the system is misconfigured or replication events are sent illegally.
-
NOT_SUPPORTED
public static final ErrorCode NOT_SUPPORTED
INDEX_REPLICATION-18 A replication event/request is not supported.
-
TEMP_DIR_ERROR
public static final ErrorCode TEMP_DIR_ERROR
INDEX_REPLICATION-19 An error occurred when opening a temporary directory.
-
BEGIN_ERROR
public static final ErrorCode BEGIN_ERROR
INDEX_REPLICATION-20 An error occurred while preparing for receiving files.
-
INVALID_MASTER
public static final ErrorCode INVALID_MASTER
INDEX_REPLICATION-21 A replica attempted to register with an invalid master.
-
ENGINE_RESTART_ERROR
public static final ErrorCode ENGINE_RESTART_ERROR
INDEX_REPLICATION-22 Failed to restart engine after failed recovery.
-
NOT_INITIALIZED
public static final ErrorCode NOT_INITIALIZED
INDEX_REPLICATION-23 Replica has not received an initial replication yet.
-
REGISTER_ERROR
public static final ErrorCode REGISTER_ERROR
INDEX_REPLICATION-24 Failed to properly register replica with master.
-
REBUILD_REQUIRED
public static final ErrorCode REBUILD_REQUIRED
INDEX_REPLICATION-25 An index is out of sync and must be rebuild from scratch.
-
REBUILD_ERROR
public static final ErrorCode REBUILD_ERROR
INDEX_REPLICATION-26 Failed to initialize rebuild of index.
-
-