歡迎光臨
每天分享高質量文章

鏈路追蹤 SkyWalking 原始碼分析 —— Collector Client Component 客戶端元件

本文主要基於 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 模組。

贊(0)

分享創造快樂