You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a stream feature view running fine in 0.29. When upgrading to 0.34, getting error on doing feast apply
“feast.errors.ConflictingFeatureViewNames: The feature view name: job_stream refers to feature views of different types.”
Printing type in registry.py in function _check_conflicting_feature_view_names where error is coming.
“print(“feature view instance”, feature_view.proto_class, type(name_to_fv_protos.get(feature_view.name)))”
getting output:
feature view instance <class ‘feast.core.FeatureView_pb2.FeatureView’> <class ‘feast.core.StreamFeatureView_pb2.StreamFeatureView’>
I feel like this might be because of #3582
The text was updated successfully, but these errors were encountered:
I have a stream feature view running fine in 0.29. When upgrading to 0.34, getting error on doing feast apply
“feast.errors.ConflictingFeatureViewNames: The feature view name: job_stream refers to feature views of different types.”
Printing type in registry.py in function _check_conflicting_feature_view_names where error is coming.
“print(“feature view instance”, feature_view.proto_class, type(name_to_fv_protos.get(feature_view.name)))”
getting output:
feature view instance <class ‘feast.core.FeatureView_pb2.FeatureView’> <class ‘feast.core.StreamFeatureView_pb2.StreamFeatureView’>
I feel like this might be because of #3582
The text was updated successfully, but these errors were encountered: