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 am running the streaming features tutorial with the Feast version 0.34.1 and got the error feast.errors.ConflictingFeatureViewNames: The feature view name: driver_hourly_stats_stream refers to feature views of different types while executing feast apply.
Steps to reproduce
Clone the tutorial: git clone https://github.com/feast-dev/streaming-tutorial.git
Install Feast (current version is 0.34.1): pip install 'feast[redis]'
Run the command feast apply and get the ConflictingFeatureViewNames error
I checked the code and agree with your proposed fix. The proto_class() function is not overloaded in the current implementation (master branch after v0.34.1). let me fix this.
Expected Behavior
Expected to successfully register data sources and features as the first cell in the streaming features tutorial
Current Behavior
I am running the streaming features tutorial with the Feast version
0.34.1
and got the errorfeast.errors.ConflictingFeatureViewNames: The feature view name: driver_hourly_stats_stream refers to feature views of different types
while executingfeast apply
.Steps to reproduce
git clone https://github.com/feast-dev/streaming-tutorial.git
0.34.1
):pip install 'feast[redis]'
feast apply
and get theConflictingFeatureViewNames
errorSpecifications
Possible Solution
We can fix the error by implementing the override for the
proto_class
property in the StreamFeatureView class:The text was updated successfully, but these errors were encountered: