gpt4 book ai didi

c# - Service Fabric Mesh 中的 Actor 不工作 - 无法加载 DLL FabricRuntime.dll

转载 作者:行者123 更新时间:2023-12-03 05:47:23 26 4
gpt4 key购买 nike

我正在研究 Service Fabric Mesh。到目前为止已构建了一个 ASP.NETCORE API 应用程序 - 运行良好。

现在我正在尝试在新项目中添加一个(预定的)Actor,如 this tutorial 中所述。 。一切都构建得很好,但在启动时我得到以下异常:

private static void Main()
{
try
{
ActorRuntime.RegisterActorAsync<SchedulingActor>((context, actorType) => new SchedulingActorService<ISchedulingActor>(context, actorType)).Wait();
}
catch
{
throw;
}
}

System.TypeInitializationException:“‘Microsoft.ServiceFabric.Actors.Runtime.ActorRuntime’的类型初始值设定项引发异常。”

InnerException:DllNotFoundException:无法加载 DLL“FabricRuntime.dll”或其依赖项之一:找不到指定的模块。

最佳答案

从最近announcement SF MESH 的负责人表示,MESH 尚不支持 Actor 框架,并将在未来版本中提供,因为它需要访问 MESH 中不可用的底层平台资源。

SF Mesh is a multi-tenant service and so does not allow any access to the underlying VMs and all the deployments into SF Mesh are in containers. Services using actors, have dependencies that need access to the Nodes, and so currently there is no easy way to deploy them to SF Mesh, however providing a way for the customers to migrate their services from the SF clusters to SF mesh is in the roadmap and is planned to land prior to GA.

PS:这是在页面底部的问答中说的。

关于c# - Service Fabric Mesh 中的 Actor 不工作 - 无法加载 DLL FabricRuntime.dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52592668/

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