Skip to content

Commit

Permalink
Cxns from docs review
Browse files Browse the repository at this point in the history
  • Loading branch information
kathancox committed Sep 15, 2021
1 parent 906a323 commit 8557a68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion v21.2/create-changefeed.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ For more information on how to create a changefeed connected to a cloud storage
> SHOW CHANGEFEED JOBS;
~~~

Use the following SQL statements to pause, resume, and cancel a changefeed.
Use the following SQL statements to pause, resume, or cancel a changefeed.

#### Pause a changefeed

Expand Down
8 changes: 4 additions & 4 deletions v21.2/show-jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Field | Description
`error` | If the job `failed`, the error generated by the failure.
`coordinator_id` | The ID of the node running the job.

See [`SHOW CHANGEFEED JOBS`](#show-changefeed-jobs) for details of changefeed-specific responses.
For details of changefeed-specific responses, see [`SHOW CHANGEFEED JOBS`](#show-changefeed-jobs).

## Examples

Expand Down Expand Up @@ -132,11 +132,11 @@ You can filter jobs by using `SHOW AUTOMATIC JOBS` as the data source for a [`SE

### Show changefeed jobs

<span class="version-tag">New in v21.2:</span> You can display specific fields relating to changefeed jobs by running `SHOW CHANGEFEED JOBS`, which include:
<span class="version-tag">New in v21.2:</span> You can display specific fields relating to changefeed jobs by running `SHOW CHANGEFEED JOBS`. These fields include:

* [`high_water_timestamp`](stream-data-out-of-cockroachdb-using-changefeeds.html#monitor-a-changefeed): Guarantees all changes before or at this time have been emitted.
* [`sink_uri`](create-changefeed.html#sink-uri): The destination URI of the configured sink for a changefeed.
* `full_table_names`: Provides the full [name resolution](sql-name-resolution.html) for a table. For example, `defaultdb.public.mytable`, the database (`defaultdb`), schema (`public`), and table name (`mytable`).
* `full_table_names`: Provides the full [name resolution](sql-name-resolution.html) for a table. For example, `defaultdb.public.mytable` refers to the `defaultdb` database, the `public` schema, and the table `mytable` table.

{% include copy-clipboard.html %}
~~~ sql
Expand All @@ -151,7 +151,7 @@ job_id |
(2 rows)
~~~

Changefeed jobs can be [paused](stream-data-out-of-cockroachdb-using-changefeeds.html#pause), [resumed](stream-data-out-of-cockroachdb-using-changefeeds.html#resume), and [canceled](stream-data-out-of-cockroachdb-using-changefeeds.html#cancel).
Changefeed jobs can be [paused](stream-data-out-of-cockroachdb-using-changefeeds.html#pause), [resumed](stream-data-out-of-cockroachdb-using-changefeeds.html#resume), or [canceled](stream-data-out-of-cockroachdb-using-changefeeds.html#cancel).

### Filter changefeed jobs

Expand Down
2 changes: 1 addition & 1 deletion v21.2/stream-data-out-of-cockroachdb-using-changefeeds.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ For more information, see [`CHANGEFEED FOR`](changefeed-for.html).

## Configure a changefeed (Enterprise)

An enterprise changefeed streams row-level changes in a configurable format to a configurable sink (i.e., [Kafka](create-changefeed.html#kafka) or a [cloud storage sink](create-changefeed.html#cloud-storage-sink)). You can [create](#create), [pause](#pause), [resume](#resume), [cancel](#cancel), [monitor](#monitor-a-changefeed), and [debug](#debug-a-changefeed) an enterprise changefeed.
An enterprise changefeed streams row-level changes in a configurable format to a configurable sink (i.e., [Kafka](create-changefeed.html#kafka) or a [cloud storage sink](create-changefeed.html#cloud-storage-sink)). You can [create](#create), [pause](#pause), [resume](#resume), [cancel](#cancel), [monitor](#monitor-a-changefeed), or [debug](#debug-a-changefeed) an enterprise changefeed.

### Create

Expand Down

0 comments on commit 8557a68

Please sign in to comment.