Skip to main content
Change data capture queries allow you to define the change data emitted to your sink when you create a changefeed. The expression syntax provides a way to select columns and apply filters to further restrict or transform the data in your . You can use CDC queries to do the following:
  • Filter out specific rows and columns from changefeed messages to decrease the load on your downstream sink and support outbox workloads.
  • Modify data before it emits to reduce the time and operational burden of filtering or transforming data downstream.
  • Stabilize or customize the schema of your changefeed messages for increased compatibility with external systems.
You can use any CockroachDB-supported SQL expression syntax that is not listed in Known limitations to build a changefeed query. See the Examples section for further use cases.

Syntax

There are two possible components to CDC queries:
  • Projections select the columns that you want to emit data from.
  • Predicates restrict the resulting column change data based on the filters you apply.
ParameterDescription
sinkSpecify the sink URL to emit change data to. See for a list of supported sinks. It is also possible to run a changefeed without a sink CREATE CHANGEFEED WITH..., which will send changes to the active SQL session.
optionsSet options on the changefeed. See the table for a full list.
projectionSelect the columns from which to emit data.
tableDefine the table to which the columns belong.
predicateApply optional filters with a WHERE clause.
For a SQL diagram of the CDC query syntax, see the page. To emit different properties for a row, specify the following explicitly in CDC queries:
  • cdc_prev: A tuple-typed column that gives changefeeds access to the previous state of a row. For newly inserted rows in a table, the cdc_prev column will emit as NULL. See the Emit the previous state of a row example for more detail.
  • CDC queries support , for example: - crdb_internal_mvcc_timestamp: Records the timestamp of each row created in a table. If you do not have a timestamp column in the target table, you can access crdb_internal_mvcc_timestamp in a changefeed. See the Determine the age of a row example.
When changes happen to a column that is part of a composite , the changefeed will produce a delete message and then an insert message.

Known limitations

  • You can only apply CDC queries on a single table in each statement.
  • Some , notably functions that return MVCC timestamps, are overridden to return the MVCC timestamp of the event, e.g., transaction_timestamp or statement_timestamp. Additionally, some , such as now() are not supported. We recommend using the transaction_timestamp() function or the crdb_internal_mvcc_timestamp column instead.
  • The following are not permitted in CDC queries:
    • .
    • Sub-select queries.
    • and (i.e., functions operating over many rows).
  • delete changefeed events will only contain the . All other columns will emit as NULL. See for detail on running a CDC query that emits the deleted values.
  • is not fully supported with changefeeds that use CDC queries. You can alter the options that a changefeed uses, but you cannot alter the changefeed target tables.
  • Creating a changefeed with CDC queries on tables with more than one is not supported.

CDC query function support

The following table outlines functions that are useful with CDC queries:
FunctionDescription
changefeed\_creation\_timestamp()Returns the decimal MVCC timestamp when the changefeed was created. Use this function to build CDC queries that restrict emitted events by time. changefeed\_creation\_timestamp() can serve a similar purpose to the , which is not supported with CDC queries.
event\_op()Returns a string describing the type of event. If a changefeed is running with the option, then this function returns 'insert', 'update', or 'delete'. If a changefeed is running without the diff option, it is not possible to determine an update from an insert, so event\_op() returns 'upsert' or 'delete'. If you’re using CDC queries to filter only for the type of change operation, we recommend specifying the for this metadata instead.
event\_schema\_timestamp()Returns the timestamp of events that cause a to emit. When the schema change event does not result in a table backfill or scan, event\_schema\_timestamp() will return the event’s timestamp. When the schema change event does result in a table backfill or scan, event\_schema\_timestamp() will return the timestamp at which the backfill/scan is read — the of the changefeed.
You can also use the following functions in CDC queries:
  • Functions marked as “Immutable” on the .
  • Non-volatile . See the Queries and user-defined functions example.
  • Functions that rely on . At the time of changefeed creation, information about the current session is saved. When a CDC query includes one of the functions that use session data, the query will evaluate the saved session data.
  • The following “Stable” functions:
    • age()
    • array_to_json()
    • array_to_string()
    • crdb_internal.cluster_id()
    • date_part()
    • date_trunc()
    • extract()
    • format()
    • jsonb_build_array()
    • jsonb_build_object()
    • to_json()
    • to_jsonb()
    • row_to_json()
    • overlaps()
    • pg_collation_for()
    • pg_typeof()
    • quote_literal()
    • quote_nullable()

