Skip to content

StreamingQueryException

Defined in: streaming/types.ts:79

The exception that caused a streaming query to fail, as reported by the server. Fields are optional because the server only sets them when the query has actually failed.

optional errorClass?: string;

Defined in: streaming/types.ts:83

Spark error class identifier (e.g. "DATA_SOURCE_NOT_FOUND").


optional message?: string;

Defined in: streaming/types.ts:81

The original exception’s toString().


optional stackTrace?: string;

Defined in: streaming/types.ts:85

Server-side stack trace, preformatted as a single string.