gpt4 book ai didi

Azure Functions 方法未找到错误

转载 作者:行者123 更新时间:2023-12-01 12:21:15 25 4
gpt4 key购买 nike

我正在尝试设置一个将 blob 导入到 azure 媒体服务中的 azure 函数。但是当我尝试在 Debug模式下运行该函数时,某些断点永远不会被命中,然后我收到此错误

Microsoft.Azure.WebJobs.Host.FunctionInvocationException : Exception while executing function: Functions.EncodeJob ---> System.MissingMethodException : Method not found: 'System.Threading.Tasks.Task Microsoft.WindowsAzure.MediaServices.Client.CopyBlobHelpers.CopyBlobAsync(Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob, Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob, Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptions, System.Threading.CancellationToken)'. at MyApp.WebTasks.EncodeJob.EncodeJobTrigger.CreateAssetFromBlob(CloudBlob sourceBlob,CloudStorageAccount destinationStorageAccount) at C:\Source\Quickflix\MyApp.webtasks\MyApp.WebTasks\EncodeJob\EncodeJobTrigger.cs : 164 at.....(truncated due to length)

看来原因是这里的这个 block

            // Call the CopyBlobHelpers.CopyBlobAsync extension method to copy blobs.
using (var task =
CopyBlobHelpers.CopyBlobAsync((CloudBlockBlob)sourceBlob,
(CloudBlockBlob)destinationBlob,
new BlobRequestOptions(),
CancellationToken.None))
{
task.Wait();
}

当我评论这个 block 时,我能够到达一个断点,该断点被困在它所属的方法中。当它没有被注释掉时,断点永远不会被命中,我会得到这个错误。当我进入 CreateAssetFromBlob 时,异常似乎就会发生,而不是在实际调用 CopyBlobAsync 的行上。我已检查所有 nuget 包是否都是最新的,并且 bin 目录中的 Microsoft.WindowsAzure.MediaServices.Client.Extensions 版本是否相同。该项目构建得很好,所以我不确定我缺少什么。我很困惑为什么它会这样,我是否错过了一些明显的东西?

因此,使用此示例将项目设置为 Web 应用程序 https://github.com/lindydonna/FunctionsAsWebProject这似乎工作正常,我可以在本地调试并使用 git 部署到 azure 函数应用程序。

对于更完整的代码片段,这几乎是我所拥有的

using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.WindowsAzure.MediaServices.Client;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Blob;
using Newtonsoft.Json;
using MyApp.Integration.Services;
using MyApp.Logging;

