We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance on a PG database tables with millions of records can significantly improved by regularly VACUUM-ing tables. See this article here:
When checking the last time tables are vacuumed in a schema, it appears some of the larger tables were not vacummed/analyzed at all!
SELECT relname, last_vacuum, last_autovacuum, last_analyze, last_autoanalyze FROM pg_stat_all_tables WHERE schemaname = 'smartem_refined';
result for refined data (now 8 million records in timeseries table):
timeseries
and for GOST data:
The text was updated successfully, but these errors were encountered:
This seems to be urgent. A request to /Observations no longer returns: https://data.smartemission.nl/gost/v1.0/Observations
Sorry, something went wrong.
gerdos82
No branches or pull requests
Performance on a PG database tables with millions of records can significantly improved by regularly VACUUM-ing tables. See this article here:
When checking the last time tables are vacuumed in a schema, it appears some of the larger tables were not vacummed/analyzed at all!
result for refined data (now 8 million records in
timeseries
table):and for GOST data:
The text was updated successfully, but these errors were encountered: