What could cause a giant search index table? #2056
Unanswered
deviantintegral
asked this question in
Q&A
Replies: 2 comments 1 reply
-
I was able to at least temporarily fix this by exporting the database with pg_dump, dropping, and re-importing with pg_sql. The index is now ~10MB which seems much more reasonable. I'll need to monitor this to see if it grows. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You may have to vacuum the tables and indexes: https://www.postgresql.org/docs/current/sql-vacuum.html |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My miniflux instance crashed after running out of disk space. Looking at the database, it appears that the
document_vectors_idx
index is huge - 9.7GB for 74MB of entries!I had 9398 read entries in my history, which I flushed. That didn't reduce the size of the index at all.
Any ideas on how to get this under control, and how to prevent it from happening in the future?
Beta Was this translation helpful? Give feedback.
All reactions