Optimize Aiven for PostgreSQL® slow queries
Optimize slow queries to ensure maximum service performance. Use Aiven's AI capabilities or pg_stat_statements
to identify optimization opportunities.
For one-time query optimizations when you do not run an Aiven for PostgreSQL® service, use the standalone SQL query optimizer.
Artificial intelligence recommendations
Use Aiven AI Database Optimizer to suggest optimizations to your databases and queries.
Aiven considers various aspects to suggest optimization, for example query structure, table size, existing indexes and their cardinality, column types and sizes, the connections between the tables and columns in the query.
To optimize a query automatically:
-
In the Aiven Console, open your Aiven for PostgreSQL service.
-
Click AI insights.
-
For the query of your choice, click Optimize.
-
In the Query optimization report window, see the optimization suggestion and apply the suggestion by running the provided SQL queries.
- To display potential alternative optimization recommendations, click Advanced options.
- To display the diff view, click Query diff.
- To display explanations about the optimization, click Optimization details.
The quality of the optimization suggestions is proportional to the amount of data collected about the performance of your database.
Frequently asked questions
Does Aiven AI Optimizer mask/obfuscate my queries?
Yes, Aiven AI Optimizer provides a non-intrusive solution to optimize your database performance without compromising sensitive data access. It achieves this by gathering information on schema structure, database statistics, and other signals to detect potential performance problems and offer optimization recommendations, without requiring credentials or access to the actual data in the database.
To address the possibility of slow query logs containing sensitive data, Aiven
offers data masking capabilities that replace sensitive parameters within
queries with question marks (?
). Data masking is enabled by default.
The masking option is not available for the Standalone SQL query optimizer yet.
Manual optimization
Aiven for PostgreSQL allows you to
identify slow queries
using the pg_stat_statements
view.
Limit the number of indexes
Having many database indexes on a table can reduce write performance due to the overhead of maintaining them.
Handle an increase in database connections
When your application code scales horizontally to accommodate high loads, you might find that you inadvertently reach the connection limits for your plan. Each connection in PostgreSQL runs in a separate process, and this makes them more expensive (compared to threads, for example) in terms of inter-process communication and memory usage, since each connection consumes a certain amount of RAM.
In such cases, you can use the connection pooling, based on PgBouncer, to handle an increase in database connections. You can add and configure the connection pooling for your service in the Connection pools view in Aiven Console.
Move read-only queries to standby nodes
If your Aiven for PostgreSQL® service is running a Business or Premium plan, you have one or more standby nodes available in a high availability setup in the same cloud region.
To reduce the effect of slow queries on the primary node, you can redirect read-only queries to the additional read-only nodes by directly connecting via the read-only replica URL.
Move read-only queries to a remote read-only replica
You can also create a remote read-only replica service in the same or a different cloud or region that you can use to reduce the query load on the primary service for read-only queries.