-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathRetryabilityHelper.cs
More file actions
345 lines (305 loc) · 14.7 KB
/
Copy pathRetryabilityHelper.cs
File metadata and controls
345 lines (305 loc) · 14.7 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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/* Copyright 2010-present 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.
*/
using System;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Driver.Authentication;
using MongoDB.Driver.Core.Connections;
using MongoDB.Driver.Core.Misc;
using MongoDB.Driver.Core.Servers;
namespace MongoDB.Driver.Core.Operations
{
/// <summary>
/// This class contains helper methods for retryability, both for retryable reads /writes and client backpressure retries.
/// </summary>
internal static class RetryabilityHelper
{
// private constants
private const string ResumableChangeStreamErrorLabel = "ResumableChangeStreamError";
private const string RetryableWriteErrorLabel = "RetryableWriteError";
private const string RetryableErrorLabel = "RetryableError";
private const string SystemOverloadedErrorLabel = "SystemOverloadedError";
public const string NoWritesPerformedErrorLabel = "NoWritesPerformed";
// private static fields
private static readonly HashSet<ServerErrorCode> __resumableChangeStreamErrorCodes;
private static readonly HashSet<Type> __resumableChangeStreamExceptions;
private static readonly HashSet<Type> __retryableReadExceptions;
private static readonly HashSet<Type> __retryableWriteExceptions;
private static readonly HashSet<ServerErrorCode> __retryableReadErrorCodes;
private static readonly HashSet<ServerErrorCode> __retryableWriteErrorCodes;
private static readonly HashSet<string> __saslCommands;
// static constructor
static RetryabilityHelper()
{
var resumableAndRetryableExceptions = new HashSet<Type>()
{
typeof(MongoNotPrimaryException),
typeof(MongoNodeIsRecoveringException),
typeof(MongoConnectionPoolPausedException)
};
__resumableChangeStreamExceptions = new HashSet<Type>(resumableAndRetryableExceptions);
__retryableReadExceptions = new HashSet<Type>(resumableAndRetryableExceptions);
__retryableWriteExceptions = new HashSet<Type>(resumableAndRetryableExceptions);
var retryableReadAndWriteErrorCodes = new HashSet<ServerErrorCode>
{
ServerErrorCode.ExceededTimeLimit,
ServerErrorCode.HostNotFound,
ServerErrorCode.HostUnreachable,
ServerErrorCode.NetworkTimeout,
ServerErrorCode.SocketException
};
__retryableReadErrorCodes = new HashSet<ServerErrorCode>(retryableReadAndWriteErrorCodes)
{
ServerErrorCode.ReadConcernMajorityNotAvailableYet
};
__retryableWriteErrorCodes = new HashSet<ServerErrorCode>(retryableReadAndWriteErrorCodes);
__resumableChangeStreamErrorCodes = new HashSet<ServerErrorCode>()
{
ServerErrorCode.HostUnreachable,
ServerErrorCode.HostNotFound,
ServerErrorCode.NetworkTimeout,
ServerErrorCode.ShutdownInProgress,
ServerErrorCode.PrimarySteppedDown,
ServerErrorCode.ExceededTimeLimit,
ServerErrorCode.SocketException,
ServerErrorCode.LegacyNotPrimary,
ServerErrorCode.NotWritablePrimary,
ServerErrorCode.InterruptedAtShutdown,
ServerErrorCode.InterruptedDueToReplStateChange,
ServerErrorCode.NotPrimaryNoSecondaryOk,
ServerErrorCode.NotPrimaryOrSecondary,
ServerErrorCode.StaleShardVersion,
ServerErrorCode.StaleEpoch,
ServerErrorCode.StaleConfig,
ServerErrorCode.RetryChangeStream,
ServerErrorCode.FailedToSatisfyReadPreference
};
__saslCommands = new HashSet<string>
{
SaslAuthenticator.SaslStartCommand,
SaslAuthenticator.SaslContinueCommand
};
}
// public static methods
public static void AddRetryableWriteErrorLabelIfRequired(MongoException exception, ConnectionDescription connectionDescription)
{
if (ShouldRetryableWriteExceptionLabelBeAdded(exception, connectionDescription))
{
exception.AddErrorLabel(RetryableWriteErrorLabel);
}
}
/// <summary>
/// Implements an exponential backoff with jitter algorithm to determine the delay used by client backpressure retries.
/// </summary>
public static int GetRetryDelayMs(IRandom random, int attempt, double backoffBase, int backoffInitial, int backoffMax)
{
Ensure.IsNotNull(random, nameof(random));
Ensure.IsGreaterThanZero(attempt, nameof(attempt));
Ensure.IsGreaterThanZero(backoffBase, nameof(backoffBase));
Ensure.IsGreaterThanZero(backoffInitial, nameof(backoffInitial));
Ensure.IsGreaterThanOrEqualTo(backoffMax, backoffInitial, nameof(backoffMax));
var j = random.NextDouble();
return (int)(j * Math.Min(backoffMax, backoffInitial * Math.Pow(backoffBase, attempt)));
}
/// <summary>
/// Gets the operation retry backoff delay used for operation retries under client backpressure.
/// </summary>
/// <param name="attempt">The retry attempt number.</param>
/// <param name="random">The random number generator.</param>
/// <param name="baseBackoffMs">
/// A server-supplied backoff base (from the overload error's <c>baseBackoffMS</c> field) that overrides
/// the driver's default initial backoff, or <see langword="null"/> to use the default.
/// </param>
public static TimeSpan GetOperationRetryBackoffDelay(int attempt, IRandom random, int? baseBackoffMs = null)
{
// Limit a server-supplied override to MaxBackoff so the backoff still resolves to min(MaxBackoff, ...) rather than tripping GetRetryDelayMs's guard.
var initialBackoff = Math.Min(
baseBackoffMs ?? OperationRetryBackpressureConstants.InitialBackoff,
OperationRetryBackpressureConstants.MaxBackoff);
return TimeSpan.FromMilliseconds(
GetRetryDelayMs(
random,
attempt,
OperationRetryBackpressureConstants.BasePowerBackoff,
initialBackoff,
OperationRetryBackpressureConstants.MaxBackoff));
}
/// <summary>
/// Reads a server-supplied backoff override (the <c>baseBackoffMS</c> field) from a retryable overload error,
/// or <see langword="null"/> when absent. Only <see cref="MongoCommandException"/> results are inspected; a
/// missing, non-numeric, or non-positive value is treated as absent.
/// </summary>
public static int? GetBaseBackoffMs(Exception exception)
{
if (exception is MongoCommandException { Result: { } result } &&
result.TryGetValue("baseBackoffMS", out var value) &&
value.IsNumeric)
{
var ms = value.ToInt64();
if (ms > 0)
{
return (int)Math.Min(ms, int.MaxValue);
}
}
return null;
}
public static bool IsCommandRetryable(BsonDocument command)
{
return
command.Contains("txnNumber") || // retryWrites=true
command.Contains("commitTransaction") ||
command.Contains("abortTransaction");
}
public static bool IsResumableChangeStreamException(Exception exception, int maxWireVersion)
{
if (IsNetworkException(exception))
{
return true;
}
if (exception is MongoCursorNotFoundException or MongoConnectionPoolPausedException )
{
return true;
}
if (Feature.ServerReturnsResumableChangeStreamErrorLabel.IsSupported(maxWireVersion))
{
return exception is MongoException mongoException && mongoException.HasErrorLabel(ResumableChangeStreamErrorLabel);
}
if (exception is MongoCommandException commandException)
{
var code = (ServerErrorCode)commandException.Code;
if (__resumableChangeStreamErrorCodes.Contains(code))
{
return true;
}
}
return __resumableChangeStreamExceptions.Contains(exception.GetType());
}
/// <summary>
/// Value indicating whether the exception requests additional authentication attempt.
/// </summary>
/// <param name="mongoCommandException">The command exception.</param>
/// <param name="command">The command.</param>
/// <returns>The flag.</returns>
/// <remarks>
/// This logic is completely separate from a standard retry mechanism and related only to authentication.
/// </remarks>
public static bool IsReauthenticationRequested(MongoCommandException mongoCommandException, BsonDocument command)
=> mongoCommandException.Code == (int)ServerErrorCode.ReauthenticationRequired &&
// SASL commands should not be reauthenticated on sending level
!__saslCommands.Overlaps(command.Names);
public static bool IsRetryableReadException(Exception exception)
{
if (__retryableReadExceptions.Contains(exception.GetType()) || IsNetworkException(exception))
{
return true;
}
if (exception is MongoCommandException commandException)
{
var code = (ServerErrorCode)commandException.Code;
if (__retryableReadErrorCodes.Contains(code))
{
return true;
}
}
return false;
}
public static bool IsRetryableWriteException(Exception exception)
{
return exception is MongoException mongoException && mongoException.HasErrorLabel(RetryableWriteErrorLabel);
}
public static bool IsSystemOverloadedException(Exception exception)
{
return exception is MongoException mongoException && mongoException.HasErrorLabel(SystemOverloadedErrorLabel);
}
public static bool IsRetryableException(Exception exception)
{
return exception is MongoException mongoException && mongoException.HasErrorLabel(RetryableErrorLabel);
}
public static bool IsNoWritesPerformedException(Exception exception)
{
return exception is MongoException mongoException && mongoException.HasErrorLabel(NoWritesPerformedErrorLabel);
}
// private static methods
private static bool IsNetworkException(Exception exception)
{
return exception is MongoConnectionException mongoConnectionException && mongoConnectionException.IsNetworkException;
}
private static bool ShouldRetryableWriteExceptionLabelBeAdded(Exception exception, ConnectionDescription connectionDescription)
{
if (IsNetworkException(exception))
{
return true;
}
var maxWireVersion = connectionDescription.MaxWireVersion;
if (Feature.ServerReturnsRetryableWriteErrorLabel.IsSupported(maxWireVersion))
{
return false;
}
// on all servers from 4.4 on we would have returned false in the previous if statement
// so from this point on we know we are connected to a pre 4.4 server
if (__retryableWriteExceptions.Contains(exception.GetType()))
{
return true;
}
var commandException = exception as MongoCommandException;
if (commandException != null)
{
var code = (ServerErrorCode)commandException.Code;
if (__retryableWriteErrorCodes.Contains(code))
{
return true;
}
}
var serverType = connectionDescription.HelloResult.ServerType;
if (serverType != ServerType.ShardRouter)
{
var writeConcernException = exception as MongoWriteConcernException;
if (writeConcernException != null)
{
var writeConcernError = writeConcernException.WriteConcernResult.Response.GetValue("writeConcernError", null)?.AsBsonDocument;
if (writeConcernError != null)
{
var code = (ServerErrorCode)writeConcernError.GetValue("code", -1).AsInt32;
switch (code)
{
case ServerErrorCode.InterruptedAtShutdown:
case ServerErrorCode.InterruptedDueToReplStateChange:
case ServerErrorCode.LegacyNotPrimary:
case ServerErrorCode.NotWritablePrimary:
case ServerErrorCode.NotPrimaryNoSecondaryOk:
case ServerErrorCode.NotPrimaryOrSecondary:
case ServerErrorCode.PrimarySteppedDown:
case ServerErrorCode.ShutdownInProgress:
case ServerErrorCode.HostNotFound:
case ServerErrorCode.HostUnreachable:
case ServerErrorCode.NetworkTimeout:
case ServerErrorCode.SocketException:
case ServerErrorCode.ExceededTimeLimit:
return true;
}
}
}
}
return false;
}
internal static class OperationRetryBackpressureConstants
{
public const int BasePowerBackoff = 2;
public const int InitialBackoff = 100;
public const int MaxBackoff = 10000;
public const int DefaultMaxRetries = 2;
}
}
}