Insights Page

On this page Carat arrow pointing down
Warning:
Cockroach Labs will stop providing Assistance Support for v22.2 on June 5, 2024. Prior to that date, upgrade to a more recent version to continue receiving support. For more details, see the Release Support Policy.
Note:

On a secure cluster you must be an admin user to access this area of the DB Console. See DB Console security.

New in v22.2: The Insights page exposes problems that CockroachDB has detected in your workloads and schemas. The page also offers recommendations to improve the performance of your workloads. These are called insights in the DB Console.

The Insights page helps you:

Workload Insights tab

The Workload Insights tab displays insights related to transaction and statement executions.

Transaction Executions view

To display this view, click Insights in the left-hand navigation of the DB Console and select Workload Insights > Transaction Executions. The Transaction Executions view provides an overview of all transaction executions that have been flagged with insights.

Note:

The rows in this page are populated from the crdb_internal.transaction_contention_events table.

Transaction executions with the High Contention insight are transactions that experienced contention.

The following screenshot shows the execution of a transaction flagged with High Contention:

Transaction execution To view details of the execution, click an execution ID in the Latest Transaction Execution ID column.

  • Latest Transaction Execution ID: The execution ID of the latest execution with the transaction fingerprint.
  • Transaction Fingerprint ID: The transaction fingerprint ID of the latest transaction execution.
  • Transaction Execution: The transaction fingerprint of the latest transaction execution.
  • Insights: The insight for the transaction execution.
  • Start Time (UTC): The timestamp when the transaction execution started.
  • Contention Time: The amount of time the transaction execution spent waiting in contention.
  • Application Name: The name specified by the application_name session setting.

Transaction execution details

The transaction execution details view provides more details on a transaction execution insight.

The following screenshot shows the execution details of the transaction execution in the preceding section:

Transaction execution details The Insights column shows the name of the insight, in this case High Contention; the Details column provides details on the insight.

  • Start Time (UTC): The time the transaction execution started.
  • Transaction Fingerprint ID: The transaction fingerprint ID of the transaction execution.

Transaction with ID {transaction ID} waited on

This section provides details of the transaction executions that block the transaction ID flagged with High Contention:

  • Transaction Execution ID: The execution ID of the blocking transaction execution.
  • Transaction Fingerprint ID: The transaction fingerprint ID of the blocking transaction execution.
  • Transaction Execution: The queries attempted in the transaction.
  • Contention Start Time (UTC): The timestamp at which contention was detected for the transaction.
  • Contention Time: The time transactions with this execution ID was in contention with other transactions within the specified time interval.
  • Schema Name: The name of the contended schema.
  • Database Name: The name of the contended database.
  • Table Name: The name of the contended table.
  • Index Name: The name of the contended index.

Statement Executions view

The Statement Executions view provides an overview of all statement executions that have been flagged with insights.

To display this view, click Insights in the left-hand navigation of the DB Console and select Workload Insights > Statement Executions.

Note:
The rows in this page are populated from the crdb_internal.cluster_execution_insights table.

The following screenshot shows the statement execution of the query described in Use the right index:

Statement execution To view details of the execution, click an execution ID in the Statement Execution ID column.

  • Statement Execution ID: The execution ID of the latest execution with the statement fingerprint.
  • Statement Fingerprint ID: The statement fingerprint ID of the latest statement execution.
  • Statement Execution: The statement fingerprint of the latest statement execution.
  • Insights: The insight for the statement execution.

  • Start Time (UTC): The timestamp when the statement execution started.

  • Elapsed Time: The time that elapsed to complete the statement execution.

  • User Name: The name of the user that invoked the statement execution.

  • Application Name: The name specified by the application_name session setting.

  • Rows Processed: The total number of rows read and written.

  • Retries: The number of times the statement execution was retried.

  • Contention Time: The amount of time the statement execution spent waiting in contention.

  • Full Scan: Whether the execution performed a full scan of the table.

  • Transaction Execution ID: The ID of the transaction execution for the statement execution.

  • Transaction Fingerprint ID: The ID of the transaction fingerprint for the statement execution.

Statement execution details

The statement execution details view provides more details on a statement execution insight.

The following screenshot shows the execution details of the statement execution in the preceding section:

Statement execution details The Insights column shows the name of the insight, in this case Suboptimal Plan; the Details column provides details on the insight; and the final column contains a Create Index button. Click the Create Index button to perform a query to mitigate the cause of the insight, in this case to create an index on the ride start_time that stores the rider_id.

  • Start Time: The timestamp when the statement execution started.
  • End Time: The timestamp when the statement execution ended.
  • Elapsed Time: The time that elapsed during statement execution.
  • Rows Read: The total number of rows read.
  • Rows Written: The total number of rows written.
  • Transaction Priority: The priority of the transaction for the statement execution.
  • Full Scan: Whether the execution performed a full scan of the table.
  • Session ID: The ID of the session the statement was executed from.
  • Transaction Fingerprint ID: The ID of the transaction fingerprint for the statement execution.
  • Transaction Execution ID: The ID of the transaction execution for the statement execution.
  • Statement Fingerprint ID: The fingerprint ID of the statement fingerprint for the statement execution.

