-
Notifications
You must be signed in to change notification settings - Fork 533
Expand file tree
/
Copy pathFaultInjectionRuleProcessor.cs
More file actions
489 lines (427 loc) · 23 KB
/
FaultInjectionRuleProcessor.cs
File metadata and controls
489 lines (427 loc) · 23 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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace Microsoft.Azure.Cosmos.FaultInjection
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.Cosmos;
using Microsoft.Azure.Cosmos.Common;
using Microsoft.Azure.Cosmos.Routing;
using Microsoft.Azure.Cosmos.Tracing;
using Microsoft.Azure.Documents;
internal class FaultInjectionRuleProcessor
{
private readonly ConnectionMode connectionMode;
private readonly CollectionCache collectionCache;
private readonly GlobalEndpointManager globalEndpointManager;
private readonly GlobalAddressResolver? addressResolver;
private readonly Func<IRetryPolicy> retryPolicy;
private readonly IRoutingMapProvider routingMapProvider;
private readonly FaultInjectionApplicationContext applicationContext;
private readonly RegionNameMapper regionNameMapper = new RegionNameMapper();
/// <summary>
/// Initializes a new instance of the <see cref="FaultInjectionRuleProcessor"/> class.
/// </summary>
/// <param name="connectionMode"></param>
/// <param name="collectionCache"></param>
/// <param name="globalEndpointManager"></param>
/// <param name="addressResolver"></param>
/// <param name="routingMapProvider"></param>
/// <param name="applicationContext"></param>
public FaultInjectionRuleProcessor(
Func<IRetryPolicy> retryPolicy,
ConnectionMode connectionMode,
CollectionCache collectionCache,
GlobalEndpointManager globalEndpointManager,
IRoutingMapProvider routingMapProvider,
FaultInjectionApplicationContext applicationContext,
GlobalAddressResolver? addressResolver = null)
{
this.connectionMode = connectionMode;
this.collectionCache = collectionCache ?? throw new ArgumentNullException(nameof(collectionCache));
this.globalEndpointManager = globalEndpointManager ?? throw new ArgumentNullException(nameof(globalEndpointManager));
this.retryPolicy = retryPolicy ?? throw new ArgumentNullException(nameof(retryPolicy));
this.routingMapProvider = routingMapProvider ?? throw new ArgumentNullException(nameof(routingMapProvider));
this.applicationContext = applicationContext ?? throw new ArgumentNullException(nameof(applicationContext));
if (connectionMode == ConnectionMode.Direct)
{
this.addressResolver = addressResolver ?? throw new ArgumentNullException(nameof(addressResolver));
}
}
public async Task<IFaultInjectionRuleInternal> ProcessFaultInjectionRule(FaultInjectionRule rule)
{
_ = rule ?? throw new ArgumentNullException(nameof(rule));
this.ValidateRule(rule);
return await this.GetEffectiveRule(rule);
}
private void ValidateRule(FaultInjectionRule rule)
{
if (rule.GetCondition().GetConnectionType() == FaultInjectionConnectionType.Direct
&& this.connectionMode != ConnectionMode.Direct)
{
throw new ArgumentException("Direct connection mode is not supported when client is not in direct mode");
}
}
private async Task<IFaultInjectionRuleInternal> GetEffectiveRule(FaultInjectionRule rule)
{
if (rule.GetResult().GetType() == typeof(FaultInjectionServerErrorResult))
{
return await this.GetEffectiveServerErrorRule(rule);
}
if (rule.GetResult().GetType() == typeof(FaultInjectionConnectionErrorResult))
{
return await this.GetEffectiveConnectionErrorRule(rule);
}
throw new Exception($"{rule.GetResult().GetType()} is not supported");
}
private async Task<IFaultInjectionRuleInternal> GetEffectiveServerErrorRule(FaultInjectionRule rule)
{
FaultInjectionServerErrorType errorType = ((FaultInjectionServerErrorResult)rule.GetResult()).GetServerErrorType();
FaultInjectionConditionInternal effectiveCondition = new FaultInjectionConditionInternal(this.globalEndpointManager);
FaultInjectionOperationType operationType = rule.GetCondition().GetOperationType();
if ((operationType != FaultInjectionOperationType.All) && this.CanErrorLimitToOperation(errorType))
{
OperationType effectiveOperationType = this.GetEffectiveOperationType(operationType);
if (effectiveOperationType != OperationType.Invalid)
{
effectiveCondition.SetOperationType(this.GetEffectiveOperationType(operationType));
}
effectiveCondition.SetResourceType(this.GetEffectiveResourceType(operationType));
}
List<Uri> regionEndpoints = this.GetRegionEndpoints(rule.GetCondition());
if (!string.IsNullOrEmpty(rule.GetCondition().GetRegion()))
{
effectiveCondition.SetRegionEndpoints(regionEndpoints);
}
else
{
List<Uri> defaultRegion = new List<Uri>(regionEndpoints)
{
this.globalEndpointManager.GetDefaultEndpoint()
};
effectiveCondition.SetRegionEndpoints(defaultRegion);
}
if (rule.GetCondition().GetConnectionType() == FaultInjectionConnectionType.Gateway)
{
if (rule.GetCondition().GetEndpoint() != FaultInjectionEndpoint.Empty
&& this.CanErrorLimitToOperation(errorType)
&& this.CanLimitToPartition(rule.GetCondition()))
{
IEnumerable<string> effectivePKRangeId =
await BackoffRetryUtility<IEnumerable<string>>.ExecuteAsync(
() => this.ResolvePartitionKeyRangeIds(
rule.GetCondition().GetEndpoint()),
this.retryPolicy());
if (!this.IsMetaData(rule.GetCondition().GetOperationType()))
{
effectiveCondition.SetPartitionKeyRangeIds(effectivePKRangeId, rule);
}
}
}
else
{
if (rule.GetCondition().GetEndpoint() != FaultInjectionEndpoint.Empty)
{
DocumentServiceRequest request = DocumentServiceRequest.CreateFromName(
operationType: OperationType.Read,
resourceFullName: rule.GetCondition().GetEndpoint().GetResoureName(),
resourceType: ResourceType.Document,
authorizationTokenType: AuthorizationTokenType.PrimaryMasterKey);
ContainerProperties collection = await this.collectionCache.ResolveCollectionAsync(request, CancellationToken.None, NoOpTrace.Singleton);
effectiveCondition.SetContainerResourceId(collection.ResourceId);
}
List<Uri> effectiveAddresses = await BackoffRetryUtility<List<Uri>>.ExecuteAsync(
() => this.ResolvePhyicalAddresses(
regionEndpoints,
rule.GetCondition(),
this.IsWriteOnly(rule.GetCondition())),
this.retryPolicy());
if (!this.CanErrorLimitToOperation(errorType))
{
effectiveAddresses = effectiveAddresses.Select(address =>
new Uri(string.Format(
"{0}://{1}:{2}/",
address.Scheme.ToString(),
address.Host.ToString(),
address.Port.ToString()))).ToList();
}
effectiveCondition.SetAddresses(effectiveAddresses);
}
FaultInjectionServerErrorResult result = (FaultInjectionServerErrorResult)rule.GetResult();
return new FaultInjectionServerErrorRule(
id: rule.GetId(),
enabled: rule.IsEnabled(),
delay: rule.GetStartDelay(),
duration: rule.GetDuration(),
hitLimit: rule.GetHitLimit(),
connectionType: rule.GetCondition().GetConnectionType(),
condition: effectiveCondition,
result: new FaultInjectionServerErrorResultInternal(
result.GetServerErrorType(),
result.GetTimes(),
result.GetDelay(),
result.GetSuppressServiceRequests(),
result.GetInjectionRate(),
this.applicationContext,
this.globalEndpointManager));
}
private async Task<IFaultInjectionRuleInternal> GetEffectiveConnectionErrorRule(FaultInjectionRule rule)
{
List<Uri> regionEndpoints = string.IsNullOrEmpty(rule.GetCondition().GetRegion())
? new List<Uri>() : this.GetRegionEndpoints(rule.GetCondition());
List<Uri> resolvedPhysicalAdresses = await this.ResolvePhyicalAddresses(
regionEndpoints,
rule.GetCondition(),
this.IsWriteOnly(rule.GetCondition()));
resolvedPhysicalAdresses.ForEach(address =>
new Uri(string.Format(
"{0}://{1}:{2}/",
address.Scheme.ToString(),
address.Host.ToString(),
address.Port.ToString())));
FaultInjectionConnectionErrorResult result = (FaultInjectionConnectionErrorResult)rule.GetResult();
return new FaultInjectionConnectionErrorRule(
rule.GetId(),
rule.IsEnabled(),
rule.GetStartDelay(),
rule.GetDuration(),
regionEndpoints,
resolvedPhysicalAdresses,
rule.GetCondition().GetConnectionType(),
result);
}
private bool CanErrorLimitToOperation(FaultInjectionServerErrorType errorType)
{
// Some errors should only be applied to specific operationTypes/ requests
// others can be applied to all operations
return errorType != FaultInjectionServerErrorType.Gone
&& errorType != FaultInjectionServerErrorType.ConnectionDelay;
}
private bool CanLimitToPartition(FaultInjectionCondition faultInjectionCondition)
{
// Some operations can be targeted for a certain partition while some can not (for example metadata requests)
//TODO: Implement metadata operations
if (faultInjectionCondition == null)
{
}
return true;
}
private OperationType GetEffectiveOperationType(FaultInjectionOperationType faultInjectionOperationType)
{
return faultInjectionOperationType switch
{
FaultInjectionOperationType.ReadItem => OperationType.Read,
FaultInjectionOperationType.CreateItem => OperationType.Create,
FaultInjectionOperationType.QueryItem => OperationType.Query,
FaultInjectionOperationType.UpsertItem => OperationType.Upsert,
FaultInjectionOperationType.ReplaceItem => OperationType.Replace,
FaultInjectionOperationType.DeleteItem => OperationType.Delete,
FaultInjectionOperationType.PatchItem => OperationType.Patch,
FaultInjectionOperationType.Batch => OperationType.Batch,
FaultInjectionOperationType.ReadFeed => OperationType.ReadFeed,
FaultInjectionOperationType.MetadataContainer => OperationType.Read,
FaultInjectionOperationType.MetadataDatabaseAccount => OperationType.Read,
FaultInjectionOperationType.MetadataPartitionKeyRange => OperationType.ReadFeed,
FaultInjectionOperationType.MetadataRefreshAddresses => OperationType.Invalid,
FaultInjectionOperationType.MetadataQueryPlan => OperationType.QueryPlan,
_ => throw new ArgumentException($"FaultInjectionOperationType: {faultInjectionOperationType} is not supported"),
};
}
private ResourceType GetEffectiveResourceType(FaultInjectionOperationType faultInjectionOperationType)
{
return faultInjectionOperationType switch
{
FaultInjectionOperationType.ReadItem => ResourceType.Document,
FaultInjectionOperationType.CreateItem => ResourceType.Document,
FaultInjectionOperationType.QueryItem => ResourceType.Document,
FaultInjectionOperationType.UpsertItem => ResourceType.Document,
FaultInjectionOperationType.ReplaceItem => ResourceType.Document,
FaultInjectionOperationType.DeleteItem => ResourceType.Document,
FaultInjectionOperationType.PatchItem => ResourceType.Document,
FaultInjectionOperationType.Batch => ResourceType.Document,
FaultInjectionOperationType.ReadFeed => ResourceType.Document,
FaultInjectionOperationType.MetadataContainer => ResourceType.Collection,
FaultInjectionOperationType.MetadataDatabaseAccount => ResourceType.DatabaseAccount,
FaultInjectionOperationType.MetadataPartitionKeyRange => ResourceType.PartitionKeyRange,
FaultInjectionOperationType.MetadataRefreshAddresses => ResourceType.Address,
FaultInjectionOperationType.MetadataQueryPlan => ResourceType.Document,
_ => throw new ArgumentException($"FaultInjectionOperationType: {faultInjectionOperationType} is not supported"),
};
}
private List<Uri> GetRegionEndpoints(FaultInjectionCondition condition)
{
bool isWriteOnlyEndpoints = this.IsWriteOnly(condition);
if(!string.IsNullOrEmpty(condition.GetRegion()))
{
return new List<Uri> { this.ResolveFaultInjectionServiceEndpoint(condition.GetRegion(), isWriteOnlyEndpoints) };
}
else
{
return isWriteOnlyEndpoints
? this.globalEndpointManager.GetAvailableWriteEndpointsByLocation().Values.ToList()
: this.globalEndpointManager.GetAvailableReadEndpointsByLocation().Values.ToList();
}
}
private Uri ResolveFaultInjectionServiceEndpoint(string region, bool isWriteOnlyEndpoints)
{
if (isWriteOnlyEndpoints)
{
if (this.globalEndpointManager.GetAvailableWriteEndpointsByLocation().TryGetValue(
this.regionNameMapper.GetCosmosDBRegionName(region),
out Uri? endpoint))
{
return endpoint;
}
}
else
{
if (this.globalEndpointManager.GetAvailableReadEndpointsByLocation().TryGetValue(
this.regionNameMapper.GetCosmosDBRegionName(region),
out Uri? endpoint))
{
return endpoint;
}
}
throw new ArgumentException($"Cannot find service endpoint for region: {region}");
}
private async Task<IEnumerable<string>> ResolvePartitionKeyRangeIds(
FaultInjectionEndpoint addressEndpoints)
{
if (addressEndpoints == null)
{
return new List<string>();
}
FeedRangeInternal feedRangeInternal = (FeedRangeInternal)addressEndpoints.GetFeedRange();
DocumentServiceRequest request = DocumentServiceRequest.CreateFromName(
operationType: OperationType.Read,
resourceFullName: addressEndpoints.GetResoureName(),
resourceType: ResourceType.Document,
authorizationTokenType: AuthorizationTokenType.PrimaryMasterKey);
ContainerProperties collection = await this.collectionCache.ResolveCollectionAsync(request, CancellationToken.None, NoOpTrace.Singleton);
return await feedRangeInternal.GetPartitionKeyRangesAsync(
this.routingMapProvider,
collection.ResourceId,
collection.PartitionKey,
new CancellationToken(),
NoOpTrace.Singleton);
}
private bool IsWriteOnly(FaultInjectionCondition condition)
{
return condition.GetOperationType() != FaultInjectionOperationType.All
&& this.GetEffectiveOperationType(condition.GetOperationType()).IsWriteOperation();
}
private bool IsMetaData(FaultInjectionOperationType operationType)
{
return operationType == FaultInjectionOperationType.MetadataContainer
|| operationType == FaultInjectionOperationType.MetadataDatabaseAccount
|| operationType == FaultInjectionOperationType.MetadataPartitionKeyRange
|| operationType == FaultInjectionOperationType.MetadataRefreshAddresses
|| operationType == FaultInjectionOperationType.MetadataQueryPlan;
}
private async Task<List<Uri>> ResolvePhyicalAddresses(
List<Uri> regionEndpoints,
FaultInjectionCondition condition,
bool isWriteOnly)
{
FaultInjectionEndpoint addressEndpoints = condition.GetEndpoint();
if (addressEndpoints == null || addressEndpoints == FaultInjectionEndpoint.Empty)
{
return new List<Uri>{ };
}
List<Uri> resolvedPhysicalAddresses = new List<Uri>();
FeedRangeInternal feedRangeInternal = (FeedRangeInternal)addressEndpoints.GetFeedRange();
DocumentServiceRequest request = DocumentServiceRequest.CreateFromName(
operationType: OperationType.Read,
resourceFullName: condition.GetEndpoint().GetResoureName(),
resourceType: ResourceType.Document,
authorizationTokenType: AuthorizationTokenType.PrimaryMasterKey);
ContainerProperties collection = await this.collectionCache.ResolveCollectionAsync(request, CancellationToken.None, NoOpTrace.Singleton);
foreach (Uri regionEndpoint in regionEndpoints)
{
//The feed range can be mapped to multiple physical partitions, get the feed range list and resolve addresses for each partition
IEnumerable<string> pkRanges = await feedRangeInternal.GetPartitionKeyRangesAsync(
this.routingMapProvider,
collection.ResourceId,
collection.PartitionKey,
cancellationToken: new CancellationToken(),
trace: NoOpTrace.Singleton);
foreach (string partitionKeyRange in pkRanges)
{
DocumentServiceRequest fauntInjectionAddressRequest = DocumentServiceRequest.Create(
operationType: OperationType.Read,
resourceId: collection.ResourceId,
resourceType: ResourceType.Document,
authorizationTokenType: AuthorizationTokenType.PrimaryMasterKey);
fauntInjectionAddressRequest.RequestContext.RouteToLocation(regionEndpoint);
fauntInjectionAddressRequest.RouteTo(new PartitionKeyRangeIdentity(partitionKeyRange));
if (isWriteOnly)
{
TransportAddressUri primary = await this.ResolvePrimaryTransportAddressUriAsync(fauntInjectionAddressRequest, true);
resolvedPhysicalAddresses.Add(primary.Uri);
}
else
{
// Make sure Primary URI is the first one in the list
IEnumerable<Uri> resolvedEndpoints = (await this.ResolveAllTransportAddressUriAsync(
fauntInjectionAddressRequest,
addressEndpoints.IsIncludePrimary(),
true))
.Take(addressEndpoints.GetReplicaCount())
.Select(address => address.Uri);
resolvedPhysicalAddresses.AddRange(resolvedEndpoints);
}
}
}
return resolvedPhysicalAddresses;
}
private async Task<IReadOnlyList<TransportAddressUri>> ResolveAllTransportAddressUriAsync(
DocumentServiceRequest request,
bool includePrimary,
bool forceAddressRefresh)
{
PerProtocolPartitionAddressInformation partitionPerProtocolAddress = await this.ResolveAddressesHelperAsync(request, forceAddressRefresh);
if (includePrimary)
{
List<TransportAddressUri> allAddresses = new List<TransportAddressUri>();
TransportAddressUri primary = partitionPerProtocolAddress.PrimaryReplicaTransportAddressUri;
allAddresses.Add(primary);
foreach (TransportAddressUri transportAddressUri in partitionPerProtocolAddress.ReplicaTransportAddressUris)
{
if (transportAddressUri != primary)
{
allAddresses.Add(transportAddressUri);
}
}
return allAddresses;
}
return partitionPerProtocolAddress.NonPrimaryReplicaTransportAddressUris;
}
private async Task<TransportAddressUri> ResolvePrimaryTransportAddressUriAsync(
DocumentServiceRequest request,
bool forceAddressRefresh)
{
PerProtocolPartitionAddressInformation partitionPerProtocolAddress = await this.ResolveAddressesHelperAsync(request, forceAddressRefresh);
return partitionPerProtocolAddress.GetPrimaryAddressUri(request);
}
private async Task<PerProtocolPartitionAddressInformation> ResolveAddressesHelperAsync(
DocumentServiceRequest request,
bool forceAddressRefresh)
{
if (this.addressResolver != null)
{
PartitionAddressInformation partitionAddressInformation =
await this.addressResolver.ResolveAsync(request, forceAddressRefresh, CancellationToken.None);
return partitionAddressInformation.Get(Documents.Client.Protocol.Tcp);
}
throw new ArgumentException("AddressResolver is Null");
}
internal GlobalEndpointManager GetGlobalEndpointManager()
{
return this.globalEndpointManager;
}
}
}