title | description | services | ms.service | ms.subservice | ms.custom | ms.devlang | ms.topic | author | ms.author | ms.reviewer | manager | ms.date |
---|---|---|---|---|---|---|---|---|---|---|---|---|
Query performance insights for Azure SQL Database | Microsoft Docs |
Query performance monitoring identifies the most CPU-consuming queries for an Azure SQL Database. |
sql-database |
sql-database |
performance |
conceptual |
danimir |
v-daljep |
carlrab |
craigg |
04/01/2018 |
Managing and tuning the performance of relational databases is a challenging task that requires significant expertise and time investment. Query Performance Insight allows you to spend less time troubleshooting database performance by providing the following:
- Deeper insight into your databases resource (DTU) consumption.
- The top queries by CPU/Duration/Execution count, which can potentially be tuned for improved performance.
- The ability to drill down into the details of a query, view its text and history of resource utilization.
- Performance tuning annotations that show actions performed by SQL Azure Database Advisor
- Query Performance Insight requires that Query Store is active on your database. If Query Store is not running, the portal prompts you to turn it on.
The following role-based access control permissions are required to use Query Performance Insight:
- Reader, Owner, Contributor, SQL DB Contributor, or SQL Server Contributor permissions are required to view the top resource consuming queries and charts.
- Owner, Contributor, SQL DB Contributor, or SQL Server Contributor permissions are required to view query text.
Query Performance Insight is easy to use:
-
Open Azure portal and find database that you want to examine.
- From left-hand side menu, under support and troubleshooting, select “Query Performance Insight”.
-
On the first tab, review the list of top resource-consuming queries.
-
Select an individual query to view its details.
-
Open SQL Azure Database Advisor and check if any recommendations are available.
-
Use sliders or zoom icons to change observed interval.
Note
A couple hours of data needs to be captured by Query Store for SQL Database to provide query performance insights. If the database has no activity or Query Store was not active during a certain time period, the charts will be empty when displaying that time period. You may enable Query Store at any time if it is not running.
In the portal do the following:
-
Browse to a SQL database and click All settings > Support + Troubleshooting > Query performance insight.
The top queries view opens and the top CPU consuming queries are listed.
-
Click around the chart for details.
The top line shows overall DTU% for the database, while the bars show CPU% consumed by the selected queries during the selected interval (for example, if Past week is selected each bar represents one day).The bottom grid represents aggregated information for the visible queries.
-
Query ID - unique identifier of query inside database.
-
CPU per query during observable interval (depends on aggregation function).
-
Duration per query (depends on aggregation function).
-
Total number of executions for a particular query.
Select or clear individual queries to include or exclude them from the chart using checkboxes.
-
-
If your data becomes stale, click the Refresh button.
-
You can use sliders and zoom buttons to change observation interval and investigate spikes:
-
Optionally, if you want a different view, you can select Custom tab and set:
To view query details:
-
Click any query in the list of top queries.
-
The details view opens and the queries CPU consumption/Duration/Execution count is broken down over time.
-
Click around the chart for details.
-
Optionally, use sliders, zoom buttons or click Settings to customize how query data is displayed, or to pick a different time period.
In the recent update of Query Performance Insight, we introduced two new metrics that can help you identify potential bottlenecks: duration and execution count.
Long-running queries have the greatest potential for locking resources longer, blocking other users, and limiting scalability. They are also the best candidates for optimization.
To identify long running queries:
-
Open Custom tab in Query Performance Insight for selected database
-
Change metrics to be duration
-
Select number of queries and observation interval
-
Select aggregation function
High number of executions might not be affecting database itself and resources usage can be low, but overall application might get slow.
In some cases, very high execution count may lead to increase of network round trips. Round trips significantly affect performance. They are subject to network latency and to downstream server latency.
For example, many data-driven Web sites heavily access the database for every user request. While connection pooling helps, the increased network traffic and processing load on the database server can adversely affect performance. General advice is to keep round trips to an absolute minimum.
To identify frequently executed queries (“chatty”) queries:
-
Open Custom tab in Query Performance Insight for selected database
-
Change metrics to be execution count
-
Select number of queries and observation interval
While exploring your workload in Query Performance Insight, you might notice icons with vertical line on top of the chart.
These icons are annotations; they represent performance affecting actions performed by SQL Azure Database Advisor. By hovering annotation, you get basic information about the action:
If you want to know more or apply advisor recommendation, click the icon. It will open details of action. If it’s an active recommendation you can apply it straight away using command.
It’s possible, that because of zoom level, annotations that are close to each other will get collapsed into one. This will be represented by special icon, clicking it will open new blade where list of grouped annotations will be shown. Correlating queries and performance tuning actions can help to better understand your workload.
During your use of Query Performance Insight, you might encounter the following Query Store messages:
- "Query Store is not properly configured on this database. Click here to learn more."
- "Query Store is not properly configured on this database. Click here to change settings."
These messages usually appear when Query Store is not able to collect new data.
First case happens when Query Store is in Read-Only state and parameters are set optimally. You can fix this by increasing size of Query Store or clearing Query Store.
Second case happens when Query Store is Off or parameters aren’t set optimally.
You can change the Retention and Capture policy and enable Query Store by executing commands below or directly from portal:
There are two types of retention policies:
- Size based - if set to AUTO it will clean data automatically when near max size is reached.
- Time based - by default we will set it to 30 days, which means, if Query Store will run out of space, it will delete query information older than 30 days
Capture policy could be set to:
- All - Captures all queries.
- Auto - Infrequent queries and queries with insignificant compile and execution duration are ignored. Thresholds for execution count, compile and runtime duration are internally determined. This is the default option.
- None - Query Store stops capturing new queries, however runtime stats for already captured queries are still collected.
We recommend setting all policies to AUTO and clean policy to 30 days:
ALTER DATABASE [YourDB]
SET QUERY_STORE (SIZE_BASED_CLEANUP_MODE = AUTO);
ALTER DATABASE [YourDB]
SET QUERY_STORE (CLEANUP_POLICY = (STALE_QUERY_THRESHOLD_DAYS = 30));
ALTER DATABASE [YourDB]
SET QUERY_STORE (QUERY_CAPTURE_MODE = AUTO);
Increase size of Query Store. This could be performed by connecting to a database and issuing following query:
ALTER DATABASE [YourDB]
SET QUERY_STORE (MAX_STORAGE_SIZE_MB = 1024);
Applying these settings will eventually make Query Store collecting new queries, however if you don’t want to wait you can clear Query Store.
Note
Executing following query will delete all current information in the Query Store.
ALTER DATABASE [YourDB] SET QUERY_STORE CLEAR;
Query Performance Insight helps you understand the impact of your query workload and how it relates to database resource consumption. With this feature, you will learn about the top consuming queries, and easily identify the ones to fix before they become a problem.
For additional recommendations about improving the performance of your SQL database, click Recommendations on the Query Performance Insight blade.