Skip to content

StreamingQueryStatus

Defined in: streaming/types.ts:24

Snapshot of a streaming query’s runtime state, as returned by StreamingQuery.status.

isActive: boolean;

Defined in: streaming/types.ts:32

Whether the query is still running (not yet stopped or failed).


isDataAvailable: boolean;

Defined in: streaming/types.ts:28

Whether new input data is available to be processed.


isTriggerActive: boolean;

Defined in: streaming/types.ts:30

Whether a trigger is currently active (processing a batch).


message: string;

Defined in: streaming/types.ts:26

Human-readable description of what the query is doing right now.