在Function App的门户页面中,登录Kudu站点(https://<yourfunctionappname>.scm.chinacloudsites.cn/)查看Function的启动日志. 发现其中有 Type Error , Gooble Protobuf Descriptor cannot be created directly. 错误信息如下: 所以问题的原因是:由于protobuf package的版本导致部署时无法正常启用runtime worker。 日志...
注:多个Function App之间应尽量避免共享Storage Account,在创建Function App的时候,需要关联独立的Storage Account. 在排查完以上每一点后,如果依旧出现 “Azure Functions runtime is unreachable”的问题,那么此时就需要分析当前所运行的Function是否由异常,是否由出现CPU 100%, Memory 100%,以及线程数等情况。 在这次...
注:多个Function App之间应尽量避免共享Storage Account,在创建Function App的时候,需要关联独立的Storage Account. 在排查完以上每一点后,如果依旧出现 “Azure Functions runtime is unreachable”的问题,那么此时就需要分析当前所运行的Function是否由异常,是否由出现CPU 100%, Memory 100%,以及线程数等情况。 在这次...
在Function App的门户页面中,登录Kudu站点(https://<yourfunctionappname>.scm.chinacloudsites.cn/)查看Function的启动日志. 发现其中有 Type Error, Gooble Protobuf Descriptor cannot be created directly. 错误信息如下: 所以问题的原因是:由于protobuf package的版本导致部署时无法正常启用runtime worker。日志信息...
在日志中,发现Function Host的Version=1.0, 这是非常老的Function Runtime Version。 而本地使用的 3.0 版本,所以从这一点判断出是版本问题导致。 需要通过设置 FUNCTIONS_EXTENSION_VERSION 参数,来指定版本信息。 参考资料 How to target Azure Functions runtime versions: https://learn.microsoft.com/en-us/az...
在日志中,发现Function Host的Version=1.0, 这是非常老的Function Runtime Version。 而本地使用的 3.0 版本,所以从这一点判断出是版本问题导致。 需要通过设置FUNCTIONS_EXTENSION_VERSION参数,来指定版本信息。 参考资料 How to target Azure Functions runtime versions:https://learn.microsoft.com/en-us/azure/...
初始化 FunctionAppRuntimeSettings 类的新实例。 FunctionAppRuntimeSettings() 初始化 FunctionAppRuntimeSettings 类的新实例。 C# publicFunctionAppRuntimeSettings(); 适用于 Azure SDK for .NET Legacy 产品版本 Azure SDK for .NETLegacy FunctionAppRuntimeSettings(String, Nullable<Boolean>, AppInsightsW...
在Function App的门户页面中,登录Kudu站点(https://<yourfunctionappname>.scm.chinacloudsites.cn/)查看Function的启动日志. 发现其中有 Type Error , Gooble Protobuf Descriptor cannot be created directly. 错误信息如下: image 所以问题的原因是:由于protobuf package的版本导致部署时无法正常启用runtime worker...
By default, function apps created in the Azure portal, by the Azure CLI, or from Visual Studio tools are set to version 4.x. You can modify this version if needed. You can only downgrade the runtime version to 1.x after you create your function app but before you add any functions....
问题解决在日志中,发现Function Host的Version=1.0, 这是非常老的Function Runtime Version。 而本地使用的 3.0 版本,所以从这一点判断出是版本问题导致。需要通过设置 FUNCTIONS_EXTENSION_VERSION 参数,来指定版本信息。 参考资料How to target Azure Functions runtime versions: learn.microsoft.com/en- 当...