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
This results in error "Client.init() got an unexpected keyword argument 'database'" with google-cloud-datastore <2.16.0 installed.
Steps to reproduce
Attempt to read online features from a known Google Cloud Datastore instance with google-cloud-datastore <2.16.0 and Feast version 0.38. This problem appears to also exist in the latest Feast release.
Specifications
Version: 0.38
Platform: Python, Google Cloud Datastore
Subsystem:
Possible Solution
Increase google-cloud-datastore lower bound in setup.py to >=2.16.0.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Can read online features from a Google Cloud Datastore instance.
Current Behavior
In the Python SDK, FeatureStore class attempts to initialize a datastore Client by passing a 'database' argument. Feast's setup.py lower bounds google-cloud-datastore at 2.1.0 whereas the 'database' argument was not introduced to the datastore Client until version 2.16.0 of google-cloud-datastore: https://github.com/googleapis/python-datastore/blob/v2.16.0/google/cloud/datastore/client.py#L301
This results in error "Client.init() got an unexpected keyword argument 'database'" with google-cloud-datastore <2.16.0 installed.
Steps to reproduce
Attempt to read online features from a known Google Cloud Datastore instance with google-cloud-datastore <2.16.0 and Feast version 0.38. This problem appears to also exist in the latest Feast release.
Specifications
Possible Solution
Increase google-cloud-datastore lower bound in setup.py to >=2.16.0.
The text was updated successfully, but these errors were encountered: