Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在Azure服务结构中设置可靠性?_Azure_Azure Service Fabric - Fatal编程技术网

如何在Azure服务结构中设置可靠性?

如何在Azure服务结构中设置可靠性?,azure,azure-service-fabric,Azure,Azure Service Fabric,如何设置目标副本集计数为5的set system services?如果我将节点数增加到5,这是否足够 Silver-使用目标副本集计数运行系统服务 五 实际上并非如此,节点可靠性级别由服务结构资源决定,因此需要使用某种方法修改SF资源上的节点类型可靠性级别。使用可能是最简单的方法 仅将VM扩展到5个实例不会改变其可靠性级别系统服务副本计数是根据您在创建群集时选择的可靠性层定义的 增加节点数将增加服务数据的耐久性,而不是可靠性,这可能会间接提高可靠性,因为在节点发生故障时,您有更多节点来分配负

如何设置目标副本集计数为5的set system services?如果我将节点数增加到5,这是否足够

Silver-使用目标副本集计数运行系统服务 五


实际上并非如此,节点可靠性级别由服务结构资源决定,因此需要使用某种方法修改SF资源上的节点类型可靠性级别。使用可能是最简单的方法


仅将VM扩展到5个实例不会改变其可靠性级别

系统服务副本计数是根据您在创建群集时选择的可靠性层定义的

增加节点数将增加服务数据的耐久性,而不是可靠性,这可能会间接提高可靠性,因为在节点发生故障时,您有更多节点来分配负载和接管新副本,但不会增加满足可靠性层要求的副本数量

正确的方法是在创建集群或更新现有集群期间设置可靠性

要更新现有集群的可靠性,必须运行以下命令

从:

可靠性层用于设置系统的副本数量 要在主服务器上的此群集中运行的系统服务 节点类型。复制副本的数量越多,系统就越可靠 系统服务在您的群集中

可靠性层可以采用以下值:

Platinum - Run the System services with a target replica set count of nine
Gold - Run the System services with a target replica set count of seven
Silver - Run the System services with a target replica set count of five
Bronze - Run the System services with a target replica set count of three