-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCosmosDbStorage.cs
352 lines (305 loc) · 15.7 KB
/
CosmosDbStorage.cs
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
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Net;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Hangfire.Azure.Helper;
using Hangfire.Azure.Queue;
using Hangfire.Logging;
using Hangfire.Server;
using Hangfire.Storage;
using Microsoft.Azure.Cosmos;
using Microsoft.Azure.Cosmos.Scripts;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace Hangfire.Azure;
/// <summary>
/// CosmosDbStorage extend the storage option for Hangfire.
/// </summary>
public sealed class CosmosDbStorage : JobStorage
{
private readonly string containerName;
private readonly string databaseName;
private readonly ILog logger = LogProvider.For<CosmosDbStorage>();
private readonly JsonSerializerSettings settings = new ()
{
NullValueHandling = NullValueHandling.Ignore,
DateTimeZoneHandling = DateTimeZoneHandling.Utc,
ContractResolver = new CamelCasePropertyNamesContractResolver
{
NamingStrategy = new CamelCaseNamingStrategy(false, false)
}
};
/// <summary>
/// Creates an instance of CosmosDbStorage
/// </summary>
/// <param name="url">The url string to Cosmos Database</param>
/// <param name="authSecret">The secret key for the Cosmos Database</param>
/// <param name="databaseName">The name of the database to connect with</param>
/// <param name="containerName">The name of the collection/container on the database</param>
/// <param name="options">The CosmosClientOptions object to override any of the options</param>
/// <param name="storageOptions">The CosmosDbStorageOptions object to override any of the options</param>
internal CosmosDbStorage(string url, string authSecret, string databaseName, string containerName, CosmosClientOptions? options = null, CosmosDbStorageOptions? storageOptions = null)
: this(databaseName, containerName, storageOptions)
{
if (string.IsNullOrEmpty(url))
{
throw new ArgumentNullException(nameof(url));
}
if (string.IsNullOrEmpty(authSecret))
{
throw new ArgumentNullException(nameof(authSecret));
}
options ??= new CosmosClientOptions();
ConfigureCosmosClientOptions(options);
Client = new CosmosClient(url, authSecret, options);
}
internal CosmosDbStorage(CosmosClient cosmosClient, string databaseName, string containerName, CosmosDbStorageOptions? storageOptions = null)
: this(databaseName, containerName, storageOptions)
{
if (cosmosClient is null)
{
throw new ArgumentNullException(nameof(cosmosClient));
}
ConfigureCosmosClientOptions(cosmosClient.ClientOptions);
Client = cosmosClient;
}
private CosmosDbStorage(string databaseName, string containerName, CosmosDbStorageOptions? storageOptions = null)
{
if (string.IsNullOrEmpty(databaseName))
{
throw new ArgumentNullException(nameof(databaseName));
}
if (string.IsNullOrEmpty(containerName))
{
throw new ArgumentNullException(nameof(containerName));
}
this.databaseName = databaseName;
this.containerName = containerName;
StorageOptions = storageOptions ?? new CosmosDbStorageOptions();
JobQueueProvider provider = new (this);
QueueProviders = new PersistentJobQueueProviderCollection(provider);
}
internal PersistentJobQueueProviderCollection QueueProviders { get; }
internal CosmosDbStorageOptions StorageOptions { get; set; }
private CosmosClient Client { get; } = null!;
internal Container Container { get; private set; } = null!;
private void ConfigureCosmosClientOptions(CosmosClientOptions cosmosClientOptions)
{
cosmosClientOptions.ApplicationName ??= "Hangfire";
cosmosClientOptions.Serializer = new CosmosJsonSerializer(settings);
cosmosClientOptions.MaxRetryAttemptsOnRateLimitedRequests ??= 9;
cosmosClientOptions.MaxRetryWaitTimeOnRateLimitedRequests ??= TimeSpan.FromSeconds(30);
}
/// <summary>
/// </summary>
/// <returns></returns>
public override IStorageConnection GetConnection() => new CosmosDbConnection(this);
/// <summary>
/// </summary>
/// <returns></returns>
public override IMonitoringApi GetMonitoringApi() => new CosmosDbMonitoringApi(this);
#pragma warning disable 618
/// <summary>
/// </summary>
/// <returns></returns>
public override IEnumerable<IServerComponent> GetComponents()
#pragma warning restore 618
{
yield return new ExpirationManager(this);
yield return new CountersAggregator(this);
}
/// <summary>
/// Prints out the storage options
/// </summary>
/// <param name="log"></param>
public override void WriteOptionsToLog(ILog log)
{
StringBuilder info = new ();
info.AppendLine("Using the following options for Azure Cosmos DB job storage:");
info.AppendLine($" Cosmos DB Url: [{Client.Endpoint.AbsoluteUri}]");
info.AppendLine($" Database: [{databaseName}]");
info.AppendLine($" Container: [{containerName}]");
info.AppendLine($" Request Timeout: [{Client.ClientOptions.RequestTimeout}]");
info.AppendLine($" Connection Mode: [{Client.ClientOptions.ConnectionMode}]");
info.AppendLine($" Region: [{Client.ClientOptions.ApplicationRegion}]");
info.AppendLine($" Max Retry Attempts On Rate Limited Requests: [{Client.ClientOptions.MaxRetryAttemptsOnRateLimitedRequests}]");
info.AppendLine($" Max Retry Wait Time On Rate Limited Requests: [{Client.ClientOptions.MaxRetryWaitTimeOnRateLimitedRequests!.Value}]");
info.AppendLine($" Create Storage If Not Exists: [{StorageOptions.CreateIfNotExists}]");
info.AppendLine($" Counter Aggregator Max Items: [{StorageOptions.CountersAggregateMaxItemCount}]");
info.AppendLine($" Transactional Lock Timeout: [{StorageOptions.TransactionalLockTimeout}]");
info.AppendLine($" Counter Aggregate Interval: [{StorageOptions.CountersAggregateInterval}]");
info.AppendLine($" Queue Poll Interval: [{StorageOptions.QueuePollInterval}]");
info.AppendLine($" Expiration Check Interval: [{StorageOptions.ExpirationCheckInterval}]");
info.Append($" Job Keep-Alive Interval: [{StorageOptions.JobKeepAliveInterval}]");
log.Info(info.ToString);
}
/// <summary>
/// Return the name of the database
/// </summary>
/// <returns></returns>
public override string ToString() => $"Cosmos DB : {databaseName}/{containerName}";
/// <summary>
/// Creates and returns an instance of CosmosDbStorage
/// </summary>
/// <param name="url">The url string to Cosmos Database</param>
/// <param name="authSecret">The secret key for the Cosmos Database</param>
/// <param name="databaseName">The name of the database to connect with</param>
/// <param name="containerName">The name of the collection/container on the database</param>
/// <param name="options">The CosmosClientOptions object to override any of the options</param>
/// <param name="storageOptions">The CosmosDbStorageOptions object to override any of the options</param>
public static CosmosDbStorage Create(string url, string authSecret, string databaseName, string containerName, CosmosClientOptions? options = null, CosmosDbStorageOptions? storageOptions = null)
{
CosmosDbStorage storage = new (url, authSecret, databaseName, containerName, options, storageOptions);
storage.InitializeAsync().ExecuteSynchronously();
return storage;
}
/// <summary>
/// Creates and returns an instance of CosmosDbStorage
/// </summary>
/// <param name="cosmosClient">An instance of CosmosClient</param>
/// <param name="databaseName">The name of the database to connect with</param>
/// <param name="containerName">The name of the collection/container on the database</param>
/// <param name="storageOptions">The CosmosDbStorageOptions object to override any of the options</param>
public static CosmosDbStorage Create(CosmosClient cosmosClient, string databaseName, string containerName, CosmosDbStorageOptions? storageOptions = null)
{
CosmosDbStorage storage = new (cosmosClient, databaseName, containerName, storageOptions);
storage.InitializeAsync().ExecuteSynchronously();
return storage;
}
/// <summary>
/// Creates and returns an instance of CosmosDbStorage
/// </summary>
/// <param name="url">The url string to Cosmos Database</param>
/// <param name="authSecret">The secret key for the Cosmos Database</param>
/// <param name="databaseName">The name of the database to connect with</param>
/// <param name="containerName">The name of the collection/container on the database</param>
/// <param name="options">The CosmosClientOptions object to override any of the options</param>
/// <param name="storageOptions">The CosmosDbStorageOptions object to override any of the options</param>
/// <param name="cancellationToken">A cancellation token</param>
public static async Task<CosmosDbStorage> CreateAsync(string url, string authSecret, string databaseName, string containerName,
CosmosClientOptions? options = null,
CosmosDbStorageOptions? storageOptions = null,
CancellationToken cancellationToken = default)
{
if (options is { EnableContentResponseOnWrite: true })
{
throw new NotSupportedException($"{nameof(options.EnableContentResponseOnWrite)} is not supported. Please check the CosmosClientOptions object");
}
CosmosDbStorage storage = new (url, authSecret, databaseName, containerName, options, storageOptions);
await storage.InitializeAsync(cancellationToken);
return storage;
}
/// <summary>
/// Creates and returns an instance of CosmosDbStorage
/// </summary>
/// <param name="cosmosClient">An instance of CosmosClient</param>
/// <param name="databaseName">The name of the database to connect with</param>
/// <param name="containerName">The name of the collection/container on the database</param>
/// <param name="storageOptions">The CosmosDbStorageOptions object to override any of the options</param>
/// <param name="cancellationToken">A cancellation token</param>
public static async Task<CosmosDbStorage> CreateAsync(CosmosClient cosmosClient, string databaseName, string containerName,
CosmosDbStorageOptions? storageOptions = null,
CancellationToken cancellationToken = default)
{
CosmosDbStorage storage = new (cosmosClient, databaseName, containerName, storageOptions);
await storage.InitializeAsync(cancellationToken);
return storage;
}
private async Task InitializeAsync(CancellationToken cancellationToken = default)
{
if (!StorageOptions.CreateIfNotExists)
{
// check if container exists within database
try
{
Container = await Client.GetContainer(databaseName, containerName).ReadContainerAsync(cancellationToken: cancellationToken);
return;
}
catch (CosmosException ex) when (ex.StatusCode == HttpStatusCode.NotFound)
{
throw new InvalidOperationException($"Cannot find an existing container named {containerName} within database {databaseName}");
}
}
// create database
logger.Info($"Creating database : [{databaseName}]");
DatabaseResponse databaseResponse = await Client.CreateDatabaseIfNotExistsAsync(databaseName, cancellationToken: cancellationToken);
// create container
logger.Info($"Creating container : [{containerName}]");
Database resultDatabase = databaseResponse.Database;
ContainerProperties properties = new ()
{
Id = containerName,
DefaultTimeToLive = -1,
PartitionKeyPath = "/type",
PartitionKeyDefinitionVersion = PartitionKeyDefinitionVersion.V2
};
// add the index policy
Collection<CompositePath> compositeIndexes = new ()
{
new CompositePath { Path = "/name", Order = CompositePathSortOrder.Ascending },
new CompositePath { Path = "/created_on", Order = CompositePathSortOrder.Ascending }
};
properties.IndexingPolicy.CompositeIndexes.Add(compositeIndexes);
ContainerResponse containerResponse = await resultDatabase.CreateContainerIfNotExistsAsync(properties, cancellationToken: cancellationToken);
Container = containerResponse.Container;
// check if the container has ttl enabled
FeedIterator<ContainerProperties> resultSet = resultDatabase.GetContainerQueryIterator<ContainerProperties>($"select * from c where c.id = \"{Container.Id}\"");
FeedResponse<ContainerProperties> queryProperties = await resultSet.ReadNextAsync(cancellationToken);
ContainerProperties? containerSettings = queryProperties.Resource.FirstOrDefault();
// check for ttl
if (containerSettings is { DefaultTimeToLive: null or > -1 })
{
throw new NotSupportedException($"{nameof(containerSettings.DefaultTimeToLive)} is not set to -1. Please set the value to -1");
}
// check for partition key
if (containerSettings is { PartitionKeyPath: not "/type" })
{
throw new NotSupportedException($"{nameof(containerSettings.PartitionKeyPath)} is not set to '/type'");
}
// create stored procedures
Assembly assembly = Assembly.GetExecutingAssembly();
string[] storedProcedureFiles = assembly.GetManifestResourceNames().Where(n => n.EndsWith(".js")).ToArray();
foreach (string storedProcedureFile in storedProcedureFiles)
{
logger.Info($"Creating storedprocedure : [{storedProcedureFile}]");
Stream? stream = assembly.GetManifestResourceStream(storedProcedureFile);
if (stream == null)
{
throw new ArgumentNullException(nameof(stream), $"{storedProcedureFile} was not found");
}
using MemoryStream memoryStream = new ();
const int bufferSize = 81920; // default
await stream.CopyToAsync(memoryStream, bufferSize, cancellationToken);
StoredProcedureProperties sp = new ()
{
Body = Encoding.UTF8.GetString(memoryStream.ToArray()),
Id = Path.GetFileNameWithoutExtension(storedProcedureFile)?
.Split(new[] { '.' }, StringSplitOptions.RemoveEmptyEntries)
.Last()
};
const string query = "SELECT * FROM doc where doc.id = @Id";
QueryDefinition queryDefinition = new (query);
queryDefinition.WithParameter("@Id", sp.Id);
using FeedIterator<StoredProcedureProperties> iterator = Container.Scripts.GetStoredProcedureQueryIterator<StoredProcedureProperties>(queryDefinition);
if (iterator.HasMoreResults)
{
FeedResponse<StoredProcedureProperties> storedProcedure = await iterator.ReadNextAsync(cancellationToken);
if (storedProcedure.Count == 0)
{
await Container.Scripts.CreateStoredProcedureAsync(sp, cancellationToken: cancellationToken);
}
else
{
await Container.Scripts.ReplaceStoredProcedureAsync(sp, cancellationToken: cancellationToken);
}
}
stream.Close();
}
}
}