Use the run() method to run the feature process.
Optional Parameters
- filters
- Specifies the filters to be applied on the data source while ingesting feature values for FeatureProcess. Mutually exclusive with the "filter_manager" argunent.
- as_of
- Specifies the time period for which feature values are ingested.
If as_of is specified as either string or datetime.datetime, then the specified value is considered as starting time period and ending time period is considered as 31-DEC-9999 23:59:59.999999+00:00.
- filter_manager
- Specifies the filter manager to be used for applying filters on the data source while ingesting feature values for FeatureProcess.Mutually exclusive with "filters" argument.
- resume
- Specifies whether to resume a previously interrupted feature process.
- The "resume" argument is applicable only when "filter_manager" is provided. If "filter_manager" is not specified, the "resume" argument is ignored.
- When "resume" is set to True and "filter_manager" is provided, processing resumes from the last interrupted filter_id in the filter manager.
Default value: False