Skip to content

hsfs.core.monitoring_window_config #

[source] MonitoringWindowConfig #

[source] id property #

id: int | None

Id of the window configuration.

[source] window_config_type property writable #

window_config_type: WindowConfigType

Type of the window. It can be one of ALL_TIME, ROLLING_TIME, TRAINING_DATASET or SPECIFIC_VALUE.

[source] time_offset property #

time_offset: str | None

The time offset from the current time to the start of the time window. Only used for windows of type ROLLING_TIME.

[source] window_length property writable #

window_length: str | None

The length of the time window. Only used for windows of type ROLLING_TIME.

[source] training_dataset_version property writable #

training_dataset_version: int | None

The version of the training dataset to use as reference. Only used for windows of type TRAINING_DATASET.

[source] specific_value property writable #

specific_value: float | None

The specific value to use as reference. Only used for windows of type SPECIFIC_VALUE.

[source] row_percentage property writable #

row_percentage: float | None

The percentage of rows to fetch and compute the statistics on. Only used for windows of type ROLLING_TIME and ALL_TIME.