CSR File is very large like 55 GB
7.2.2
There is an issue in 7.2.2 that would create blank Indicators. It does it faster and faster until the postgres database is 55GB is size.
To fix it, please run the following 2 commands:
echo "DELETE FROM deepsee_favorites WHERE name = ''" | su – postgres -c "psql -d dsweb"
echo "VACUUM (FULL, ANALYZE, VERBOSE) deepsee_favorites" | su – postgres -c "psql -d dsweb"
OR if you prefer, from the postgres command line:
> VACUUM (FULL, ANALYZE, VERBOSE) deepsee_favorites;
#> SELECT COUNT(*) AS count FROM deepsee_favorites AS df WHERE df.name = '';
#> DELETE FROM deepsee_favorites WHERE name = '';