我有一个监听blob存储的函数,它经常插入,但有时很少有函数空闲。
它的设置方式是它在bin文件夹中包含一些自定义DLL,而实际的函数本身只是调用其中一个程序集中的run方法。这很好用。大部分时间都是。
我的问题是,如果我让它运行一段时间,它将突然无法加载我的自定义程序集,并显示以下错误消息:
Exception while executing function: Functions.EventHandlerFunctionMicrosoft.Azure.WebJobs.Host.FunctionInvocationException : Exception while executing function: Functions.EventHandlerFunction ---> System.Reflection.TargetInvocationException : Exception has been thrown by the target of an invocation. ---> System.TypeLoadException : Could not load type 'MyAssembly.MyFunctions.EventHandlerFunction' from assembly 'MyAssembly.MyFunctions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. at async Submission#0.Run(Stream blob,String name,TraceWriter log) at : 19 at System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start[TStateMachine](TStateMachine& stateMachine) at Submission#0.Run(Stream blob,String name,TraceWriter log) End of inner exception at System.RuntimeMethodHandle.InvokeMethod(Object target,Object[] arguments,Signature sig,Boolean constructor) at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj,Object[] parameters,Object[] arguments) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj,BindingFlags invokeAttr,Binder binder,Object[] parameters,CultureInfo culture) at async Microsoft.Azure.WebJobs.Script.Description.DotNetFunctionInvoker.InvokeCore(Object[] parameters,FunctionInvocationContext context) at async Microsoft.Azure.WebJobs.Script.Description.FunctionInvokerBase.Invoke(Object[] parameters) at async Microsoft.Azure.WebJobs.Host.Executors.FunctionInvoker`1.InvokeAsync[TReflected](Object[] arguments) at async Microsoft.Azure.WebJobs.Host.Executors.FunctionExecutor.InvokeAsync(IFunctionInvoker invoker,Object[] invokeParameters,CancellationTokenSource timeoutTokenSource,CancellationTokenSource functionCancellationTokenSource,Boolean throwOnTimeout,TimeSpan timerInterval,IFunctionInstance instance) at async Microsoft.Azure.WebJobs.Host.Executors.FunctionExecutor.ExecuteWithWatchersAsync(IFunctionInstance instance,IReadOnlyDictionary`2 parameters,TraceWriter traceWriter,CancellationToken…
从堆栈跟踪中可以看出,我的程序集(重命名为MyAssembly.MyFunctions)突然无法加载。它将设法恢复它自己,但停机时间和"掉线" blob大约是我的blob的1/5。
这似乎很愚蠢。虽然我意识到我可以通过对异常做出反应并重新插入blob来缓解这种情况,但这似乎是浪费资源。
我的猜测是,天蓝色函数运行时有时无法在空闲后加载dll。有没有人经历过这个并找到了解决问题的方法?
更新:我的功能如下所示:
#r "MyAssembly.MyFunctions.dll"
public static async Task Run(Stream blob, string name, TraceWriter log)
{
try {
await new EventHandlerFunction().Run(name);
} catch (Exception e) {
log.Error(e.Message);
}
}
答案 0 :(得分:2)
对任何绊脚石的人:
答案是相同程序集的多个版本位于同一个功能应用程序中,位于不同的bin文件夹(不同的功能)中。显然,在加载程序集时有时会找到不同的版本,这会导致上述错误。
有两种解决方案: