独立群集上的 Service Fabric 可靠性
Service Fabric Reliability on Standalone Cluster
我是 运行 跨三节点独立集群的 Service Fabric。每个集群都位于公司企业云环境中的单独虚拟机上。最近我的两个节点所在的虚拟机被删除(其中一个被删除的机器是创建集群的机器)。删除后,我尝试访问剩余计算机上的 Service Fabric Explorer,结果却出现 "Page Cannot be found" 错误。此外,Connect-ServiceFabricCluster
(用于尝试连接到剩余的节点)和 Get-ServiceFabricApplication
Powershell 命令失败说明:
"A communication error caused the operation to fail."
和
"No cluster endpoint is reachable, please check if there is a connectivity/firewall/DNS issue."
分别。
Service Fabric 的自动故障转移功能在什么条件下可以在独立群集上运行?如果几个节点突然同时宕机,是否可以采取任何步骤,以便我仍然能够从独立群集上的其余节点访问 Service Fabric?
集群服务 运行 作为集群上的有状态服务。对于有状态服务,您需要最少数量的节点 运行ning,以保证其可用性和保持状态的能力。最小节点数等于 partition/service 的目标副本集数。
如果可用节点数少于最小数量,您的(集群)服务将停止工作。
更多信息here。
The cluster size is determined by your business needs. However, you
must have a minimum cluster size of three nodes (machines or virtual
machines).
我是 运行 跨三节点独立集群的 Service Fabric。每个集群都位于公司企业云环境中的单独虚拟机上。最近我的两个节点所在的虚拟机被删除(其中一个被删除的机器是创建集群的机器)。删除后,我尝试访问剩余计算机上的 Service Fabric Explorer,结果却出现 "Page Cannot be found" 错误。此外,Connect-ServiceFabricCluster
(用于尝试连接到剩余的节点)和 Get-ServiceFabricApplication
Powershell 命令失败说明:
"A communication error caused the operation to fail."
和
"No cluster endpoint is reachable, please check if there is a connectivity/firewall/DNS issue."
分别。
Service Fabric 的自动故障转移功能在什么条件下可以在独立群集上运行?如果几个节点突然同时宕机,是否可以采取任何步骤,以便我仍然能够从独立群集上的其余节点访问 Service Fabric?
集群服务 运行 作为集群上的有状态服务。对于有状态服务,您需要最少数量的节点 运行ning,以保证其可用性和保持状态的能力。最小节点数等于 partition/service 的目标副本集数。
如果可用节点数少于最小数量,您的(集群)服务将停止工作。
更多信息here。
The cluster size is determined by your business needs. However, you must have a minimum cluster size of three nodes (machines or virtual machines).