Skip to content

Commit

Permalink
Remove reference to webhook and pub/sub performance cluster setting (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kathancox authored Sep 28, 2023
1 parent d5921a0 commit b493faa
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 21 deletions.
3 changes: 0 additions & 3 deletions src/current/_includes/v23.2/cdc/pubsub-performance-setting.md

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions src/current/v23.2/advanced-changefeed-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,6 @@ kafka_sink_config='{'RequiredAcks': 'ALL'}'

Use [Kafka]({% link {{ page.version.version }}/changefeed-sinks.md %}#kafka) or [cloud storage]({% link {{ page.version.version }}/changefeed-sinks.md %}#cloud-storage-sink) sinks when tuning for high durability delivery in changefeeds. Both Kafka and cloud storage sinks offer built-in advanced protocols, whereas the [webhook sink]({% link {{ page.version.version }}/changefeed-sinks.md %}#webhook-sink), while flexible, requires an understanding of how messages are acknowledged and committed by the particular system used for the webhook in order to ensure the durability of message delivery.

{% include {{ page.version.version }}/cdc/webhook-performance-setting.md %}

### Defining schema change behavior

Ensure that data is ingested downstream in its new format after a [schema change]({% link {{ page.version.version }}/online-schema-changes.md %}) by using the [`schema_change_events`]({% link {{ page.version.version }}/create-changefeed.md %}#schema-events) and [`schema_schange_policy`]({% link {{ page.version.version }}/create-changefeed.md %}#schema-policy) options. For example, setting `schema_change_events=column_changes` and `schema_change_policy=stop` will trigger an error to the `cockroach.log` file on a [schema change]({% link {{ page.version.version }}/changefeed-messages.md %}#schema-changes-with-column-backfill) and the changefeed to fail.
Expand Down
4 changes: 0 additions & 4 deletions src/current/v23.2/changefeed-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,6 @@ In this example, you'll set up a changefeed for a single-node cluster that is co
{% include feature-phases/preview.md %}
{{site.data.alerts.end}}
{% include {{ page.version.version }}/cdc/pubsub-performance-setting.md %}
In this example, you'll set up a changefeed for a single-node cluster that is connected to a [Google Cloud Pub/Sub](https://cloud.google.com/pubsub/docs/overview) sink. The changefeed will watch a table and send messages to the sink.

You'll need access to a [Google Cloud Project](https://cloud.google.com/resource-manager/docs/creating-managing-projects) to set up a Pub/Sub sink. In this example, the [Google Cloud CLI](https://cloud.google.com/sdk/docs/install-sdk) (`gcloud`) is used, but you can also complete each of these steps within your [Google Cloud Console](https://cloud.google.com/storage/docs/cloud-console).
Expand Down Expand Up @@ -543,8 +541,6 @@ In this example, you'll set up a changefeed for a single-node cluster that is co
[`CREATE CHANGEFEED`]({% link {{ page.version.version }}/create-changefeed.md %}) is an [{{ site.data.products.enterprise }}-only]({% link {{ page.version.version }}/enterprise-licensing.md %}) feature. For the Core version, see [the `CHANGEFEED FOR` example](#create-a-core-changefeed).
{{site.data.alerts.end}}
{% include {{ page.version.version }}/cdc/webhook-performance-setting.md %}
In this example, you'll set up a changefeed for a single-node cluster that is connected to a local HTTP server via a webhook. For this example, you'll use an [example HTTP server](https://github.com/cockroachlabs/cdc-webhook-sink-test-server/tree/master/go-https-server) to test out the webhook sink.
1. If you do not already have one, [request a trial {{ site.data.products.enterprise }} license]({% link {{ page.version.version }}/enterprise-licensing.md %}).
Expand Down
4 changes: 0 additions & 4 deletions src/current/v23.2/changefeed-sinks.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,6 @@ See the [Changefeed Examples]({% link {{ page.version.version }}/changefeed-exam
{% include feature-phases/preview.md %}
{{site.data.alerts.end}}

{% include {{ page.version.version }}/cdc/pubsub-performance-setting.md %}

Changefeeds can deliver messages to a Google Cloud Pub/Sub sink, which is integrated with Google Cloud Platform.

A Pub/Sub sink URI follows this example:
Expand Down Expand Up @@ -385,8 +383,6 @@ The following shows the default JSON messages for a changefeed emitting to a clo

## Webhook sink

{% include {{ page.version.version }}/cdc/webhook-performance-setting.md %}

Use a webhook sink to deliver changefeed messages to an arbitrary HTTP endpoint.

Example of a webhook sink URL:
Expand Down
4 changes: 0 additions & 4 deletions src/current/v23.2/create-changefeed.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ Example of a Google Cloud Pub/Sub sink URI:
'gcpubsub://{project name}?region={region}&topic_name={topic name}&AUTH=specified&CREDENTIALS={base64-encoded key}'
~~~

{% include {{ page.version.version }}/cdc/pubsub-performance-setting.md %}

[Use Cloud Storage for Bulk Operations]({% link {{ page.version.version }}/cloud-storage-authentication.md %}) explains the requirements for the authentication parameter with `specified` or `implicit`. Refer to [Changefeed Sinks]({% link {{ page.version.version }}/changefeed-sinks.md %}#google-cloud-pub-sub) for further consideration.

#### Cloud Storage
Expand All @@ -117,8 +115,6 @@ Example of a webhook URI:
'webhook-https://{your-webhook-endpoint}?insecure_tls_skip_verify=true'
~~~

{% include {{ page.version.version }}/cdc/webhook-performance-setting.md %}

Refer to [Changefeed Sinks]({% link {{ page.version.version }}/changefeed-sinks.md %}#webhook-sink) for specifics on webhook sink configuration.

### Query parameters
Expand Down

0 comments on commit b493faa

Please sign in to comment.