gpt4 book ai didi

c# - 2 个存储帐户之间的 Azure CloudBlob StartCopy 方法 - 404 错误

转载 作者:行者123 更新时间:2023-12-03 02:29:41 25 4
gpt4 key购买 nike

所以我一直在浏览https://learn.microsoft.com/en-us/learn/modules/copy-blobs-from-command-line-and-code/7-move-blobs-using-net-storage-client我正在尝试将 blob 从一个存储帐户复制到另一个存储帐户(这两个帐户都通过 Azurite 作为本地开发环境模拟器在我的计算机上本地运行)。尝试了解有关使用 C# 的 Azure SDK 的更多信息。

我能够毫无问题地连接到两个帐户,并且到目前为止我的程序可以上传/下载 blob 文件并创建容器。但是,当我在 Visual Studio 中执行程序时,它似乎会到达包含 StartCopy(或 StartCopyAsync)的行并引发 Web 异常:404 Not Found 错误。在异常情况下,当我展开 RequestInformation 时,ErrorCode 为“ContainerNotFound”,HttpStatusMessage 为“指定的容器不存在”。不知道为什么我会收到这些消息,因为我可以验证容器是否存在,而且我事先用文件和容器预先填充了源和目标 Azure 存储,只是为了看看发生了什么。不幸的是,同样的错误。然后,我尝试将容器和 blob 的公共(public)访问级别设置为公共(public)。不幸的是,这也是行不通的。应该发生的是,它应该只是将 blob 文件从源复制到目标,然后就结束了。

起初,我想也许我没有配置正确的东西,但事实似乎并非如此,或者至少我是这么认为的?然后我尝试通过 Microsoft 将 1 个本地存储帐户模拟器之间的文件复制到实际的在线 Azure 存储(学生)帐户,但效果不佳。我能够在同一帐户内的 2 个容器之间进行复制,因此这部分不是问题,但尝试在 2 个不同帐户之间进行复制却让我“苦恼了几个小时”。

代码应该与本文第一个链接中提到的 Microsoft 教程中的完成方式非常相似。不太清楚为什么我总是收到此 404 错误。暂时关闭了我的防火墙,以防造成麻烦,但这并没有什么区别。我还尝试了其他人的代码(尽管必须稍微修改它才能在我的情况下工作),但我仍然遇到同样的问题。所以也许我这里的设置有问题?

在我的 Azurite 本地服务器的控制台中,我可以看到服务器 2(复制过程的目标服务器)具有:

本地源服务器

127.0.0.1 - - [11/Jan/2021:23:28:39 +0000] "PUT /devstoreaccount1/source/NewBlob HTTP/1.1" 201 -
127.0.0.1 - - [11/Jan/2021:23:28:39 +0000] "HEAD /devstoreaccount1/source/NewBlob HTTP/1.1" 200 0

本地目标服务器

127.0.0.1 - - [11/Jan/2021:23:28:39 +0000] "PUT /devstoreaccount1/destination/NewBlob HTTP/1.1" 404 -

代码:

        static async Task Main(string[] args)
{
string storageKey = "AccountName=devstoreaccount1;AccountKey=<MY_ACCOUNT_KEY_GOES_HERE>;DefaultEndpointsProtocol=http;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;";

string storageKey2 = "AccountName=devstoreaccount1;AccountKey=<MY_ACCOUNT_KEY_GOES_HERE>;DefaultEndpointsProtocol=http;BlobEndpoint=http://127.0.0.1:10100/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10101/devstoreaccount1;";

// Retrieve storage account from connection string.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(storageKey);
CloudStorageAccount storageAccount2 = CloudStorageAccount.Parse(storageKey2);

//create client from storage account
CloudBlobClient sourceClient = storageAccount.CreateCloudBlobClient();
CloudBlobClient sourceClient2 = storageAccount2.CreateCloudBlobClient();

//declare source container and create if doesn't exist
CloudBlobContainer sourceContainer = sourceClient.GetContainerReference("source");
await sourceContainer.CreateIfNotExistsAsync();

//upload local file to azurite 1
CloudBlockBlob uploadBlob = sourceContainer.GetBlockBlobReference("NewBlob");
await uploadBlob.UploadFromFileAsync("NewBlob");

// designate source blob as the new uploaded file
ICloudBlob sourceBlob = await sourceContainer.GetBlobReferenceFromServerAsync("NewBlob");

//declare destination container and create it if it doesn't exist
CloudBlobContainer destBlobContainer = sourceClient2.GetContainerReference("destination");
await destBlobContainer.CreateIfNotExistsAsync();

//start copy process of blob between 2 servers
CloudBlockBlob destBlob = destBlobContainer.GetBlockBlobReference(sourceBlob.Name);
await destBlob.StartCopyAsync(new Uri(GetSharedAccessUri(sourceBlob.Name, sourceContainer)));

// Display the status of the blob as it is copied
ICloudBlob destBlobRef = await destBlobContainer.GetBlobReferenceFromServerAsync(destBlob.Name);
while (destBlobRef.CopyState.Status == CopyStatus.Pending)
{
Console.WriteLine($"Blob: {destBlobRef.Name}, Copied: {destBlobRef.CopyState.BytesCopied ?? 0} of {destBlobRef.CopyState.TotalBytes ?? 0}");
await Task.Delay(500);
destBlobRef = await destBlobContainer.GetBlobReferenceFromServerAsync(destBlobRef.Name);
}
Console.WriteLine($"Blob: {destBlob.Name} Complete");

}

// Create a SAS token for the source blob, to enable it to be read by the StartCopyAsync method
private static string GetSharedAccessUri(string blobName, CloudBlobContainer container)
{
DateTime toDateTime = DateTime.Now.AddMinutes(60);

SharedAccessBlobPolicy policy = new SharedAccessBlobPolicy
{
Permissions = SharedAccessBlobPermissions.Read,
SharedAccessStartTime = null,
SharedAccessExpiryTime = new DateTimeOffset(toDateTime)
};

CloudBlockBlob blob = container.GetBlockBlobReference(blobName);
string sas = blob.GetSharedAccessSignature(policy);

return blob.Uri.AbsoluteUri + sas;
}


Thanks in advance!

最佳答案

您上面的代码在 Azure Cloud 上完美运行,我也在本地基于存储模拟器测试了您的代码。根据你的代码逻辑我查不出根本原因,没关系。

无论如何,您的问题似乎已在 Azure Cloud 上得到解决,我认为这是由于本地存储模拟器的一些错误所致。

关于c# - 2 个存储帐户之间的 Azure CloudBlob StartCopy 方法 - 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65676081/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com