You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Framework auto indexes a few things. Some of these indexes are unused because the user isn't actually using those doctypes OR usage is not that frequent (like closing balance).
Currently, I have 1000+ index removal recommendations. IMO most of these recommendations are not actionable.
Simplest fix:
Use table schema information, don't recommend index that are < 16MB in size.
If index size isn't easy to fetch then use table size as a proxy, don't recommend tables that have <256MB size.
Limit recommendations to 100 max after sorting.
Those numbers are made up, but assuming modern machines with 20-60MB L3 cache, that data size is peanuts and not worth optimizing.
The text was updated successfully, but these errors were encountered:
Framework auto indexes a few things. Some of these indexes are unused because the user isn't actually using those doctypes OR usage is not that frequent (like closing balance).
Currently, I have 1000+ index removal recommendations. IMO most of these recommendations are not actionable.
Simplest fix:
The text was updated successfully, but these errors were encountered: