This article introduces how to quickly create a cluster instance using Kubernetes command line tools and complete a hello world practice. The previous[......] 继续阅读
This article introduces how to quickly create a cluster instance using Kubernetes command line tools and complete a hello world practice. The previous[......] 继续阅读
本篇介绍利用 kubernetes 的命令行工具,快速创建集群实例,完成 hello world 实践。 上一篇试用 minikube 去搭建集群,这一篇将介绍通过 kubeadm 去操作。 命令行工具 主要有三个工具,命令行工具使用 kube 前缀命名。 kubeadm:用来初始化集群的指令。 [......] 继续阅读
Minikube 打开 https://github.com/kubernetes/minikube/releases/tag/v1.19.0 下载最新版本的二进制软件包(deb、rpm包),再使用 apt 或 yum 安装。 PS:买台香港的服务器吧,或者白嫖 Google 、Azure 的试用额[......] 继续阅读
Getting Started Jaeger Deploying Jaeger Understanding Jaeger Client Go through an Example Understanding trace and span Tracer Configuration Sampler C[......] 继续阅读
从何说起 Jaeger 部署 Jaeger 从示例了解 Jaeger Client Go 了解 trace、span tracer 配置 Sampler 配置 Reporter 配置 分布式系统与span 怎么调、怎么传 HTTP,跨进程追踪 客户端 Web 服务端 Tag 、 Log 和 R[......] 继续阅读
Go GRPC Introduction Go GRPC Introduction 1. Installation Packages 2. gRPC Server 3. gRPC Client 4. Compile and Run 5. Others GRPC Protobuf Buff[......] 继续阅读
Go GRPC 入门 Go GRPC 入门 1,安装包 2,gRPC 服务端 3,gRPC 客户端 4,编译运行 5,其它 GRPC Protobuf buffer 字段类型 字段规则 Protobuf gRPC 四种服务方法 编译 proto 1,安装包 grpc gola[......] 继续阅读
In Go language, when we need to import a package, we can use import: import ( "io" ) For standard libraries such as bufio, time, net, etc.[......] 继续阅读
在 Go 语言中,当我们需要引入一个包时,可以使用 import: import ( "io" ) 对于标准库,如 bufio、time、net 等,只需要一个名字即可引入,就像 C 语言的 #include 。 如果我们要引入自己编写的包或第三方源码,则会有些细节需要留[......] 继续阅读