Index Bloat
<% if @index_bloat.any? %>Indexes can become <%= link_to "bloated over time", "https://www.compose.com/articles/postgresql-bloat-origins-monitoring-and-managing/", target: "_blank" %>. Recreate them to remove bloat.
For each index, run:
CREATE INDEX CONCURRENTLY new_index ...;
ANALYZE table;
DROP INDEX CONCURRENTLY index;
ANALYZE table;
ALTER INDEX new_index RENAME TO index;
<% if @show_sql %> <%= link_to "Hide SQL", {} %> <% else %> <%= link_to "Show SQL", {sql: "t"} %> <% end %> for each index
Index | Bloat | Size |
---|---|---|
<%= index[:index] %> | <%= PgHero.pretty_size(index[:bloat_bytes]) %> | <%= PgHero.pretty_size(index[:index_bytes]) %> |
<% new_index = "new_#{index[:index]}".first(63) %>
|
No significant index bloat!
<% end %>