Azure / feast-azure

Azure plugins for Feast (FEAture STore)
MIT License
82 stars 52 forks source link

Issue on loading feast - missing module #22

Closed jcordtz closed 2 years ago

jcordtz commented 2 years ago

In the tutorial - step 2 in notebook 2 "Registre..." fails with missing module. The error is triggered by the command "fs = FeatureStore("./feature_repo")" The Feast evrsion is 0.15.1 and the Azure feast provider is 0.2.1.

Error "snippet" first lines and last line. ModuleNotFoundError Traceback (most recent call last) /anaconda/envs/azureml_py38/lib/python3.8/site-packages/feast/infra/online_stores/redis.py in 43 from redis import Redis ---> 44 from rediscluster import RedisCluster ......... FeastModuleImportError: Could not import RedisOnlineStoreConfig module 'feast.infra.online_stores.redis'

samuel100 commented 2 years ago

@jcordtz thanks for raising! Before the fs =FeatureStore() cell, does the error resolve if you add a new cell and run:

!pip install redis-py-cluster==2.1.2

? The suspicion here is that feast has now moved redis out of a required package.

samuel100 commented 2 years ago

There is a bug in setup.py where there is no comma. Resolving now.