forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzureBlobsStorage.cs
409 lines (344 loc) · 15.9 KB
/
AzureBlobsStorage.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
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
// Copyright (c) Microsoft. All rights reserved.
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Azure;
using Azure.Identity;
using Azure.Storage;
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Azure.Storage.Blobs.Specialized;
using Microsoft.Extensions.Logging;
using Microsoft.KernelMemory.Diagnostics;
namespace Microsoft.KernelMemory.ContentStorage.AzureBlobs;
// TODO: a container can contain up to 50000 blocks
public class AzureBlobsStorage : IContentStorage
{
private const string DefaultContainerName = "smemory";
private const string DefaultEndpointSuffix = "core.windows.net";
private readonly BlobContainerClient _containerClient;
private readonly string _containerName;
private readonly ILogger<AzureBlobsStorage> _log;
public AzureBlobsStorage(
AzureBlobsConfig config,
ILogger<AzureBlobsStorage>? log = null)
{
this._log = log ?? DefaultLogger<AzureBlobsStorage>.Instance;
BlobServiceClient client;
switch (config.Auth)
{
case AzureBlobsConfig.AuthTypes.ConnectionString:
{
this.ValidateConnectionString(config.ConnectionString);
client = new BlobServiceClient(config.ConnectionString);
break;
}
case AzureBlobsConfig.AuthTypes.AccountKey:
{
this.ValidateAccountName(config.Account);
this.ValidateAccountKey(config.AccountKey);
var suffix = this.ValidateEndpointSuffix(config.EndpointSuffix);
client = new BlobServiceClient(new Uri($"https://{config.Account}.blob.{suffix}"), new StorageSharedKeyCredential(config.Account, config.AccountKey));
break;
}
case AzureBlobsConfig.AuthTypes.AzureIdentity:
{
this.ValidateAccountName(config.Account);
var suffix = this.ValidateEndpointSuffix(config.EndpointSuffix);
client = new BlobServiceClient(new Uri($"https://{config.Account}.blob.{suffix}"), new DefaultAzureCredential());
break;
}
case AzureBlobsConfig.AuthTypes.ManualStorageSharedKeyCredential:
{
this.ValidateAccountName(config.Account);
var suffix = this.ValidateEndpointSuffix(config.EndpointSuffix);
client = new BlobServiceClient(new Uri($"https://{config.Account}.blob.{suffix}"), config.GetStorageSharedKeyCredential());
break;
}
case AzureBlobsConfig.AuthTypes.ManualAzureSasCredential:
{
this.ValidateAccountName(config.Account);
var suffix = this.ValidateEndpointSuffix(config.EndpointSuffix);
client = new BlobServiceClient(new Uri($"https://{config.Account}.blob.{suffix}"), config.GetAzureSasCredential());
break;
}
case AzureBlobsConfig.AuthTypes.ManualTokenCredential:
{
this.ValidateAccountName(config.Account);
var suffix = this.ValidateEndpointSuffix(config.EndpointSuffix);
client = new BlobServiceClient(new Uri($"https://{config.Account}.blob.{suffix}"), config.GetTokenCredential());
break;
}
default:
this._log.LogCritical("Azure Blob authentication type '{0}' undefined or not supported", config.Auth);
throw new ContentStorageException($"Azure Blob authentication type '{config.Auth}' undefined or not supported");
}
this._containerName = config.Container;
if (string.IsNullOrEmpty(this._containerName))
{
this._containerName = DefaultContainerName;
this._log.LogError("The Azure Blob container name is empty, using default value {0}", this._containerName);
}
this._containerClient = client.GetBlobContainerClient(this._containerName);
if (this._containerClient == null)
{
this._log.LogCritical("Unable to instantiate Azure Blob container client");
throw new ContentStorageException("Unable to instantiate Azure Blob container client");
}
}
/// <inheritdoc />
public async Task CreateIndexDirectoryAsync(
string index,
CancellationToken cancellationToken = default)
{
// Note: Azure Blobs doesn't have an artifact for "directories", which are just a detail in a blob name
// so there's no such thing as creating a directory. When creating a blob, the name must contain
// the directory name, e.g. blob.Name = "dir1/subdir2/file.txt"
this._log.LogTrace("Creating container '{0}' ...", this._containerName);
await this._containerClient
.CreateIfNotExistsAsync(PublicAccessType.None, cancellationToken: cancellationToken)
.ConfigureAwait(false);
this._log.LogTrace("Container '{0}' ready", this._containerName);
}
/// <inheritdoc />
public Task DeleteIndexDirectoryAsync(string index, CancellationToken cancellationToken = default)
{
if (string.IsNullOrWhiteSpace(index))
{
throw new ContentStorageException("The index name is empty, stopping the process to prevent data loss");
}
return this.DeleteBlobsByPrefixAsync(index, cancellationToken);
}
/// <inheritdoc />
public async Task CreateDocumentDirectoryAsync(
string index,
string documentId,
CancellationToken cancellationToken = default)
{
// Note: Azure Blobs doesn't have an artifact for "directories", which are just a detail in a blob name
// so there's no such thing as creating a directory. When creating a blob, the name must contain
// the directory name, e.g. blob.Name = "dir1/subdir2/file.txt"
this._log.LogTrace("Creating container '{0}' ...", this._containerName);
await this._containerClient
.CreateIfNotExistsAsync(PublicAccessType.None, cancellationToken: cancellationToken)
.ConfigureAwait(false);
this._log.LogTrace("Container '{0}' ready", this._containerName);
}
/// <inheritdoc />
public Task EmptyDocumentDirectoryAsync(string index, string documentId, CancellationToken cancellationToken = default)
{
var directoryName = JoinPaths(index, documentId);
if (string.IsNullOrWhiteSpace(index) || string.IsNullOrWhiteSpace(documentId) || string.IsNullOrWhiteSpace(directoryName))
{
throw new ContentStorageException("The index, or document ID, or directory name is empty, stopping the process to prevent data loss");
}
return this.DeleteBlobsByPrefixAsync(directoryName, cancellationToken);
}
/// <inheritdoc />
public Task DeleteDocumentDirectoryAsync(
string index,
string documentId,
CancellationToken cancellationToken = default)
{
var directoryName = JoinPaths(index, documentId);
if (string.IsNullOrWhiteSpace(index) || string.IsNullOrWhiteSpace(documentId) || string.IsNullOrWhiteSpace(directoryName))
{
throw new ContentStorageException("The index, or document ID, or directory name is empty, stopping the process to prevent data loss");
}
return this.DeleteBlobsByPrefixAsync(directoryName, cancellationToken);
}
/// <inheritdoc />
public Task WriteFileAsync(
string index,
string documentId,
string fileName,
Stream streamContent,
CancellationToken cancellationToken = default)
{
var directoryName = JoinPaths(index, documentId);
return this.InternalWriteAsync(directoryName, fileName, streamContent, cancellationToken);
}
/// <inheritdoc />
public async Task<BinaryData> ReadFileAsync(
string index,
string documentId,
string fileName,
bool logErrIfNotFound = true,
CancellationToken cancellationToken = default)
{
var directoryName = JoinPaths(index, documentId);
var blobName = $"{directoryName}/{fileName}";
BlobClient blobClient = this.GetBlobClient(blobName);
try
{
Response<BlobDownloadResult>? content = await blobClient.DownloadContentAsync(cancellationToken).ConfigureAwait(false);
if (content != null && content.HasValue)
{
return content.Value.Content;
}
if (logErrIfNotFound) { this._log.LogError("Unable to download file {0}", blobName); }
throw new ContentStorageFileNotFoundException("Unable to fetch blob content");
}
catch (RequestFailedException e) when (e.Status == 404)
{
this._log.LogInformation("File not found: {0}", blobName);
throw new ContentStorageFileNotFoundException("File not found", e);
}
}
#region private
/// <summary>
/// Join index name and document ID, using the platform specific logic, to calculate the directory name
/// </summary>
/// <param name="index">Index name, left side of the path</param>
/// <param name="documentId">Document ID, right side of the path (appended to index)</param>
/// <returns>Index name concatenated with Document Id into a single path</returns>
private static string JoinPaths(string index, string documentId)
{
return $"{index}/{documentId}";
}
private async Task InternalWriteAsync(string directoryName, string fileName, object content, CancellationToken cancellationToken)
{
var blobName = $"{directoryName}/{fileName}";
BlobClient blobClient = this.GetBlobClient(blobName);
BlobUploadOptions options = new();
BlobLeaseClient? blobLeaseClient = null;
BlobLease? lease = null;
if (await blobClient.ExistsAsync(cancellationToken).ConfigureAwait(false))
{
blobLeaseClient = this.GetBlobLeaseClient(blobClient);
lease = await this.LeaseBlobAsync(blobLeaseClient, cancellationToken).ConfigureAwait(false);
options = new BlobUploadOptions { Conditions = new BlobRequestConditions { LeaseId = lease.LeaseId } };
}
this._log.LogTrace("Writing blob {0} ...", blobName);
long size;
switch (content)
{
case string fileContent:
await blobClient.UploadAsync(BinaryData.FromString(fileContent), options, cancellationToken).ConfigureAwait(false);
size = fileContent.Length;
break;
case Stream stream:
stream.Seek(0, SeekOrigin.Begin);
await blobClient.UploadAsync(stream, options, cancellationToken).ConfigureAwait(false);
size = stream.Length;
break;
default:
throw new ContentStorageException($"Unexpected object type {content.GetType().FullName}");
}
if (size == 0)
{
this._log.LogWarning("The file {0}/{1} is empty", directoryName, fileName);
}
await this.ReleaseBlobAsync(blobLeaseClient, lease, cancellationToken).ConfigureAwait(false);
this._log.LogTrace("Blob {0} ready, size {1}", blobName, size);
}
private async Task DeleteBlobsByPrefixAsync(string prefix, CancellationToken cancellationToken)
{
if (string.IsNullOrWhiteSpace(prefix))
{
throw new ContentStorageException("The blob prefix is empty, stopping the process to prevent data loss");
}
this._log.LogInformation("Deleting blobs at {0}", prefix);
AsyncPageable<BlobItem>? blobList = this._containerClient.GetBlobsAsync(prefix: prefix, cancellationToken: cancellationToken);
await foreach (Page<BlobItem> page in blobList.AsPages().WithCancellation(cancellationToken).ConfigureAwait(false))
{
foreach (BlobItem blob in page.Values)
{
// Skip root and empty names
if (string.IsNullOrWhiteSpace(blob.Name) || blob.Name == prefix) { continue; }
// Remove the prefix, skip root and empty names
var fileName = blob.Name.Trim('/').Substring(prefix.Trim('/').Length).Trim('/');
if (string.IsNullOrWhiteSpace(fileName)) { continue; }
// Don't delete the pipeline status file
if (fileName == Constants.PipelineStatusFilename) { continue; }
this._log.LogInformation("Deleting blob {0}", blob.Name);
Response? response = await this.GetBlobClient(blob.Name).DeleteAsync(cancellationToken: cancellationToken).ConfigureAwait(false);
if (response.Status < 300)
{
this._log.LogDebug("Delete response: {0}", response.Status);
}
else
{
this._log.LogWarning("Unexpected delete response: {0}", response.Status);
}
}
}
}
private BlobClient GetBlobClient(string blobName)
{
BlobClient? blobClient = this._containerClient.GetBlobClient(blobName);
if (blobClient == null)
{
throw new ContentStorageException("Unable to instantiate Azure Blob blob client");
}
return blobClient;
}
private BlobLeaseClient GetBlobLeaseClient(BlobClient blobClient)
{
var blobLeaseClient = blobClient.GetBlobLeaseClient();
if (blobLeaseClient == null)
{
throw new ContentStorageException("Unable to instantiate Azure blob lease client");
}
return blobLeaseClient;
}
private async Task<BlobLease> LeaseBlobAsync(BlobLeaseClient blobLeaseClient, CancellationToken cancellationToken)
{
this._log.LogTrace("Leasing blob {0} ...", blobLeaseClient.Uri);
Response<BlobLease> lease = await blobLeaseClient
.AcquireAsync(TimeSpan.FromSeconds(30), cancellationToken: cancellationToken)
.ConfigureAwait(false);
if (lease == null || !lease.HasValue)
{
throw new ContentStorageException("Unable to lease blob");
}
this._log.LogTrace("Blob {0} leased", blobLeaseClient.Uri);
return lease.Value;
}
private async Task ReleaseBlobAsync(BlobLeaseClient? blobLeaseClient, BlobLease? lease, CancellationToken cancellationToken)
{
if (lease != null && blobLeaseClient != null)
{
this._log.LogTrace("Releasing blob {0} ...", blobLeaseClient.Uri);
await blobLeaseClient
.ReleaseAsync(new BlobRequestConditions { LeaseId = lease.LeaseId }, cancellationToken: cancellationToken)
.ConfigureAwait(false);
this._log.LogTrace("Blob released {0} ...", blobLeaseClient.Uri);
}
}
private void ValidateAccountName(string value)
{
if (string.IsNullOrEmpty(value))
{
this._log.LogCritical("The Azure Blob account name is empty");
throw new ContentStorageException("The account name is empty");
}
}
private void ValidateAccountKey(string value)
{
if (string.IsNullOrEmpty(value))
{
this._log.LogCritical("The Azure Blob account key is empty");
throw new ContentStorageException("The Azure Blob account key is empty");
}
}
private void ValidateConnectionString(string value)
{
if (string.IsNullOrEmpty(value))
{
this._log.LogCritical("The Azure Blob connection string is empty");
throw new ContentStorageException("The Azure Blob connection string is empty");
}
}
private string ValidateEndpointSuffix(string value)
{
if (string.IsNullOrEmpty(value))
{
value = DefaultEndpointSuffix;
this._log.LogError("The Azure Blob account endpoint suffix is empty, using default value {0}", value);
}
return value;
}
#endregion
}