Unsupported functions

You can not use the following functions with CDC queries:
  • Functions marked as “Volatile” on the .
  • Functions listed in the Known limitations section on this page.
  • Functions marked as “Stable” on the , except for those listed previously.

Examples

CDC queries allow you to customize your changefeed for particular scenarios. This section outlines several possible use cases for CDC queries. CDC queries use message format by default. The bare message envelope places the output of the SELECT clause at the top level of the message instead of under an "after" key. When there is additional information that the changefeed is sending, such as or timestamps, the messages will include a crdb field containing this information. Refer to the page for more detail. Depending on how you are filtering or adapting the message envelope with a CDC query and which sink you’re emitting to, message output may vary from some of the example cases in this section. Refer to for examples on using the foundational syntax to create a changefeed. For information on sinks, refer to the page.

Filter columns

To only emit data from specific columns in a table, you can use SELECT {columns} to define the table’s columns. As an example, using the users table from the , you can create a changefeed that will emit messages including only the name and city column data:

Filter delete messages

To remove the from a changefeed stream, use the event_op() function:
Filtering delete messages from your changefeed is helpful for certain outbox table use cases. See Queries and the outbox pattern for further detail.

Capture delete messages

Delete changefeed messages will only contain the value and all other columns will emit as NULL (see the Known limitations). To emit the deleted values, use the , , and options:
This will produce a JSON object with before and after keys that contain the prior and current states of the row:
The before value in the delete message, produced by the diff option, will include the entire row. That is, it will not include any projections from a CDC query.

Emit the previous state of a row

Changefeeds can access the cdc_prev hidden column on a table to emit the previous state of a row or column. cdc_prev is a tuple-typed column that contains the table’s columns. To emit the previous state of a row, it is necessary to explicitly call cdc_prev:
To emit the previous state of a column, you can specify this as a named field from the cdc_prev tuple with the following syntax:
For newly inserted rows in a table, the cdc_prev column will emit as NULL.
If you do not need to select specific columns in a table or filter rows from a changefeed, you can instead create a changefeed using the to emit a before field with each message. This field includes the value of the row before the update was applied.

Reference TTL in a CDC query

In CockroachDB, table row deletes occur as a result of or through . When your changefeed emits , you may need to distinguish between these two types of deletion. For example, only emitting messages for row-level TTL deletes from your changefeed. If you have TTL logic defined with ttl_expiration_expression or ttl_expire_after, you can leverage CDC queries to determine whether or not a given row was expired at the time of the changefeed event, including a delete event. Most users should use ttl_expiration_expression instead of ttl_expire_after for the following reasons:
  • If you add ttl_expire_after to an existing table, it will cause a full table rewrite, which can affect performance. Specifically, it will result in a that (1) creates a new crdb_internal_expiration for all rows, and (2) backfills the value of that new column to now() + ttl_expire_after.
  • You cannot use ttl_expire_after with an existing column.
  • If you use ttl_expiration_expression, you can use an existing column called e.g. updated_at.
For more detail, refer to the page.

ttl_expiration_expression

In some cases, you may have custom expiration logic on rows in a table. You can also write a CDC query to emit rows that have deleted through row-level TTL using a custom TTL expression. In the following example, the table uses the storage parameter to reference the expired_at column. To create a changefeed on this table to explicitly emit the previous state of the row for TTL deletions:
For the CREATE TABLE statement and further details on ttl_expiration_expression, refer to .

ttl_expire_after

When the table uses the ttl_expire_after storage parameter, you can emit rows that were deleted after expiring from the changefeed with syntax similar to:
This changefeed statement:
  • Accesses the cdc_prev column for the previous state of the row.
  • Searches for delete events in that previous state.
  • Finds the TTL expiration timestamp of the deleted rows where it is earlier than the current statement timestamp.
For the CREATE TABLE statement and further details on ttl_expire_after, refer to .
This will only emit rows that were deleted after expiring. Furthermore, consider that a during the window between the row expiring and the TTL job running will also cause this message to emit from the changefeed.
Equally, you can remove the delete messages for expired rows so that they do not emit from your changefeed:

Geofilter a changefeed