Schema Insights tab

To display this view, click Insights in the left-hand navigation of the DB Console and select Schema Insights. This view lists the indexes that have not been used and should be dropped, and/or the ones that should be created, altered, or replaced (based on statement execution).

  • The drop recommendations are the same as those on the Databases page.
  • The create, alter, and replace recommendations are the same as those on the Explain Plans tab on the Statements page. Whereas the Explain Plans tab shows all recommendations, the Schema Insights view shows only the latest recommendations for that statement fingerprint. If you execute a statement again after creating or updating an index, the recommendation disappears.

The following screenshot shows the insight that displays after you run the query described in Use the right index 6 or more times:

Schema insight CockroachDB uses the threshold of 6 executions before offering an insight because it assumes that you are no longer merely experimenting with a query at that point.

  • Insights: Contains one of the following insight types: Create Index, Alter Index, Replace Index, Drop Unused Index.
  • Details: Details for each insight. Different insight types display different details fields:

    • Create Index, Alter Index, or Replace Index: A Statement Fingerprint field displays the statement fingerprint that would be optimized with the creation, alteration, or replacement of the index; and a Recommendation field displays the SQL query to create, alter, or replace the index.
    • Drop Unused Index: An Index field displays the name of the index to drop; and a Description field displays the reason for dropping the index.

Admin users will see an action button in the final column, which will execute the SQL statement suggested by the schema insight, for example "Create Index". Upon clicking the action button, a confirmation dialog displays a warning about the cost of online schema changes and the option to copy the SQL statement for later execution in a SQL client.

Configuration

You can configure the behavior of insights using the following cluster settings.

Workload insights settings

You can configure Workload Insights with the following cluster settings:

Setting Description Where used
sql.insights.anomaly_detection.enabled Whether or not anomaly insight detection is enabled. When true, CockroachDB checks if execution latency was greater than the p99 latency and more than double the median latency. Statement executions
sql.insights.anomaly_detection.latency_threshold The latency threshold that triggers monitoring a statement fingerprint for unusually slow execution. Statement executions
sql.insights.anomaly_detection.memory_limit The maximum amount of memory allowed for tracking statement latencies. Statement executions
sql.insights.latency_threshold The threshold at which the contention duration of a contended transaction is considered High Contention or statement execution is flagged for insights. Statement and Transaction executions
sql.insights.high_retry_count.threshold The threshold at which a retry count is considered High Retry Count. Statement executions
sql.insights.execution_insights_capacity The maximum number of execution insights stored in each node. Statement executions
sql.contention.event_store.capacity The in-memory storage capacity of the contention event store in each nodes. Transaction executions
sql.contention.event_store.duration_threshold The minimum contention duration to cause contention events to be collected into the crdb_internal.transaction_contention_events table. Transaction executions

Detect slow executions

There are two different methods for detecting slow executions. By default, they are both enabled and you can configure them based on your workload.

The first method flags all executions running longer than sql.insights.latency_threshold. This is analogous to checking the slow query log.

The second method attempts to detect unusually slow executions. You can enable this detection with sql.insights.anomaly_detection.enabled and configure it with sql.insights.anomaly_detection.latency_threshold. CockroachDB will then keep a streaming histogram in memory for each distinct statement fingerprint that has seen an execution latency longer than sql.insights.anomaly_detection.latency_threshold, and will flag any execution with a latency in the 99th percentile (greater than p99) for its fingerprint.

Additional controls filter out executions that are less actionable:

  • The execution's latency must also be longer than twice the median latency (> 2*p50) for that fingerprint. This ensures that the elevated latency is significant enough to warrant attention.
  • The execution's latency must also be longer than sql.insights.anomaly_detection.latency_threshold. Some executions are slower than usual, but are still fast enough for the workload.

The sql.insights.anomaly_detection.memory_limit cluster setting cluster setting limits the amount of memory available for tracking these streaming latency histograms. When this threshold is surpassed, the least-recently touched histogram is evicted. The default setting is sufficient for tracking about 1,000 fingerprints.

You can track the sql.insights.anomaly_detection.memory and sql.insights.anomaly_detection.evictions metrics to determine if the settings are appropriate for your workload. If you see a steady stream of evictions or churn, you can either raise the sql.insights.anomaly_detection.memory_limit cluster setting, to allow for more storage; or raise the sql.insights.anomaly_detection.latency_threshold cluster setting, to examine fewer statement fingerprints.

Schema insights settings

You can configure the index recommendations in the Schema Insights tab, Explain Plans tab, and Databases page with the following cluster settings:

Setting Description Where used
sql.metrics.statement_details.index_recommendation_collection.enabled Whether or not index recommendations are enabled for indexes that could be or are used during statement execution. Schema Insights and Explain Plans tab
sql.index_recommendation.drop_unused_duration The duration of time an index must be unused before a recommendation to drop it. Schema Insights and Databases
sql.metrics.statement_details.max_mem_reported_idx_recommendations The maximum number of reported index recommendations stored in memory. Schema Insights and Explain Plans tab

See also


Yes No
On this page

Yes No