Skip to content

data_stream_errors

relationalai.api
data_stream_errors

A view that surfaces CDC-related errors and logs for data stream processing. It can include both application logs and errors recorded during data stream batch processing. Requires the rai_user application role.

ColumnTypeDescription
SOURCESTRINGSource system for the row (for example, logs or data_stream_batches).
IDSTRINGIdentifier associated with the error (for example, a logger name or data stream id).
TIMESTAMPTIMESTAMPTime the error/log entry was recorded.
ERRORVARIANTError payload. For logs, this is a string message. For batch errors, this can be structured data.

Show the most recent CDC-related errors:

SELECT *
FROM relationalai.api.data_stream_errors
ORDER BY timestamp DESC;