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
Theoffsets column returns a JSON array with per-partition consumer offset positions. It is only populated when explicitly selected:
View stream DDL
Theddl 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
offsetscolumn is lazily evaluated and only populated when explicitly included in theSELECTlist. - The
ddlcolumn masks credential values for security. - For more information about object identifiers, see Object identifiers.