WL#10891: optimizer_switch to see invisible indexes

Affects: Server-8.0   —   Status: Complete

Use Case

The use case for invisible indexes that we focused on when implementing the feature was a preliminary check to see if an index could be dropped. I.e. before dropping the index the user could do:

 ALTER TABLE t ALTER INDEX indx INVISIBLE;

Then if performance went down they could immediately make it visible again.

However, there is also the use case where a user wants to roll out an index. In this case they may want to create the index as invisible first, and in selected sessions activate the index and measure the effect. In this case they will want an optimizer_switch to make the index visible, for instance:

 SET @@optimizer_switch='use_invisible_indexes=on';

Future work

Users might also want a list of sessions where the index is visible, if any. Likely, they can use performance_schema for this, perhaps with a helpful procedure.