From 094a001bd3c9f0ad0627412f9c6362dba051be3f Mon Sep 17 00:00:00 2001 From: Yassin Nouh <70436855+YassinNouh21@users.noreply.github.com> Date: Wed, 2 Apr 2025 01:15:31 +0200 Subject: [PATCH] fix: Update Qdrant online store paths in repo_config.py Fixes incorrect module paths for Qdrant online store in both LEGACY_ONLINE_STORE_CLASS_FOR_TYPE and ONLINE_STORE_CLASS_FOR_TYPE dictionaries. Updates paths from non-existent module to correct location at feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore. Fixes #5206 Signed-off-by: Yassin Nouh <70436855+YassinNouh21@users.noreply.github.com> --- sdk/python/feast/repo_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/python/feast/repo_config.py b/sdk/python/feast/repo_config.py index ef515eba6c5..8b90974233b 100644 --- a/sdk/python/feast/repo_config.py +++ b/sdk/python/feast/repo_config.py @@ -60,7 +60,7 @@ "feast.infra.online_stores.contrib.ikv_online_store.ikv.IKVOnlineStore": "feast.infra.online_stores.ikv_online_store.ikv.IKVOnlineStore", "feast.infra.online_stores.contrib.elasticsearch.ElasticSearchOnlineStore": "feast.infra.online_stores.elasticsearch_online_store.ElasticSearchOnlineStore", "feast.infra.online_stores.contrib.singlestore_online_store.singlestore.SingleStoreOnlineStore": "feast.infra.online_stores.singlestore_online_store.singlestore.SingleStoreOnlineStore", - "feast.infra.online_stores.contrib.qdrant.QdrantOnlineStore": "feast.infra.online_stores.cqdrant.QdrantOnlineStore", + "feast.infra.online_stores.contrib.qdrant.QdrantOnlineStore": "feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore", "feast.infra.online_stores.contrib.milvus.MilvusOnlineStore": "feast.infra.online_stores.milvus.MilvusOnlineStore", } @@ -80,7 +80,7 @@ "elasticsearch": "feast.infra.online_stores.elasticsearch_online_store.ElasticSearchOnlineStore", "remote": "feast.infra.online_stores.remote.RemoteOnlineStore", "singlestore": "feast.infra.online_stores.singlestore_online_store.singlestore.SingleStoreOnlineStore", - "qdrant": "feast.infra.online_stores.cqdrant.QdrantOnlineStore", + "qdrant": "feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore", "couchbase.online": "feast.infra.online_stores.couchbase_online_store.couchbase.CouchbaseOnlineStore", "milvus": "feast.infra.online_stores.milvus_online_store.milvus.MilvusOnlineStore", **LEGACY_ONLINE_STORE_CLASS_FOR_TYPE,