Skip to content

Online Ingestion Result#

[source]

OnlineIngestionResult#

hsfs.core.online_ingestion_result.OnlineIngestionResult(
    online_ingestion_id=None, status=None, rows=None, **kwargs
)

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.


Properties#

[source]

online_ingestion_id#

Get the unique identifier for the online ingestion batch.

Returns

int: The online ingestion batch ID.


[source]

rows#

Get the number of rows processed in this batch.

Returns

int: The number of rows.


[source]

status#

Get the status of the ingestion batch.

Returns

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


Methods#