Expected Behavior
from driver_ratings_feature_view import driver_ratings_fv
from driver_trips_feature_view import driver_stats_fv
driver_stats_fs = FeatureService(
name="driver_activity",
features=[driver_stats_fv, driver_ratings_fv[["lifetime_rating"]]]
)
If I define my feature service as above,
it should return all fields of driver_stats_fv and lifetime_rating field from driver_ratings_fv.
Current Behavior
I get all fields defined in feature views even though I specify a certain field.
Could you please check if this is the right behavior of feature service?
Specifications
- Version: feast 0.23.1
- Platform: Python3.8
- Subsystem: