forked from mongodb/mongo-ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperation_failure.rb
More file actions
290 lines (256 loc) · 11.2 KB
/
operation_failure.rb
File metadata and controls
290 lines (256 loc) · 11.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# frozen_string_literal: true
# Copyright (C) 2015-2020 MongoDB Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'mongo/error/read_write_retryable'
module Mongo
class Error
# Raised when an operation fails for some reason.
class OperationFailure < Error
# Implements the behavior for an OperationFailure error. Other errors
# (e.g. ServerTimeoutError) may also implement this, so that they may
# be recognized and treated as OperationFailure errors.
module OperationFailure::Family
extend Forwardable
include SdamErrorDetection
include ReadWriteRetryable
def_delegators :@result, :operation_time
# @!method connection_description
#
# @return [ Server::Description ] Server description of the server that
# the operation that this exception refers to was performed on.
#
# @api private
def_delegator :@result, :connection_description
# @return [ Integer ] The error code parsed from the document.
#
# @since 2.6.0
attr_reader :code
# @return [ String ] The error code name parsed from the document.
#
# @since 2.6.0
attr_reader :code_name
# @return [ String ] The server-returned error message
# parsed from the response.
#
# @api experimental
attr_reader :server_message
# @return [ String | nil ] The address ("host:port") of the server
# that produced this error, if known.
attr_reader :server_address
# Error codes and code names that should result in a failing getMore
# command on a change stream NOT being resumed.
#
# @api private
CHANGE_STREAM_RESUME_ERRORS = [
{ 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 },
{ code_name: 'StaleShardVersion', code: 63 },
{ code_name: 'FailedToSatisfyReadPreference', code: 133 },
{ code_name: 'StaleEpoch', code: 150 },
{ code_name: 'RetryChangeStream', code: 234 },
{ code_name: 'StaleConfig', code: 13_388 },
].freeze
# Change stream can be resumed when these error messages are encountered.
#
# @since 2.6.0
# @api private
CHANGE_STREAM_RESUME_MESSAGES = ReadWriteRetryable::WRITE_RETRY_MESSAGES
# Can the change stream on which this error occurred be resumed,
# provided the operation that triggered this error was a getMore?
#
# @example Is the error resumable for the change stream?
# error.change_stream_resumable?
#
# @return [ true, false ] Whether the error is resumable.
#
# @since 2.6.0
def change_stream_resumable?
if @result && @result.is_a?(Mongo::Operation::GetMore::Result)
# CursorNotFound exceptions are always resumable because the server
# is not aware of the cursor id, and thus cannot determine if
# the cursor is a change stream and cannot add the
# ResumableChangeStreamError label.
return true if code == 43
# Connection description is not populated for unacknowledged writes.
if connection_description.max_wire_version >= 9
label?('ResumableChangeStreamError')
else
change_stream_resumable_code?
end
else
false
end
end
def change_stream_resumable_code?
CHANGE_STREAM_RESUME_ERRORS.any? { |e| e[:code] == code }
end
private :change_stream_resumable_code?
# @return [ true | false ] Whether the failure includes a write
# concern error. A failure may have a top level error and a write
# concern error or either one of the two.
#
# @since 2.10.0
def write_concern_error?
!!@write_concern_error_document
end
# Returns the write concern error document as it was reported by the
# server, if any.
#
# @return [ Hash | nil ] Write concern error as reported to the server.
attr_reader :write_concern_error_document
# @return [ Integer | nil ] The error code for the write concern error,
# if a write concern error is present and has a code.
#
# @since 2.10.0
attr_reader :write_concern_error_code
# @return [ String | nil ] The code name for the write concern error,
# if a write concern error is present and has a code name.
#
# @since 2.10.0
attr_reader :write_concern_error_code_name
# @return [ String | nil ] The details of the error.
# For WriteConcernErrors this is `document['writeConcernError']['errInfo']`.
# For WriteErrors this is `document['writeErrors'][0]['errInfo']`.
# For all other errors this is nil.
attr_reader :details
# @return [ BSON::Document | nil ] The server-returned error document.
#
# @api experimental
attr_reader :document
# @return [ Operation::Result ] the result object for the operation.
#
# @api private
attr_reader :result
# Create the operation failure.
#
# @param [ String ] message The error message.
# @param [ Operation::Result ] result The result object.
# @param [ Hash ] options Additional parameters.
#
# @option options [ Integer ] :code Error code.
# @option options [ String ] :code_name Error code name.
# @option options [ BSON::Document ] :document The server-returned
# error document.
# @option options [ String ] server_message The server-returned
# error message parsed from the response.
# @option options [ nil | String | Mongo::Address | Mongo::Server::Description ]
# :server_address The address of the server that produced the error.
# @option options [ Hash ] :write_concern_error_document The
# server-supplied write concern error document, if any.
# @option options [ Integer ] :write_concern_error_code Error code for
# write concern error, if any.
# @option options [ String ] :write_concern_error_code_name Error code
# name for write concern error, if any.
# @option options [ Array<String> ] :write_concern_error_labels Error
# labels for the write concern error, if any.
# @option options [ Array<String> ] :labels The set of labels associated
# with the error.
# @option options [ true | false ] :wtimeout Whether the error is a wtimeout.
def initialize(message = nil, result = nil, options = {})
@details = retrieve_details(options[:document])
@server_address = normalize_server_address(options[:server_address])
super(append_server_address(append_details(message, @details)))
@result = result
@code = options[:code]
@code_name = options[:code_name]
@write_concern_error_document = options[:write_concern_error_document]
@write_concern_error_code = options[:write_concern_error_code]
@write_concern_error_code_name = options[:write_concern_error_code_name]
@write_concern_error_labels = options[:write_concern_error_labels] || []
@labels = options[:labels] || []
@wtimeout = !!options[:wtimeout]
@document = options[:document]
@server_message = options[:server_message]
end
# Whether the error is a write concern timeout.
#
# @return [ true | false ] Whether the error is a write concern timeout.
#
# @since 2.7.1
def wtimeout?
@wtimeout
end
# Whether the error is MaxTimeMSExpired.
#
# @return [ true | false ] Whether the error is MaxTimeMSExpired.
#
# @since 2.10.0
def max_time_ms_expired?
code == 50 # MaxTimeMSExpired
end
private
# Retrieve the details from a document
#
# @return [ Hash | nil ] the details extracted from the document
def retrieve_details(document)
return nil unless document
if wce = document['writeConcernError']
wce['errInfo']
elsif we = document['writeErrors']&.first
we['errInfo']
end
end
# Append the details to the message
#
# @return [ String ] the message with the details appended to it
def append_details(message, details)
return message unless details && message
message + " -- #{details.to_json}"
end
# Append the server address suffix to the message when the
# Mongo.include_server_address_in_errors flag is enabled and
# a server address is known.
#
# @return [ String | nil ] the message with the suffix appended,
# or the original message unchanged.
def append_server_address(message)
return message unless Mongo.include_server_address_in_errors
return message if @server_address.nil?
return "(on #{@server_address})" if message.nil? || message.empty?
"#{message} (on #{@server_address})"
end
# Normalize a server_address option into a String "host:port" form.
#
# @param [ nil | String | Mongo::Address | Mongo::Server::Description ] value
#
# @return [ String | nil ] The normalized address, or nil.
def normalize_server_address(value)
case value
when nil then nil
when String then value
when Mongo::Address then value.seed
when Mongo::Server::Description
value.address.is_a?(Mongo::Address) ? value.address.seed : nil
else
raise ArgumentError,
"server_address must be nil, String, Mongo::Address, or Mongo::Server::Description; got #{value.class}"
end
end
end
# OperationFailure is the canonical implementor of the
# OperationFailure::Family concern.
include OperationFailure::Family
end
end
end