CREATE CHANGEFEED creates a new Enterprise changefeed, which targets an allowlist of tables called “watched rows”. Every change to a watched row is emitted as a record in a configurable format (JSON or Avro) to a configurable sink (Kafka, Google Cloud Pub/Sub, a , or a ). You can create, pause, resume, , or cancel an Enterprise changefeed.
To get started with changefeeds, refer to the page for important usage considerations. For detail on how changefeeds emit messages, refer to the page.
The examples on this page provide the foundational syntax of the CREATE CHANGEFEED statement. For examples on more specific use cases with changefeeds, refer to the following pages:
Required privileges
You can a user theCHANGEFEED privilege to allow them to create changefeeds on a specific table:
CHANGEFEED privilege on a set of tables, they can:
- Create changefeeds on the target tables even if the user does not have the or the
SELECTprivilege on the tables. - Manage the changefeed jobs running on the tables using the , , , and commands.
SELECT query on that data directly. However, they could still read this data indirectly if they have read access to the .
To restrict a user’s access to changefeed data and sink credentials, enable the changefeed.permissions.require_external_connection_sink.enabled cluster setting. When you enable this setting, users with the on a set of tables can only create changefeeds into .
You can add CHANGEFEED to the user or role’s with :
Privilege model
The following summarizes the operations users can run when they have changefeed privileges on a table:Synopsis
Parameters
CDC query parameters
Change data capture queries allow you to define the change data emitted to your sink when you create a changefeed. See the page for detail on the functionality, syntax, and use cases for changefeeds created with queries.Sink URI
This section provides example URIs for each of the sinks that CockroachDB changefeeds support. For more comprehensive detail of using and configuring each sink, refer to the page.
You can create an external connection to represent a changefeed sink URI. This allows you to specify the external connection’s name in statements rather than the provider-specific URI. For detail on using external connections, see the page.
Kafka
Example of a URI:Confluent Cloud
New in v23.2: Example of a URI:Google Cloud Pub/Sub
This feature is in and subject to change. To share feedback and/or issues, contact Support.
changefeed.new_pubsub_sink_enabled cluster setting is enabled by default, which provides improved throughput. For details on the changes to the message format, refer to .
explains the requirements for the authentication parameter with specified or implicit. Refer to for further consideration.
Cloud Storage
The following are example file URLs for each of the cloud storage schemes:
For detail on authentication to cloud storage, refer to the page. Refer to for considerations when using cloud storage.
Webhook
Example of a webhook URI:Query parameters
Parameters should always be URI-encoded before they are included the changefeed’s URI, as they often contain special characters. Use Javascript’s encodeURIComponent function or Go language’s url.QueryEscape function to URI-encode the parameters. Other languages provide similar functions to URI-encode special characters.
Options
Using the
format=avro, envelope=key_only, and updated options together is rejected. envelope=key_only prevents any rows with updated fields from being emitted, which makes the updated option meaningless.Files
The files emitted to a sink use the following naming conventions:The timestamp format is
YYYYMMDDHHMMSSNNNNNNNNNLLLLLLLLLL.General file format
partition_format query parameter. This will result in the following file path formats:
-
daily: This is the default option and will follow the same pattern as the previous general file format. -
hourly: This will partition into an hourly directory as the changefeed emits messages, like the following: -
flat: This will result in no file partitioning. The cloud storage path you specify when creating a changefeed will store all of the message files with no additional directories created.
Resolved file format
Examples
Before running any of the examples in this section it is necessary to . If you are working on a CockroachDB Standard or Basic cluster, this cluster setting is enabled by default. The following examples show the syntax for managing changefeeds and starting changefeeds with different use cases and features. The Options table on this page provides a list of all the available options. For information on sink-specific query parameters and configurations, refer to the page. You can create an external connection to represent a changefeed sink URI. This allows you to specify the external connection’s name in statements rather than the provider-specific URI. For detail on using external connections, see the page. We recommend limiting the number of changefeeds per cluster to 80.Create a changefeed connected to a sink
You can connect a changefeed to the following sinks:- Kafka
- Cloud storage / HTTP
- Google Cloud Pub/Sub
- Webhook
- The page for general detail on query parameters and sink configuration.
- The page for instructions on setting up each supported cloud storage authentication.
Create a changefeed that filters and transforms change data
can filter and transform change data before emitting it to a sink or a SQL client. You can adapt a changefeed with CDC queries by includingSELECT and WHERE clauses in your CREATE statement:
Create a sinkless changefeed
You can create a changefeed that will send messages to the SQL client rather than a sink:Use an external connection to specify a changefeed sink
provide a way to define a name for a sink, which you can use instead of the provider-specific URI. To restrict a user’s access to changefeed data and sink credentials, enable thechangefeed.permissions.require_external_connection_sink.enabled cluster setting. When you enable this setting, users with the on a set of tables can only create changefeeds into .
External connections support all changefeed sinks.
Disallow schema changes on tables to improve changefeed performance
New in v23.2.1: Use theschema_locked to disallow on a watched table, which helps to decrease the latency between a write committing to a table and it emitting to the . You can lock the table before creating a changefeed or while a changefeed is running, which will enable the performance improvement for changefeeds watching the particular table.
Enable schema_locked on the watched table with the statement:
schema_locked is enabled on a table, attempted schema changes on the table will be rejected and an error returned. If you need to run a schema change on the locked table, unlock the table with schema_locked = false, complete the schema change, and then lock the table again with schema_locked = true. The changefeed will run as normal while schema_locked = false, but it will not benefit from the performance optimization.
Manage a changefeed
For Enterprise changefeeds, use to check the status of your changefeed jobs:Pause a changefeed
Resume a paused changefeed
Cancel a changefeed
Modify a changefeed
To modify an Enterprise changefeed, the job and then use:Configuring all changefeeds
It is useful to be able to pause all running changefeeds during troubleshooting, testing, or when a decrease in CPU load is needed. To pause all running changefeeds:paused, which can be verified with .
To resume all running changefeeds:
running.
Start a new changefeed where another ended
In some situations, you may want to start a changefeed where a previously running changefeed ended. For example, a changefeed could encounter an error it cannot recover from, such as when a , and you need to restart the changefeed.-
Use to find the for the ended changefeed:
If a changefeed has failed, you must restart the changefeed from a timestamp after the event that caused the failure.
-
Use the
high_water_timestampto start the new changefeed:
cursor option to start a changefeed, it will not perform an initial scan.
Create a changefeed with an S3 storage class
To associate the changefeed message files with a in your Amazon S3 bucket, use theS3_STORAGE_CLASS parameter with the class. For example, the following S3 connection URI specifies the INTELLIGENT_TIERING storage class:
Define a key to determine the changefeed sink partition
With thekey_column option, you can define the key used in message metadata that determines the partition for the changefeed message at your . This option overrides the default :
key_column does not preserve ordering of messages from CockroachDB to the downstream sink, therefore you must include the unordered option. It does not affect per-key or the output of key_in_value.