namespace MyApp.WebTasks.EncodeJob
{
public class EncodeJobTrigger
{
private static CloudMediaContext _context;
private static MediaServicesCredentials _cachedCredentials;

public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
var blob = Encode("vidcontainer", "vid.mp4");

return req.CreateResponse(HttpStatusCode.OK, JsonConvert.SerializeObject(blob.Exists()));
}

public static CloudBlob Encode(string containerName, string blobPath)
{
var logger = new DebugLogger();
var amsConnectionString = "connectionstring";
var blobStorageService = new AzureBlobStorageService(amsConnectionString, logger);
var destStorageAccount = CloudStorageAccount.Parse("connectionstring");

string mediaServicesAccountName = "myaccountname";
string mediaServicesAccountKey = "mykey";

_cachedCredentials = new MediaServicesCredentials(
mediaServicesAccountName,
mediaServicesAccountKey);

_context = new CloudMediaContext(_cachedCredentials);
var blob = blobStorageService.FindBlobInContainer(containerName, blobPath);

ImportBlobIntoAms(blob, destStorageAccount);

return blob;

}

public static IAsset ImportBlobIntoAms(CloudBlob blob, CloudStorageAccount destStorageAccount)
{

var asset = CreateAssetFromBlob(blob, destStorageAccount);
return asset;
}

public static IAsset CreateAssetFromBlob(CloudBlob sourceBlob, CloudStorageAccount destinationStorageAccount)
{

CloudBlobClient destBlobStorage = destinationStorageAccount.CreateCloudBlobClient();

// Create a new asset.
IAsset asset = _context.Assets.Create("NewAsset_" + Guid.NewGuid(), AssetCreationOptions.None);

IAccessPolicy writePolicy = _context.AccessPolicies.Create("writePolicy",
TimeSpan.FromHours(24), AccessPermissions.Write);

ILocator destinationLocator =
_context.Locators.CreateLocator(LocatorType.Sas, asset, writePolicy);

// Get the asset container URI and Blob copy from mediaContainer to assetContainer.
CloudBlobContainer destAssetContainer =
destBlobStorage.GetContainerReference((new Uri(destinationLocator.Path)).Segments[1]);

if (destAssetContainer.CreateIfNotExists())
{
destAssetContainer.SetPermissions(new BlobContainerPermissions
{
PublicAccess = BlobContainerPublicAccessType.Blob
});
}

var assetFile = asset.AssetFiles.Create(sourceBlob.Name);

ICloudBlob destinationBlob = destAssetContainer.GetBlockBlobReference(assetFile.Name);

// Call the CopyBlobHelpers.CopyBlobAsync extension method to copy blobs.
using (var task =
CopyBlobHelpers.CopyBlobAsync((CloudBlockBlob)sourceBlob,
(CloudBlockBlob)destinationBlob,
new BlobRequestOptions(),
CancellationToken.None))
{
task.Wait();
}

assetFile.ContentFileSize = (sourceBlob as ICloudBlob).Properties.Length;
assetFile.Update();
Console.WriteLine("File {0} is of {1} size", assetFile.Name, assetFile.ContentFileSize);
// }

asset.Update();

destinationLocator.Delete();
writePolicy.Delete();

// Set the primary asset file.
// If, for example, we copied a set of Smooth Streaming files,
// set the .ism file to be the primary file.
// If we, for example, copied an .mp4, then the mp4 would be the primary file.
var ismAssetFiles = asset.AssetFiles.ToList().FirstOrDefault(f => f.Name.Equals(sourceBlob.Name, StringComparison.OrdinalIgnoreCase));

// The following code assigns the first .ism file as the primary file in the asset.
// An asset should have one .ism file.
ismAssetFiles.IsPrimary = true;
ismAssetFiles.Update();

return asset;
}
}
}

更新 1因此,我将此 block /函数更新为异步,并且不等待任务,但我仍然遇到相同的错误。更新后的代码如下所示。

            await CopyBlobHelpers.CopyBlobAsync((CloudBlockBlob) sourceBlob,
(CloudBlockBlob) destinationBlob,
new BlobRequestOptions(),
CancellationToken.None);

她也是 nugets packages.config

<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net45" />
<package id="Microsoft.Azure.KeyVault.Core" version="2.0.4" targetFramework="net45" />
<package id="Microsoft.Azure.WebJobs" version="2.0.0" targetFramework="net45" />
<package id="Microsoft.Azure.WebJobs.Core" version="2.0.0" targetFramework="net45" />
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.Data.Edm" version="5.8.2" targetFramework="net45" />
<package id="Microsoft.Data.OData" version="5.8.2" targetFramework="net45" />
<package id="Microsoft.Data.Services.Client" version="5.8.2" targetFramework="net45" />
<package id="Microsoft.Net.Compilers" version="1.0.0" targetFramework="net45" developmentDependency="true" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
<package id="System.ComponentModel.EventBasedAsync" version="4.0.11" targetFramework="net45" />
<package id="System.Dynamic.Runtime" version="4.0.0" targetFramework="net45" />
<package id="System.IdentityModel.Tokens.Jwt" version="4.0.2.206221351" targetFramework="net45" />
<package id="System.Linq.Queryable" version="4.0.0" targetFramework="net45" />
<package id="System.Net.Requests" version="4.0.11" targetFramework="net45" />
<package id="System.Spatial" version="5.8.2" targetFramework="net45" />
<package id="TransientFaultHandling.Core" version="5.1.1209.1" targetFramework="net45" />
<package id="windowsazure.mediaservices" version="3.8.0.5" targetFramework="net45" />
<package id="windowsazure.mediaservices.extensions" version="3.8.0.3" targetFramework="net45" />
<package id="WindowsAzure.Storage" version="8.1.1" targetFramework="net45" />
</packages>

最佳答案

这可能是由于您使用的存储 SDK 版本不匹配造成的。您可以降级到7.2.1并重试吗?

关于Azure Functions 方法未找到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43860054/

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