-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.xml
80 lines (80 loc) · 6 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>深白色9527</title>
<link>https://shenbaise9527.com/</link>
<description>深白色9527</description>
<generator>Hugo -- gohugo.io</generator><language>zh-CN</language><managingEditor>zhouyingan@gmail.com (深白色)</managingEditor>
<webMaster>zhouyingan@gmail.com (深白色)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Sat, 20 Nov 2021 19:56:51 +0800</lastBuildDate>
<atom:link href="https://shenbaise9527.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Golang Private Mod</title>
<link>https://shenbaise9527.com/2021/11/20/golang-private-mod/</link>
<pubDate>Sat, 20 Nov 2021 19:56:51 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2021/11/20/golang-private-mod/</guid>
<description><![CDATA[前言 目前使用go的工程越来越多,每个工程都有很多重复的逻辑,需要把重复的进行提炼统一起来,就在bitbucket上新建了一个新的仓库fram]]></description>
</item><item>
<title>Golang与C语言相互调用</title>
<link>https://shenbaise9527.com/2021/07/24/golang-c-call/</link>
<pubDate>Sat, 24 Jul 2021 21:56:42 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2021/07/24/golang-c-call/</guid>
<description><![CDATA[主要是描述Go语言调用易盛行情API的动态库过程中,一些需要注意的地方。 类型对应关系 C类型 调用方法 Go类型 字节数 char C.char byte 1 signed char C.schar int8 1 unsigned char C.uchar uint8 1]]></description>
</item><item>
<title>golang字符串解析</title>
<link>https://shenbaise9527.com/2021/07/24/golang-string/</link>
<pubDate>Sat, 24 Jul 2021 16:57:37 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2021/07/24/golang-string/</guid>
<description><![CDATA[字符编码 计算机世界中只能识别二进制,所有的信息最终都会表示成一个二进制的字符串,每一个二进制位有0和1两种状态. 当在计算机中存储字符&rsq]]></description>
</item><item>
<title>分布式一致性算法:Raft</title>
<link>https://shenbaise9527.com/2021/01/05/raft-consensus-algorithm/</link>
<pubDate>Tue, 05 Jan 2021 21:33:07 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2021/01/05/raft-consensus-algorithm/</guid>
<description><![CDATA[简介 一致性算法允许一个集群作为一个整体来工作,并允许集群中的某些节点发生故障,而不影响集群的整体运作.因此一致性算法在构建可靠的大型软件系统]]></description>
</item><item>
<title>Etcd操作指南</title>
<link>https://shenbaise9527.com/2020/12/23/etcd-operation-guide/</link>
<pubDate>Wed, 23 Dec 2020 20:58:37 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2020/12/23/etcd-operation-guide/</guid>
<description><![CDATA[简介 etcd是强一致性的,分布式KV存储,为分布式系统或集群提供可靠的数据存储.底层基于raft共识算法,可以在网络分区情况下正常进行lea]]></description>
</item><item>
<title>服务启动时连接etcd集群的告警分析</title>
<link>https://shenbaise9527.com/2020/12/21/etcd-application-start-warn/</link>
<pubDate>Mon, 21 Dec 2020 21:18:21 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2020/12/21/etcd-application-start-warn/</guid>
<description><![CDATA[问题起因 通过docker-compose部署了3个节点的etcd集群,服务在启动时会随机报0个、1个或2个告警信息,信息如下: 1 2 3 4 5 6 7]]></description>
</item><item>
<title>Etcd配置错误后的分析</title>
<link>https://shenbaise9527.com/2020/12/19/etcd-configure-error/</link>
<pubDate>Sat, 19 Dec 2020 11:09:19 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2020/12/19/etcd-configure-error/</guid>
<description><![CDATA[问题起因 在采用开源框架go-zero开发的过程中,服务在启动一段时间后控制台一直在报如下警告信息: 1 2 3 4 5 6 7 8 9 { "level": "warn", "ts": "2020-12-15T16:43:21.709+0800", "caller": "clientv3/retry_interceptor.go:62", "msg": "retrying of unary invoker]]></description>
</item><item>
<title>Jaeger实战</title>
<link>https://shenbaise9527.com/2020/12/17/opentracing-jaeger-action/</link>
<pubDate>Thu, 17 Dec 2020 21:29:12 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2020/12/17/opentracing-jaeger-action/</guid>
<description><![CDATA[部署 基于Docker 所有组件基于Docker,后端存储采用Elasticsearch.docker-compose.yml文件如下: 1 2 3 4]]></description>
</item><item>
<title>Jaeger指南</title>
<link>https://shenbaise9527.com/2020/12/14/opentracing-jaeger-guide/</link>
<pubDate>Mon, 14 Dec 2020 21:06:14 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2020/12/14/opentracing-jaeger-guide/</guid>
<description><![CDATA[系统架构 组件 jaeger即可以作为单体应用来部署(所有jaeger后台组件全部运行在一个进程内),也可以作为一个可扩展的分布式系统来部署.如]]></description>
</item><item>
<title>Zipkin指南</title>
<link>https://shenbaise9527.com/2020/12/10/opentracing-zipkin-guide/</link>
<pubDate>Thu, 10 Dec 2020 21:35:42 +0800</pubDate>
<author>作者</author>
<guid>https://shenbaise9527.com/2020/12/10/opentracing-zipkin-guide/</guid>
<description><![CDATA[快速启动 可以通过http://your_host:9411去访问zipkin UI. Docker docker run -d -p 9411:9411 openzipkin/zipkin Java 需要Java8或更高版本. 1 2 curl -sSL https://zipkin.io/quickstart.sh | bash -s java -jar]]></description>
</item></channel>
</rss>