Skip to content

hsfs.core.online_ingestion_result #

[source] OnlineIngestionResult #

Metadata object used to provide Online Ingestion Batch Result information.

This class encapsulates the result of a single batch operation during online ingestion, including the ingestion ID, status, and number of rows processed.

[source] online_ingestion_id property #

online_ingestion_id: int

Get the unique identifier for the online ingestion batch.

RETURNS DESCRIPTION
int

The online ingestion batch ID.

TYPE: int

[source] status property #

status: str

Get the status of the ingestion batch.

RETURNS DESCRIPTION
str

The status of the batch (e.g., "UPSERTED", "FAILED").

TYPE: str

[source] rows property #

rows: int

Get the number of rows processed in this batch.

RETURNS DESCRIPTION
int

The number of rows.

TYPE: int