Skip to content

Commit

Permalink
fixes to includes/Liquid
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Vigilante committed May 12, 2023
1 parent 75f67ea commit 8d2f95d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _includes/releases/v23.1/v23.1.0-alpha.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Release Date: February 27, 2023
- Some of the transformations specific to changefeeds have been deprecated and replaced. These functions were released in limited access in v22.2. Deprecated changefeed transformations continue to function. Closely monitor changefeeds that are created during upgrade. While effort was made to maintain backward compatibility, the updated changefeed transformation may produce slightly different output, such as different column names. [#96295][#96295]
- Add support for implicit authentication to Azure Storage and KMS. [#96825][#96825]
- Add support for `CREATE EXTERNAL CONNECTION ... AS "postgresql://"` or `"postgres://"`. These external connections may be specified as the source in streaming replication. [#96551][#96551]
- Add support for referencing [user defined functions (UDFs)](../{{site.versions["stable"]}}/user-defined-functions.html) from other objects. Backup and restore operations can now read and write UDF descriptors. [#97038][#97038]
- Add support for referencing [user defined functions (UDFs)](../v23.1/user-defined-functions.html) from other objects. Backup and restore operations can now read and write UDF descriptors. [#97038][#97038]

<h3 id="v23-1-0-alpha-4-sql-language-changes">SQL language changes</h3>

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
The default tracing behavior captures a small percent of transactions, so not all contention events will be recorded. When investigating transaction contention, you can set the `sql.trace.txn.enable_threshold` [cluster setting](cluster-settings.html#setting-sql-trace-txn-enable-threshold) to always capture contention events.
{% if include.version_prefix != nil %}
{% assign url = include.version_prefix | append: "cluster-settings.html#setting-sql-trace-txn-enable-threshold" | absolute_url %}
{% else %}
{% assign url = "cluster-settings.html#setting-sql-trace-txn-enable-threshold" %}
{% endif %}
The default tracing behavior captures a small percent of transactions, so not all contention events will be recorded. When investigating transaction contention, you can set the `sql.trace.txn.enable_threshold` [cluster setting]({{ url }}) to always capture contention events.
4 changes: 4 additions & 0 deletions _includes/v23.1/ui/insights.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ To display this view, click **Insights** in the left-hand navigation of the Clou
The rows in this page are populated from the [`crdb_internal.cluster_execution_insights`]({{ link_prefix }}crdb-internal.html) table.

- The results displayed on the **Statement Executions** view will be available as long as the number of rows in each node is less than the [`sql.insights.execution_insights_capacity` cluster setting]({{ link_prefix }}cluster-settings.html#setting-sql-insights-execution-insights-capacity).
{% if include.version_prefix != nil %}
- {% include {{ include.version_prefix }}performance/sql-trace-txn-enable-threshold.md version_prefix=version_prefix %}
{% else %}
- {% include {{ page.version.version }}/performance/sql-trace-txn-enable-threshold.md %}
{% endif %}
{{site.data.alerts.end}}

{% if page.cloud != true -%}
Expand Down
2 changes: 1 addition & 1 deletion cockroachcloud/insights-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The **Insights** page of the {{ site.data.products.db }} Console helps you:

To view this page, select a cluster from the [**Clusters** page](cluster-management.html#view-clusters-page), and click **Insights** in the **Monitoring** section of the left side navigation.

{% include {{version_prefix}}ui/insights.md %}
{% include {{version_prefix}}ui/insights.md version_prefix=version_prefix %}

## See also

Expand Down

0 comments on commit 8d2f95d

Please sign in to comment.