You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/mysql/concepts-performance-recommendations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.date: 05/23/2019
12
12
**Applies to:** Azure Database for MySQL 5.7
13
13
14
14
> [!NOTE]
15
-
> Performance Recommendations is in public preview.
15
+
> Performance Recommendations is in preview. Support for Performance Recommendations in the Azure portal is being rolled out and may not yet be available in your region.
16
16
17
17
The Performance Recommendations feature analyzes your databases to create customized suggestions for improved performance. To produce the recommendations, the analysis looks at various database characteristics including schema. Enable [Query Store](concepts-query-store.md) on your server to fully utilize the Performance Recommendations feature. If performance schema is OFF, turning on Query Store enables performance_schema and a subset of performance schema instruments required for the feature. After implementing any performance recommendation, you should test performance to evaluate the impact of those changes.
Copy file name to clipboardExpand all lines: articles/mysql/concepts-query-performance-insight.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.date: 06/05/2019
12
12
**Applies to:** Azure Database for MySQL 5.7
13
13
14
14
> [!NOTE]
15
-
> Query Performance Insight is in public preview.
15
+
> Query Performance Insight is in preview. Support for Query Performance Insight in the Azure portal is being rolled out and may not yet be available in your region.
16
16
17
17
Query Performance Insight helps you to quickly identify what your longest running queries are, how they change over time, and what waits are affecting them.
Copy file name to clipboardExpand all lines: articles/mysql/concepts-query-store.md
+40-39Lines changed: 40 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.date: 06/05/2019
12
12
**Applies to:** Azure Database for MySQL 5.7
13
13
14
14
> [!NOTE]
15
-
> Query Store is in public preview.
15
+
> Query Store is in preview.
16
16
17
17
The Query Store feature in Azure Database for MySQL provides a way to track query performance over time. Query Store simplifies performance troubleshooting by helping you quickly find the longest running and most resource-intensive queries. Query Store automatically captures a history of queries and runtime statistics, and it retains them for your review. It separates data by time windows so that you can see database usage patterns. Data for all users, databases, and queries is stored in the **mysql** schema database in the Azure Database for MySQL instance.
18
18
@@ -116,56 +116,56 @@ This view returns all the data in Query Store. There is one row for each distinc
| interval_start | timestamp | NO| Start of the interval (15-minute increment)|
153
-
| interval_end | timestamp | NO| End of the interval (15-minute increment)|
154
-
| query_id | bigint(20) | NO| Generated unique ID on the normalized query (from query store)|
155
-
| query_digest_id | varchar(32) | NO| The normalized query text after removing all the literals (from query store) |
156
-
| query_digest_text | longtext | NO| First appearance of the actual query with literals (from query store) |
157
-
| event_type | varchar(32) | NO| Category of the wait event |
158
-
| event_name | varchar(128) | NO| Name of the wait event |
159
-
| count_star | bigint(20) | NO| Number of wait events sampled during the interval for the query |
160
-
| sum_timer_wait_ms | double | NO| Total wait time (in milliseconds) of this query during the interval |
152
+
|`interval_start`| timestamp | NO| Start of the interval (15-minute increment)|
153
+
|`interval_end`| timestamp | NO| End of the interval (15-minute increment)|
154
+
|`query_id`| bigint(20) | NO| Generated unique ID on the normalized query (from query store)|
155
+
|`query_digest_id`| varchar(32) | NO| The normalized query text after removing all the literals (from query store) |
156
+
|`query_digest_text`| longtext | NO| First appearance of the actual query with literals (from query store) |
157
+
|`event_type`| varchar(32) | NO| Category of the wait event |
158
+
|`event_name`| varchar(128) | NO| Name of the wait event |
159
+
|`count_star`| bigint(20) | NO| Number of wait events sampled during the interval for the query |
160
+
|`sum_timer_wait_ms`| double | NO| Total wait time (in milliseconds) of this query during the interval |
161
161
162
162
### Functions
163
163
164
164
|**Name**|**Description**|
165
165
|---|---|
166
-
| mysql.az_purge_querystore_data(TIMESTAMP) | Purges all query store data before the given time stamp |
167
-
| mysql.az_procedure_purge_querystore_event(TIMESTAMP) | Purges all wait event data before the given time stamp |
168
-
| mysql.az_procedure_purge_recommendation(TIMESTAMP) | Purges recommendations whose expiration is before the given time stamp |
166
+
|`mysql.az_purge_querystore_data(TIMESTAMP)`| Purges all query store data before the given time stamp |
167
+
|`mysql.az_procedure_purge_querystore_event(TIMESTAMP)`| Purges all wait event data before the given time stamp |
168
+
|`mysql.az_procedure_purge_recommendation(TIMESTAMP)`| Purges recommendations whose expiration is before the given time stamp |
169
169
170
170
## Limitations and known issues
171
171
@@ -175,4 +175,5 @@ This view returns wait events data in Query Store. There is one row for each dis
175
175
- Wait statistics uses sample ti capture a fraction of events. The frequency can be modified using the parameter `query_store_wait_sampling_frequency`.
176
176
177
177
## Next steps
178
+
178
179
- Learn more about [Query Performance Insights](concepts-query-performance-insight.md)
0 commit comments