Zabbix清理历史数据库,缩减表大小
zabbix 由于历史数据过大, 因此导致磁盘空间暴涨, 下面是解决方法步骤:
一、分析数据库:
1. 统计数据库中每个表所占的空间:
mysql> SELECT table_name AS "Tables",
round(((data_length + index_length) / 1024 / 1024), 2) "Size in MB"
FROM information_schema.TABLES
WHERE table_schema = 'zabbixdb'
ORDER BY (data_length + index_length) DESC;
+----------------------------+------------+
| Tables | Size in MB |
+----------------------------+------------+
| history_uint | 29417.00 |
| history | 8287.00 |
| events | 2367.67 |
| trends_uint | 1781.91 |
| event_recovery | 1211.33 |
| trends | 548.00 |
| history_str | 381.53 |
| history_text | 58.13 |
| alerts | 46.67 |
| problem | 31.06 |
| items | 25.23 |
| auditlog | 16.53 |
| items_applications | 6.20 |
| triggers | 5.31 |
| item_discovery | 5.30 |
| housekeeper | 3.52 |
| functions | 3.33 |
| graphs | 2.23 |
| graphs_items | 2.17 |
| item_preproc | 1.88 |
| auditlog_details | 1.69 |
| images | 1.53 |
| profiles | 0.80 |
| trigger_discovery | 0.42 |
| applications | 0.38 |
| application_template | 0.38 |
| trigger_depends | 0.33 |
| graph_discovery | 0.25 |
| hosts | 0.20 |
| item_condition | 0.16 |
| sessions | 0.14 |
| widget_field | 0.11 |
| dservices | 0.09 |
| sysmaps_elements | 0.09 |
| sysmaps | 0.08 |
| httptest | 0.08 |
| interface | 0.08 |
| mappings | 0.08 |
| hosts_templates | 0.08 |
| group_prototype | 0.06 |
| hostmacro | 0.06 |
| acknowledges | 0.06 |
| host_inventory | 0.06 |
| scripts | 0.06 |
| sysmaps_links | 0.06 |
| slides | 0.05 |
| maintenances_groups | 0.05 |
| users_groups | 0.05 |
| dashboard_usrgrp | 0.05 |
| sysmap_usrgrp | 0.05 |
| maintenances | 0.05 |
| dashboard_user | 0.05 |
| actions | 0.05 |
| opgroup | 0.05 |
| sysmap_user | 0.05 |
| httpstepitem | 0.05 |
| config | 0.05 |
| item_application_prototype | 0.05 |
| opcommand_hst | 0.05 |
| services_links | 0.05 |
| host_discovery | 0.05 |
| opcommand_grp | 0.05 |
| service_alarms | 0.05 |
| problem_tag | 0.05 |
| sysmap_element_trigger | 0.05 |
| task | 0.05 |
| drules | 0.05 |
| media | 0.05 |
| optemplate | 0.05 |
| slideshows | 0.05 |
| icon_mapping | 0.05 |
| screens | 0.05 |
| slideshow_usrgrp | 0.05 |
| sysmaps_link_triggers | 0.05 |
| icon_map | 0.05 |
| opmessage_usr | 0.05 |
| maintenances_windows | 0.05 |
| screen_usrgrp | 0.05 |
| application_prototype | 0.05 |
| httptestitem | 0.05 |
| opmessage_grp | 0.05 |
| slideshow_user | 0.05 |
| maintenances_hosts | 0.05 |
| screen_user | 0.05 |
| rights | 0.05 |
| hosts_groups | 0.05 |
| application_discovery | 0.05 |
| httptest_field | 0.03 |
| opmessage | 0.03 |
| event_tag | 0.03 |
| corr_condition_group | 0.03 |
| regexps | 0.03 |
| operations | 0.03 |
| group_discovery | 0.03 |
| users | 0.03 |
| corr_condition | 0.03 |
| opconditions | 0.03 |
| services_times | 0.03 |
| dashboard | 0.03 |
| sysmap_url | 0.03 |
| conditions | 0.03 |
| trigger_tag | 0.03 |
| interface_discovery | 0.03 |
| services | 0.03 |
| sysmap_shape | 0.03 |
| graph_theme | 0.03 |
| autoreg_host | 0.03 |
| corr_operation | 0.03 |
| opcommand | 0.03 |
| sysmap_element_url | 0.03 |
| escalations | 0.03 |
| media_type | 0.03 |
| httpstep_field | 0.03 |
| screens_items | 0.03 |
| httpstep | 0.03 |
| dhosts | 0.03 |
| widget | 0.03 |
| valuemaps | 0.03 |
| expressions | 0.03 |
| dchecks | 0.03 |
| groups | 0.03 |
| usrgrp | 0.03 |
| opinventory | 0.02 |
| proxy_history | 0.02 |
| proxy_dhistory | 0.02 |
| correlation | 0.02 |
| task_remote_command | 0.02 |
| proxy_autoreg_host | 0.02 |
| task_close_problem | 0.02 |
| corr_condition_tagvalue | 0.02 |
| task_acknowledge | 0.02 |
| globalvars | 0.02 |
| corr_condition_tagpair | 0.02 |
| ids | 0.02 |
| globalmacro | 0.02 |
| corr_condition_tag | 0.02 |
| history_log | 0.02 |
| timeperiods | 0.02 |
| task_remote_command_result | 0.02 |
| dbversion | 0.02 |
+----------------------------+------------+
140 rows in set (0.68 sec)
二、清理zabbix一周之前的历史数据:
!/bin/bash
User="zabbixuser"
Passwd="zabbixpass"
Date=`date -d $(date -d "-7 day" +%Y%m%d) +%s` #取7天之前的时间戳
$(which mysql) -u${User} -p${Passwd} -e "
use zabbixdb;
DELETE FROM history WHERE 'clock' < $Date;
optimize table history;
DELETE FROM history_str WHERE 'clock' < $Date;
optimize table history_str;
DELETE FROM history_uint WHERE 'clock' < $Date;
optimize table history_uint;
DELETE FROM history_text WHERE 'clock' < $Date;
optimize table history_text;
DELETE FROM trends WHERE 'clock' < $Date;
optimize table trends;
DELETE FROM trends_uint WHERE 'clock' < $Date;
optimize table trends_uint;
DELETE FROM events WHERE 'clock' < $Date;
optimize table events;
"
5.6以后用alter table table_name engine="InnoDB";
3、添加到系统计划任务:
#remove the zabbix mysql data before day's ago
* * /usr/local/script/clearzabbix.sh > /usr/local/script/clearzabbix.log
4、另:可以使用truncate命令直接清空数据库:
truncate table history;
truncate table history_uint;
truncate table history_str;
truncate table history_text;
truncate table trends;
truncate table trends_uint;
truncate table events;
如果想要删除表的所有数据,truncate语句要比 delete 语句快。
因为 truncate 删除了表,然后根据表结构重新建立它,而 delete 删除的是记录,并没有尝试去修改表。
不过truncate命令虽然快,却不像delete命令那样对事务处理是安全的。
因此,如果我们想要执行truncate删除的表正在进行事务处理,这个命令就会产生退出并产生错误信息。
Zabbix清理历史数据库,缩减表大小的更多相关文章
- zabbix清理监控历史mysql数据
问题描述: 今天同事说有个zabbix监控数据库历史数据越来越多了, 让我帮忙清一下,顺便熟悉练练手,做个笔记 zabbix监控运行一段时间以后,会留下大量的历史监控数据 zabbix数据库一直在增大 ...
- mysql单表大小的限制
mysql单表大小的限制一.MySQL数据库的MyISAM存储 引擎单表大小限制已经不是有MySQL数据库本身来决定(限制扩大到64pb),而是由所在主机的OS上面的文件系统来决定了.在mysql5. ...
- 查看mysql数据库表大小和最后修改时间
查看mysql数据库表相关信息如表大小.修改更新等信息,可以通过以下方式: 一 show table status like ’table_name‘ ; 二 在infortmation_sche ...
- mysql查看表大小
mysql查看表大小 一:命令 show table status like 'table_name'\G; mysql> show table status like 'x'\G; . row ...
- [记录]一则清理MySQL大表以释放磁盘空间的案例
一则清理MySQL大表以释放磁盘空间的案例 一.基本情况: 1.dbtest库554G,先清理st_online_time_away_ds(37G)表的数据,保留半年的数据: 1)删除的数据:sele ...
- PostgreSQL 查看单表大小
1. 在数据库中查单个表 select pg_size_pretty(pg_relation_size('table_name')); 2. 查出并按大小排序 SELECT table_schema ...
- postgresql-查看表大小
drop table tablesize create table tablesize( phone int) create table tablesize( phone text) create t ...
- SQL Server 游标运用:查看数据库所有表大小信息
一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 背景(Contexts) 实现代码(SQL Codes) 方法一:运用游标 方法二:运用系统存储过程 方法三:拼接SQL ...
- Hash表的表大小
hash表的出现主要是为了对内存中数据的快速.随机的访问.它主要有三个关键点:Hash表的大小.Hash函数.冲突的解决. 这里首先谈谈第一点:Hash表的大小. Hash表的大小一般是定长的,如果太 ...
随机推荐
- NGINX模块开发 之 验证URL參数
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/RoyalApex/article/details/26404379 作者:邹祁峰 邮箱:Qifeng ...
- 访问hbase的内部大致流程
hbase 访问表过程.Client(客户端)----->访问ZK(拿到meta表的region位置)----->访问meta 表的region------>拿到user表的regi ...
- 教你用webpack搭一个vue脚手架[超详细讲解和注释!](转载)
1.适用人群 1.对webpack知识有一定了解但不熟悉的同学. 2.女同学!!!(233333....) 2.目的 在自己对webpack有进一步了解的同时,也希望能帮到一些刚接触webpack的同 ...
- spring源码学习之bean的加载(二)
这是接着上篇继续写bean的加载过程,好像是有点太多了,因为bean的加载过程是很复杂的,要处理的情况有很多,继续... 7.创建bean 常规的bean的创建时通过doCreateBean方法来实现 ...
- Django项目:CRM(客户关系管理系统)--39--31PerfectCRM实现King_admin编辑多对多限制
readonly_fields = ('qq', 'consultant','tags',) # 不可修改 # forms.py # ————————19PerfectCRM实现King_admin数 ...
- 你应该知道的25个非常有用的CSS技巧
在我们的前端CSS编码当中,经常要设置特殊的字体效果,边框圆角等等,还要考虑兼容性的问题, CSS网页布局,说难,其实很简单. 说它容易,往往有很多问题困扰着新手,在中介绍了非常多的技巧,这些小技巧与 ...
- SpringBooot-基础<1>-构建项目
SpringBooot-基础<1>-构建项目 使用Springboot创建web工程,我使用的工具:STS,JDK1.8 1. File -> New -> Maven Pro ...
- 类的加载classload和类对象的生成
在Java中最重要的可以说就是类的加载了.不论我们编写的功能多么复杂,或是多么简单,永远逃离不开的,就是将这个类从class文件加载到JVM中来. 类的加载过程 首先我们要了解一下类的加载过程,包括: ...
- 基于pytest的接口测试
最近要开展接口测试,起初打算使用公司已有的Fitnesse测试工具来进行接口测试.过程中发现,构造接口字段数据.测试数据都比较困难,接口参数多的时候,用例量就会很多,关键执行速度还慢.所以放弃了. 找 ...
- php 7.2 安装 mcrypt 扩展
升级 php 7.2 后,使用微信提供的加解密代码时,提示 call to undefined function mcrypt_module_open() :大脑疯狂运转1秒钟后,得出结论:php 7 ...