当前位置:网站首页>RESOURCE_EXHAUSTED: etcdserver: mvcc: database space exceeded
RESOURCE_EXHAUSTED: etcdserver: mvcc: database space exceeded
2022-08-10 02:31:00 【whatzhang007】
Error message
reason
etcd is full, not enough space
Resolve
- Compression space, defragmentation
- Clear old data
- Extend
Detailed steps
View space details
# View details$ etcdctl --endpoints=ip:port endpoint status --write-out="table"
Manual compression
# 1. Get the current version$ rev=$(etcdctl --endpoints=ip:port endpoint status --write-out="json" | egrep -o '"revision":[0-9]*' | egrep -o '[0-9].*')# 2. Compress all records before the current version$ etcdctl compact $rev# 3. Clean up excess debris space$ etcdctl defrag# 4. Remove the warning$ etcdctl alarm disarm
Auto Compression Settings
# keep an hour of history$ etcd --auto-compaction-retention=1
Official Documentationhttps://etcd.io/docs/v3.4/op-guide/maintenance/#history-compaction
边栏推荐
猜你喜欢
为什么字符串一旦创建就不可以改变?
基于设计稿识别的可视化低代码系统实践
Shader Graph学习各种特效案例
odoo公用变量或数组的使用
Problems and solutions related to Chinese character set in file operations in ABAP
阿里云OSS文件上传
Unity editor extension interface uses List
ABAP 里文件操作涉及到中文字符集的问题和解决方案
RESOURCE_EXHAUSTED: etcdserver: mvcc: database space exceeded
【干货】集成学习原理总结
随机推荐
Chip Information|Semiconductor revenue growth expected to slow to 7%, Bluetooth chip demand still growing steadily
STM32F103驱动HCSR04超声波测距显示
【Grpc】报错:status = StatusCode.UNIMPLEMENTED details = ““
Janus实际生产案例
Entity FrameWork Core教程,从基础应用到原理实战
Unity image使用长图后 图片很糊
为什么字符串一旦创建就不可以改变?
[论文阅读] Diverse Image-to-Image Translation via Disentangled Representations
[Swoole Series 3.5] Process Pool and Process Manager
3dmax如何制作模型走路动画
使用IDEA的PUSH常见问题
即时通讯开发如何撸一个WebSocket服务器
商业模式及其 SubDAO 深入研究
破产企业的职工退休怎么办?
【kali-密码攻击】(5.1.2)密码在线破解:Medusa
微透镜阵列的高级模拟
【Swoole系列3.5】进程池与进程管理器
递归 二分查找 冒泡排序 快速排序
开发IM即时通讯容易吗?需要什么技术
FILE结构体在stdio.h头文件源码里的详细代码