Materialized View Info
- class databricks.ml_features.entities.materialized_view_info.MaterializedViewInfo(*, pipeline_id: str, pipeline_name: str)
Bases:
_FeatureStoreObjectInformation about a materialized view.
- Parameters
pipeline_id – The ID for the pipeline.
pipeline_name – The name of the pipeline.
- __init__(*, pipeline_id: str, pipeline_name: str)
Initialize a MaterializedViewInfo object. See class documentation.
- property pipeline_id: str
The ID for the pipeline.
- property pipeline_name: str
The name of the pipeline.
Cron Schedule
- class databricks.ml_features.entities.cron_schedule.CronSchedule(*, quartz_cron_expression: str, timezone_id: Optional[str])
Bases:
_FeatureStoreObjectDefines a cron schedule.
- Parameters
quartz_cron_expression – The cron expression to use. See http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html
timezone_id – A Java timezone ID. The schedule for a job is resolved with respect to this timezone. If not provided, UTC will be used. See https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html
- __init__(*, quartz_cron_expression: str, timezone_id: Optional[str])
Initialize a CronSchedule object. See class documentation.
- property quartz_cron_expression: str
The cron expression to use.
- property timezone_id: str
A Java timezone ID. The schedule for a job is resolved with respect to this timezone. See Java TimeZone for details.