Kubeservice博客

是非审之于己,毁誉听之于人,得失安之于数

TIPS之 Containerd 启动缓慢问题追查

Containerd 启动缓慢问题追查

一次Containerd 启动缓慢问题追查 div.notices { margin: 2rem 0; position: relative; } div.notices p { padding: 15px; white-space: pre-wrap; display: block; margin-top: 0rem; margin-bottom: 0rem; color: #666; } div.notices p:first-child:before { position: absolute; top: 2px; color: #fff; font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f06a"; left: 10px; } div.notices p:first-child:after { position: absolute;

TIPS之 repos-mirror-action github action实现不同仓库代码同步

repos-mirror-action github action实现不同仓库代码同步

repos-mirror-action github action实现不同仓库代码同步 一个用于在hub间(例如Github,Gitee)代码仓库同步的action 背景 在开源贡献的代码托管的过

FinOPS之 节点内存态统计和计算Node-metrics

节点内存态统计和计算Node-metrics

节点内存态统计和计算 Node-metrics 背景 请查看第一篇:https://kubeservice.cn/2022/11/24/k8s-crane-schedu

Golang之 golang common goroutine scheduler 定时调度引擎

Golang 通用基础库: goroutine scheduler 定时调度引擎

定时调度引擎 goroutine scheduler 背景 类似于 python schedule的伟大设计,实现golang版本的 golang scheduer模块 使用方式 package main import ( "flag" "fmt" "time" "github.com/kubeservice-stack/common/pkg/schedule" ) func ExampleTask(name string) { fmt.Println("Example Task "

技术方案之 基于节点真实负载情况调度之二:crane-scheduler-plus

crane-scheduler-plus 独立于 Prometheus 实现版本

crane-scheduler-plus 独立于 Prometheus 实现版本 1. 背景 请查看第一篇:https://kubeservice.cn/2022/11/24/k8s-crane-schedul

Golang之 golang common storage 内存时序数据库引擎

Golang 通用基础库: storage时序数据库引擎

内存时序数据库引擎storage 背景 近期研究内存统计stats,并可以快速通过statistics数学方法进行统计活动相关数据。 比如统计历史

TIPS之 一次Dockerd内存泄露分析

一次Dockerd内存泄露分析

1. 现象 线上k8s集群报警,登陆查看dockerd内存使用10G+(Node集群大小是15G),Dockerd占用内存70% 2. 排查思路 2.1 docker 版本

Golang之 golang 钻石依赖 问题解决

1. 基础规则:import兼容性规则 Go语言的import兼容性规则是指: 如果一个旧包与新包共用相同的 import 路径,那么新包必须向后兼容旧包。 Go的