当前位置:网站首页>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 disarmAuto Compression Settings
# keep an hour of history$ etcd --auto-compaction-retention=1Official Documentationhttps://etcd.io/docs/v3.4/op-guide/maintenance/#history-compaction
边栏推荐
猜你喜欢

Unity vertex animation

Web性能测试模型小结

高压之下,必有懦夫

Experimental support for decorators may change in future releases.Set the "experimentalDecorators" option in "tsconfig" or "jsconfig" to remove this warning

color socks problem

Teach you how to write performance test cases

嵌入式Qt-实现两个窗口的切换

进程管理和任务管理

以太网PHY芯片LAN8720A芯片研究

Aptos 深度解读:机遇、挑战与风险
随机推荐
【UNR #6 B】机器人表演(DP)
使用 GoogleTest 框架对 C 代码进行单元测试
基于设计稿识别的可视化低代码系统实践
20220809-PotPlayer如何设置默认字体色-设置默认字体色的方法
商业模式及其 SubDAO 深入研究
HCIP——综合交换实验
【报错】ModuleNotFoundError: No module named ‘paramiko‘
unity 报错 Unsafe code may only appear if compiling with /unsafe. Enable “Allow ‘unsafe‘ code“ in Pla
UI遍历的初步尝试
Sikuli's Automated Testing Technology Based on Pattern Recognition
OOD论文:Revisit Overconfidence for OOD Detection
阿里云OSS文件上传
GB28181 sip和RTSP(Real-Time Streaming Protocol)实时流控制协议
墨西哥大众VW Mexico常见的几种label
DP 优化方法合集
【kali-密码攻击】(5.2.1)密码分析:Hash Identifier(哈希识别)
Experimental support for decorators may change in future releases.Set the "experimentalDecorators" option in "tsconfig" or "jsconfig" to remove this warning
web开发概述
微透镜阵列的高级模拟
JDBC数据库连接池练习题