Jump to content
Калькуляторы

MySQL реальный размер БД

Всем привет!

 

Не могу понять, какой реальный размер БД (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 Гб

 

Share this post


Link to post
Share on other sites

Нет нету. В общем, видимо команда:

 

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 Гб. 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.