热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

链路追踪SkyWalking源码分析——CollectorClientComponent客户端组件

本文主要基于SkyWalking3.2.6正式版1.概述2.Client3.ElasticSearchClient4.GRPCClient5.H2Client6.RedisClie

本文主要基于 SkyWalking 3.2.6 正式版


  • 1. 概述

  • 2. Client

  • 3. ElasticSearchClient

  • 4. GRPCClient

  • 5. H2Client

  • 6. RedisClient

  • 7. ZookeeperClient

  • 666. 彩蛋





1. 概述

本文主要分享 SkyWalking Collector Client Component 客户端组件。Collector 通过客户端,和其他服务进行通信,例如 Elastic Search 、Zookeeper 、H2 等等。

Client Component 在 SkyWalking 架构图处于如下位置( 红框 ) :


FROM https://github.com/apache/incubating-skywalking 


下面我们来看看整体的项目结构,如下图所示 :

OK,我们从接口到实现的顺序进行分享。


2. Client

org.skywalking.apm.collector.client.Client ,客户端接口。其定义接口方法如下:


  • #initialize() 方法,初始化客户端。

  • #shutdown() 方法,关闭客户端。

Client 的实现类,如下类图:


3. ElasticSearchClient

org.skywalking.apm.collector.client.elasticsearch.ElasticSearchClient ,Elastic Search 客户端。

基于 org.elasticsearch.client.transport 的 5.5.0 版本,封装 SkyWalking 需要的 Elastic Search 操作。目前用于 collector-storage-es-provider 模块。


4. GRPCClient

org.skywalking.apm.collector.client.grpc.GRPCClient ,gRPC 客户端。

基于 io.grpc.grpc-core 的 1.8.0 版本,封装 SkyWalking 需要的 gRPC 操作。目前用于 collector-remote-grpc-provider 模块。


5. H2Client

org.skywalking.apm.collector.client.h2.H2Client ,H2 数据库客户端。

基于 com.h2database.h2 的 1.4.196 版本,封装 SkyWalking 需要的 H2 数据库操作。目前用于 collector-storage-h2-provider / collector-cluster-standalone-provider 模块。


6. RedisClient

org.skywalking.apm.collector.client.redis.RedisClient ,Redis 客户端。

基于 redis.clients.jedis 的 2.9.0 版本,封装 SkyWalking 需要的 Reids 操作。预计未来用于 collector-cluster-redis-provider 模块。


7. ZookeeperClient

org.skywalking.apm.collector.client.zookeeper.ZookeeperClient ,Zookeeper 客户端。

基于 org.apache.zookeeper.zookeeper 的 3.4.10 版本,封装 SkyWalking 需要的 Zookeeper 操作。预计未来用于 collector-cluster-zookeeper-provider 模块。

 

在此我向大家推荐一个架构学习交流群。交流学习群号:993070439 里面会分享一些资深架构师录制的视频录像:有Spring,MyBatis,Netty源码分析,高并发、高性能、分布式、微服务架构的原理,JVM性能优化、分布式架构等这些成为架构师必备的知识体系,还能领取免费的学习资源。


推荐阅读
author-avatar
萝莉吴文娟
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有