Package com.linkedin.venice.controller
Class StoreUpdateCallbackException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linkedin.venice.exceptions.VeniceException
com.linkedin.venice.exceptions.VeniceRetriableException
com.linkedin.venice.controller.StoreUpdateCallbackException
- All Implemented Interfaces:
Serializable
Thrown when a
StoreUpdateHandler fails while reacting to a durable UPDATE_STORE admin operation.
Handler failures are wrapped in this dedicated type so they cannot be misclassified by the admin consumer's
exception classifier. In particular, a handler that throws
VeniceNoStoreException must not be mistaken for the UPDATE_STORE
target being absent, which would trigger the missing-store auto-skip path and permanently drop an operation whose
durable update already succeeded. Like other admin-processing exceptions, this exception is retriable: the admin
operation stays eligible for retry until the handler succeeds.
- See Also:
-
Field Summary
Fields inherited from class com.linkedin.venice.exceptions.VeniceException
errorType -
Constructor Summary
ConstructorsConstructorDescriptionStoreUpdateCallbackException(String clusterName, String storeName, Throwable cause) -
Method Summary
Methods inherited from class com.linkedin.venice.exceptions.VeniceException
getErrorType, getHttpStatusCodeMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StoreUpdateCallbackException
-