Unused Index cleanup

2 minute read

Fixing a query by finding the right index feels great, as if by magic, things are blazing fast again.

But indexes, like everything in life, needs balancing. As things inevitably change, some indexes will be left abandoned and unused. What happens then? Well, the database engine must keep them updated regardless, that’s wasted I/O. They also take up space. Pruning indexes is the life of any dba.

Unused Indexes in MySQL

Fortunately in MySQL has are two great tools: the performance_schema, which collects all kind of metrics and the sys schema which offers easier-to-read views.

The first thing to do is ensure that performance_schema is enabled and configured. There is a global configuration setting to enable it, requires restart to take effect.

# my.cnf
# ~~~~~~

[mysqld]
performance_schema=ON
-- check if performance_schema is enabled
select @@performance_schema;

Then there is the runtime configuration to control what types of events to log. This is quite a complex subject because there is so many knobs to turn.

We’ll cheat, we have indexes to delete, no time to be reading manuals. MySQL Workbench has a Performance Schema Setup wizard.

performance schema setup

installing the sys schema

Setting the slider to at least Server Default should be enough.

 cheat mode: enabled

The Catch

Once everything is set up, we’ll find unused indexes in a view.

select * from sys.schema_unused_indexes

The documentation states:

The schema_unused_indexes View

These views display indexes for which there are no events, which indicates that they are not being used. By default, rows are sorted by schema and table.

This view is most useful when the server has been up and processing long enough that its workload is representative. Otherwise, presence of an index in this view may not be meaningful.

At first glance it seems that we need only to check that the server has been running for some time, i.e. the performance counters are reset on service restart.

That’s not entirely true, because all the counters for a particular table are also reset when any of its indexes are modified. Doing any alter table [add|remove] index, marks all the other indexes on that table table as unused.

If you wish to have some fun test it yourself:

create database super;
create table super.heroes (
  name varchar(45) not null,
  hability varchar(45) not null,
  key(name),
  key(hability)
);
insert into super.heroes values
('the flash','speed'),
('aquaman','fish language'),
('batman','rich'),
('superman','all of them');

-- use the index and check the counters
select name from super.heroes;
select * from sys.schema_unused_indexes;

-- any one of these resets the index usage counters
alter table super.heroes add key name_hability(name,hability);
alter table super.heroes drop key name_hability;

A Final Word

Here’s my general strategy:

  • Backup the tables, or at the very least export the index definitions (just in case)
  • Ensure that both server has been running for enough time and that the table has not been modified recently
show table status from <SCHEMA> where name = <TABLE>
  • Save the list of the unused indexes somewhere safe, you’ll probably lose it after modifying the table
create table unused_backup as select * from sys.schema_unused_indexes
  • Delete the unused indexes

Hope that helps.

Tomas

Tags:

Updated: