github.com/aacfactory/fns@v1.2.86-0.20240310083819-80d667fc0a17/docs/cluster_zh.md (about) 1 # 集群 2 3 --- 4 5 ## 固定成员 6 7 集群中只会发现指定的成员节点,不过节点之间会共享已发现的节点。 8 9 Config: 10 11 ```yaml 12 cluster: 13 devMode: false # 如果为真,则当前节点不会注册到集群中 14 nodesProxyAddress: "" # 在开发模式下,如果当前节点不能通过成员地址访问成员时,可以使用代理的方式访问 15 kind: "members" # 集群成员发现者类型 16 client: 17 maxIdleConnSeconds: 10 18 maxConnsPerHost: 512 19 maxIdleConnsPerHost: 64 20 requestTimeoutSeconds: 10 21 options: 22 members: 23 - "192.168.11.1:8080" 24 - "192.168.11.2:8080" 25 ``` 26 27 ## DOCKER SWARM 28 29 阅读 [文档](https://github.com/aacfactory/fns-contrib/tree/main/cluster/swarm) 获取更多信息。 30 31 ## KUBERNETES 32 33 阅读 [文档](https://github.com/aacfactory/fns-contrib/tree/main/cluster/kubernetes) 获取更多信息。