Error on getting feature store

get_feature_store() produces:

TypeError: init() missing 3 required positional arguments: ‘hdfs_store_path’, ‘featurestore_description’, and ‘inode_id’

Previously was struggling with xgboost: Quickstarts tutorial predict fails with xgboost error · Issue #205 · logicalclocks/hopsworks-tutorials · GitHub

This is resolved by upgrading to v3.4.

fields below are removed from 3.4. remove them for backward compatibility.

    json_decamelized.pop("hdfs_store_path", None)
    json_decamelized.pop("featurestore_description", None)
    json_decamelized.pop("inode_id", None)
1 Like