fox_m Posted November 15 · Report post Всем привет! Не могу понять, какой реальный размер БД (Zabbix): Sql запрос показывает, что размер 53 Гб mysql> SELECT table_schema "zabbix", ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" FROM information_schema.tables GROUP BY table_schema; +--------------------+---------------+ | zabbix | DB Size in MB | +--------------------+---------------+ | mysql | 3.1 | | information_schema | 0.0 | | performance_schema | 0.0 | | sys | 0.0 | | zabbix | 53270.6 | +--------------------+---------------+ А на диске, таблицы занимают только 24 Гб root@db01:/var/lib/mysql# du -hs ./zabbix/ 24G ./zabbix/ Размер дапма базы так же составляет 24 Гб Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
fox_m Posted November 15 · Report post Кажется понял, там же бинарные логи еще есть. Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
yandrey Posted November 15 · Report post innodb таблиц нет с данными в общем ibdata1? Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
fox_m Posted November 15 · Report post Нет нету. В общем, видимо команда: SELECT table_schema "zabbix", ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" FROM information_schema.tables GROUP BY table_schema; почему-то учитывает размер журналов mysql-bin. Из суммарный размер как раз около 24 Гб. Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...