Nacos为什么性能这么高?
2021-08-11 17:31:13 0 举报
Nacos为什么性能这么高?Nacos为什么可以支持高并发?
作者其他创作
大纲/内容
serviceManager.registerInstance(instance)
Pair pair = tasks.take()
服务注册流程图前半部分(把实例放入DataStore,再把实例key放入延时队列)
/nacos/v1/ns/instance
addInstance(instance)
toUpdateInstances = new HashSet<>(ips);if (ephemeral) { ephemeralInstances = toUpdateInstances;} else { persistentInstances = toUpdateInstances;}
Notifier run()
List<Instance> clusterIPs = ipMap.get(instance.getClusterName())clusterIPs.add(instance)span style=\"font-size: inherit;\
Notifier implements Runnable----------------------------------datum.value = (Instances)value datum.key=key span style=\"font-size: inherit;\
0 条评论
下一页