Registration inferencing
Overview
FeatureView - When the
featuresparameter is left out of the feature view definition, upon afeast applycall, Feast will automatically consider every column in the data source as a feature to be registered other than the specific timestamp columns associated with the underlying data source definition (e.g. timestamp_field) and the columns associated with the feature view's entities.DataSource - When the
timestamp_fieldparameter is left out of the data source definition, upon a 'feast apply' call, Feast will automatically find the sole timestamp column in the table underlying the data source and use that as thetimestamp_field. If there are no columns of timestamp type or multiple columns of timestamp type,feast applywill throw an exception.Entity - When the
value_typeparameter is left out of the entity definition, upon afeast applycall, Feast will automatically find the column corresponding with the entity'sjoin_keyand take that column's data type to be thevalue_type. If the column doesn't exist,feast applywill throw an exception.
Last updated
Was this helpful?