When you are working with a , you can filter the changefeed on the crdb_region column to create a region-specific changefeed:
For more detail on targeting REGIONAL BY ROW tables with changefeeds, see .
If you are running changefeeds from a cluster, you may want to define which nodes take part in running the changefeed job. You can use the with key-value pairs to specify the nodes must meet.

Stabilize the changefeed message schema

As changefeed messages emit from the database, message formats can vary as tables experience . You can select columns with to prevent message fields from changing during a changefeed’s lifecycle:

Shard changefeed messages

CDC queries allow you to emit changefeed messages from the same table to different endpoints. As a result, you can use queries to load balance messages across changefeed sinks without the need for an intermediate system. In this example, the query uses the ride_id column’s to shard the messages. The function filters the first character from the ride_id column and finds the specified initial characters. The example shards successfully by running a changefeed on the same table and dividing the 16 possible beginning UUID characters through to f. Therefore, the first changefeed created:
The final changefeed created:

View recent changes to a row

You can use CDC queries as a tool for debugging or investigating issues from the SQL shell. For example, you may need to identify what recently changed in a specific row. You can use the option with the desired start time and a WHERE clause describing the row in question. Instead of sending to a sink, a “sinkless” changefeed will allow you to view the results in the SQL shell.
  1. Find the start time. Use the function to calculate the logical time. This will return the logical timestamp for an hour earlier than the statement run time:
  2. Run the changefeed without a sink and pass the start time to the cursor option:
  3. To find changes within a time period, use cursor with the option:

Determine the age of a row

You can determine the age of a row by using the crdb_internal_mvcc_timestamp system column and cdc_prev to access the row’s previous state:

Recover lost messages

In the event that an incident downstream has affected some rows, you may need a way to recover or evaluate the specific rows. Create a new changefeed that only watches for the affected row(s). Here, the example uses the row’s primary key:
The changefeed will return messages for the specified rows:
The output will only include the row’s history that has been changed within the . If the change occurred outside of the garbage collection window, it will not be returned as part of this output. See for more detail on how the garbage collection window interacts with changefeeds.

Customize changefeed messages

You can adapt your by filtering the columns, but it is also possible to build message fields with SQL expressions. In this example, the query adds a summary field to the changefeed message:

Create a scheduled changefeed to export filtered data

This example creates a nightly export of some filtered table data with a that will run just after midnight every night. The changefeed uses to query the table and filter the data it will send to the sink:
The control the schedule’s behavior:
  • If it runs into a failure, on_execution_failure=retry will ensure that the schedule retries the changefeed immediately.
  • If the previous scheduled changefeed is still running, on_previous_running=start will start a new changefeed at the defined cadence.

Queries and the outbox pattern

The transactional outbox pattern provides a way to publish events reliably through an outbox table before sending to the messaging system. CDC queries can help to streamline this process by eliminating the need for an outbox table in the database. If you also have a requirement to transform the data or remove delete messages from the changefeed payload, queries can achieve this. For example, you have three tables: users, accounts, and dogs. You need to send all changes to any of those tables to a single Kafka endpoint using a specific structure. Namely, a JSON object like the following:
To achieve this, you create changefeeds directly on the tables and transform the result into the required format. For the previous JSON example:
This statement does the following:
  • Selects the event_timestamp of the event and casts to an INT.
  • Sets the type of change using the event_op() function.
  • Uses to construct the desired data field.
For the remaining tables, you use the same statement structure to create changefeeds that will send messages to the Kafka endpoint:
For a different usage of the outbox pattern, you may still want an events table to track and manage the lifecycle of an event. You can also use CDC queries in this case to filter the event management metadata out of a message. For example, when you delete a message in your outbox table after processing it (or with ). You can filter the delete messages from your changefeed:
Similarly, if you have a status column in your outbox table tracking its lifecycle, you can filter out updates as well so that only the initial insert sends a message:
Since all non-primary key columns will be NULL in the cdc_prev output for an insert message, insert messages will be sent. Updates will not send, as long as the status was not previously NULL.

Queries and user-defined functions

You can create CDC queries that include . The following statement builds the doubleRevenue() function at the database level:
You can then use this function within a CDC query tagetting a table in the same database:

Video Demo

For a demo on how to harness CDC Queries to filer and produce JSON events, watch the following video:

See also