如何解决使用服务帐户从Azure Blob存储中批量删除文件
我正在使用azure blob存储来存储我的项目文件。
我有一个Azure Blob存储服务帐户(client_id和client_secret)。我已经使用CloudBlobClient
创建了StorageCredentialsToken
,如下所示:
StorageCredentialsToken credentialsToken = new StorageCredentialsToken("account name","access token generated uing client_id and client_secret");
CloudBlobClient blobClient = new CloudBlobClient(new URI("https://accountname.blob.core.windows.net/"),credentialsToken);
CloudBlobContainer cloudBlobContainer = blobClient.getContainerReference("conteiner name");
现在使用CloudBlobContainer
一次可以删除一个文件:
CloudBlockBlob blockBlobReference = cloudBlobContainer.getBlockBlobReference(key);
if (blockBlobReference.exists()) {
blockBlobReference.delete();
}
我找到this文档,该文档表示我们可以使用BlobBatchClient
删除多个文件。在文档中,我找不到使用服务帐户(使用由client_id和client_secret获得的访问令牌)创建BlobBatchClient
的任何方法。
是否可以删除异步调用中的文件,因为我需要删除100多个文件? 还有其他批量删除文件的解决方案吗?
SDK版本compile group: 'com.microsoft.azure',name: 'azure-storage',version: '8.6.5'
解决方法
根据Jim的评论,我已经使用访问令牌创建了BlobServiceAsyncClient
样本方法:
public void delete(List<String> files) {
String endpoint = "https://azureaccount.blob.core.windows.net/";
AccessToken accessToken = new AccessToken("access token created with client id and client secret",OffsetDateTime.now().plusHours(1));
BlobServiceAsyncClient storageClient = new BlobServiceClientBuilder().credential(request -> Mono.just(accessToken))
.endpoint(endpoint)
.buildAsyncClient();
BlobBatchClient blobBatchClient = new BlobBatchClientBuilder(storageClient).buildClient();
List<String> blobUrls = new ArrayList<>();
files.forEach(name -> {
try {
String blobUrl = endpoint + "conteinerName/" + URLEncoder.encode(name,"UTF-8");
blobUrls.add(blobUrl);
} catch (UnsupportedEncodingException e) {
LOGGER.debug("Can not encode blob name={}",name);
}
});
blobBatchClient.deleteBlobs(blobUrls,DeleteSnapshotsOptionType.INCLUDE).forEach(response -> {
LOGGER.debug("File with name={} deleted,status code={}",response.getRequest().getUrl(),response.getStatusCode());
}
);
}
等级依赖性:
compile group: 'com.azure',name: 'azure-storage-blob',version: '12.0.0'
compile group: 'com.azure',name: 'azure-storage-blob-batch',version: '12.6.0'
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。