Skip to main content
You can use the information_schema.streams view to return information about each stream in your Firebolt account: Kafka streams as well as Postgres and MongoDB change data capture streams. The view contains one row for each stream. Use a SELECT query to return information about each stream as shown in the example below.

Columns in information_schema.streams

Each row has the following columns with information about each stream:

Examples

View all streams

View stream offsets

The offsets column returns a JSON array with per-partition consumer offset positions. It is only populated when explicitly selected:
Example output:

View stream DDL

The ddl column contains the original CREATE STREAM statement with credentials masked:

Filter streams by schema

Notes

  • All identifiers are case-insensitive unless enclosed in double-quotes.
  • The offsets column is lazily evaluated and only populated when explicitly included in the SELECT list.
  • The ddl column masks credential values for security.
  • For more information about object identifiers, see Object identifiers.