在进行入com.alibaba.csp.sentinel.slots.clusterbuilder.ClusterBuilderSlot#entry方法的时候
public void entry(Context context, ResourceWrapper resourceWrapper, DefaultNode node, int count, Object... args) throws Throwable { if (clusterNode == null) { synchronized (lock) { if (clusterNode == null) { // Create the cluster node. clusterNode = Env.nodeBuilder.buildClusterNode(); HashMap<ResourceWrapper, ClusterNode> newMap = new HashMap<ResourceWrapper, ClusterNode>(16); newMap.putAll(clusterNodeMap); newMap.put(node.getId(), clusterNode); clusterNodeMap = newMap; } } } node.setClusterNode(clusterNode);
/*
* if context origin is set, we should get or create a new {@link Node} of
* the specific origin.
*/
if (!"".equals(context.getOrigin())) {
Node originNode = node.getClusterNode().getOriginNode(context.getOrigin());
context.getCurEntry().setOriginNode(originNode);
}
fireEntry(context, resourceWrapper, node, count, args);
}
clusterNode并没有根据resourceWrapper从全局clusterNodeMap中get出来而是直接判断是否为null。为null就new一个新的clusterNode,然后put进clusterNodeMap中,这样可能覆盖了clusterNodeMap原本resourceWrapper对应的统计信息,任意时刻一个resourceWrapper在clusterNodeMap只保留了一个线程的统计信息。这样会不会导致MetricTimerListener在统计的时候数据丢失?控制台看到数据误差较大?
public void run() { Map<Long, List> maps = new TreeMap<Long, List>();
for (Entry<ResourceWrapper, ClusterNode> e : ClusterBuilderSlot.getClusterNodeMap().entrySet()) {
String name = e.getKey().getName();
ClusterNode node = e.getValue();
Map<Long, MetricNode> metrics = node.metrics();
for (Entry<Long, MetricNode> entry : metrics.entrySet()) {
long time = entry.getKey();
MetricNode metricNode = entry.getValue();
metricNode.setResource(name);
if (maps.get(time) == null) {
maps.put(time, new ArrayList<MetricNode>());
}
List<MetricNode> nodes = maps.get(time);
nodes.add(entry.getValue());
}
}
if (!maps.isEmpty()) {
for (Entry<Long, List<MetricNode>> entry : maps.entrySet()) {
try {
metricWriter.write(entry.getKey(), entry.getValue());
} catch (Exception e) {
RecordLog.info("write metric error: ", e);
}
}
}
}
原提问者GitHub用户linlinisme
相关类的解释:https://github.com/alibaba/Sentinel/wiki/Sentinel-核心类解析
原回答者GitHub用户sczyh30
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。