DBZ-2939 Added ORA-01333 as valid retriable exception

This commit is contained in:
Chris Cranford 2021-02-03 18:18:15 -05:00 committed by Jiri Pechanec
parent fffe1fb6ea
commit 15e78f66bc

View File

@ -34,6 +34,7 @@ protected boolean isRetriable(Throwable throwable) {
throwable.getMessage().startsWith("ORA-12543") || // TNS:destination host unreachable
throwable.getMessage().startsWith("ORA-00604") || // error occurred at recursive SQL level 1
throwable.getMessage().startsWith("ORA-01089") || // Oracle immediate shutdown in progress
throwable.getMessage().startsWith("ORA-01333") || // Failed to establish LogMiner dictionary
throwable.getCause() instanceof IOException ||
throwable instanceof SQLRecoverableException ||
throwable.getMessage().toUpperCase().startsWith("NO MORE DATA TO READ FROM SOCKET") ||