Module: Mongo::Error::ReadWriteRetryable
| Relationships & Source Files | |
| Extension / Inclusion / Inheritance Descendants | |
|
Included In:
| |
| Defined in: | lib/mongo/error/read_write_retryable.rb |
Overview
Although methods of this module are part of the public API, the fact that these methods are defined on this module and not on the classes which include this module is not part of the public API.
A module encapsulating functionality to indicate whether errors are retryable.
Constant Summary
-
RETRY_MESSAGES =
Internal use only
# File 'lib/mongo/error/read_write_retryable.rb', line 59
These are magic error messages that could indicate a cluster reconfiguration behind a mongos.
WRITE_RETRY_MESSAGES + [ 'transport error', 'socket exception', "can't connect", 'connect failed', 'error querying', 'could not get last error', 'connection attempt failed', 'interrupted at shutdown', 'unknown replica set', 'dbclient error communicating with server' ].freeze
-
WRITE_RETRY_ERRORS =
Internal use only
# File 'lib/mongo/error/read_write_retryable.rb', line 32
::Mongo::Errorcodes and code names that should result in a failing write being retried.[ { code_name: 'HostUnreachable', code: 6 }, { code_name: 'HostNotFound', code: 7 }, { code_name: 'NetworkTimeout', code: 89 }, { code_name: 'ShutdownInProgress', code: 91 }, { code_name: 'PrimarySteppedDown', code: 189 }, { code_name: 'ExceededTimeLimit', code: 262 }, { code_name: 'SocketException', code: 9001 }, { code_name: 'NotMaster', code: 10_107 }, { code_name: 'InterruptedAtShutdown', code: 11_600 }, { code_name: 'InterruptedDueToReplStateChange', code: 11_602 }, { code_name: 'NotPrimaryNoSecondaryOk', code: 13_435 }, { code_name: 'NotMasterOrSecondary', code: 13_436 }, ].freeze -
WRITE_RETRY_MESSAGES =
Internal use only
# File 'lib/mongo/error/read_write_retryable.rb', line 50
These are magic error messages that could indicate a master change.
[ 'not master', 'node is recovering', ].freeze
Instance Attribute Summary
- #retryable? ⇒ true, false readonly deprecated Deprecated.
-
#write_retryable? ⇒ true, false
readonly
Whether the error is a retryable error according to the modern retryable reads and retryable writes specifications.
- #write_retryable_code? ⇒ Boolean readonly private
Instance Attribute Details
#retryable? ⇒ true, false (readonly)
Whether the error is a retryable error according to the legacy read retry logic.
# File 'lib/mongo/error/read_write_retryable.rb', line 78
def retryable? write_retryable? || (code.nil? && RETRY_MESSAGES.any? { |m| .include?(m) }) end
#write_retryable? ⇒ true, false (readonly)
Whether the error is a retryable error according to the modern retryable reads and retryable writes specifications.
This method is also used by the legacy retryable write logic to determine whether an error is a retryable one.
# File 'lib/mongo/error/read_write_retryable.rb', line 90
def write_retryable? write_retryable_code? || (code.nil? && WRITE_RETRY_MESSAGES.any? { |m| .include?(m) }) end
#write_retryable_code? ⇒ Boolean (readonly, private)
# File 'lib/mongo/error/read_write_retryable.rb', line 95
private def write_retryable_code? if code WRITE_RETRY_ERRORS.any? { |e| e[:code] == code } else # return false rather than nil false end end