Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion infra/feast-operator/api/v1/featurestore_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ var ValidOfflineStoreFilePersistenceTypes = []string{
// OfflineStoreDBStorePersistence configures the DB store persistence for the offline store service
type OfflineStoreDBStorePersistence struct {
// Type of the persistence type you want to use.
// +kubebuilder:validation:Enum=snowflake.offline;bigquery;redshift;spark;postgres;trino;athena;mssql;couchbase.offline;clickhouse;ray
// +kubebuilder:validation:Enum=snowflake.offline;bigquery;redshift;spark;postgres;trino;athena;mssql;couchbase.offline;clickhouse;ray;sqlalchemy
Type string `json:"type"`
// Data store parameters should be placed as-is from the "feature_store.yaml" under the secret key. "registry_type" & "type" fields should be removed.
SecretRef corev1.LocalObjectReference `json:"secretRef"`
Expand All @@ -353,6 +353,7 @@ var ValidOfflineStoreDBStorePersistenceTypes = []string{
"couchbase.offline",
"clickhouse",
"ray",
"sqlalchemy",
}

// OnlineStore configures the online store service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ metadata:
}
]
capabilities: Basic Install
createdAt: "2026-02-17T13:52:39Z"
createdAt: "2026-02-22T16:18:03Z"
operators.operatorframework.io/builder: operator-sdk-v1.38.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
name: feast-operator.v0.60.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@ spec:
- couchbase.offline
- clickhouse
- ray
- sqlalchemy
type: string
required:
- secretRef
Expand Down Expand Up @@ -5115,6 +5116,7 @@ spec:
- couchbase.offline
- clickhouse
- ray
- sqlalchemy
type: string
required:
- secretRef
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@ spec:
- couchbase.offline
- clickhouse
- ray
- sqlalchemy
type: string
required:
- secretRef
Expand Down Expand Up @@ -5115,6 +5116,7 @@ spec:
- couchbase.offline
- clickhouse
- ray
- sqlalchemy
type: string
required:
- secretRef
Expand Down
2 changes: 2 additions & 0 deletions infra/feast-operator/dist/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,7 @@ spec:
- couchbase.offline
- clickhouse
- ray
- sqlalchemy
type: string
required:
- secretRef
Expand Down Expand Up @@ -5123,6 +5124,7 @@ spec:
- couchbase.offline
- clickhouse
- ray
- sqlalchemy
type: string
required:
- secretRef
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ milvus = [
]
mssql = ["ibis-framework[mssql]>=10.0.0"]
mysql = ["pymysql", "types-PyMySQL"]
oracle = ["oracledb>=2.0.0"]
opentelemetry = ["prometheus_client", "psutil"]
openlineage = ["openlineage-python>=1.40.0"]
spark = ["pyspark>=4.0.0"]
Expand Down Expand Up @@ -178,7 +179,7 @@ ci = [
"types-setuptools",
"types-tabulate",
"virtualenv<20.24.2",
"feast[aws, azure, cassandra, clickhouse, couchbase, delta, docling, duckdb, elasticsearch, faiss, gcp, ge, go, grpcio, hazelcast, hbase, ibis, ikv, image, k8s, mcp, milvus, mssql, mysql, openlineage, opentelemetry, spark, trino, postgres, pytorch, qdrant, rag, ray, redis, singlestore, snowflake, sqlite_vec]"
"feast[aws, azure, cassandra, clickhouse, couchbase, delta, docling, duckdb, elasticsearch, faiss, gcp, ge, go, grpcio, hazelcast, hbase, ibis, ikv, image, k8s, mcp, milvus, mssql, mysql, oracle, openlineage, opentelemetry, spark, trino, postgres, pytorch, qdrant, rag, ray, redis, singlestore, snowflake, sqlite_vec]"
]
nlp = ["feast[docling, image, milvus, pytorch, rag]"]
dev = ["feast[ci]"]
Expand Down
4 changes: 4 additions & 0 deletions sdk/python/feast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
from feast.infra.offline_stores.contrib.athena_offline_store.athena_source import (
AthenaSource,
)
from feast.infra.offline_stores.contrib.sqlalchemy_offline_store.sqlalchemy_source import (
SQLAlchemySource,
)
from feast.infra.offline_stores.file_source import FileSource
from feast.infra.offline_stores.redshift_source import RedshiftSource
from feast.infra.offline_stores.snowflake_source import SnowflakeSource
Expand Down Expand Up @@ -53,6 +56,7 @@
"FileSource",
"RedshiftSource",
"SnowflakeSource",
"SQLAlchemySource",
"PushSource",
"RequestSource",
"AthenaSource",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2024 The Feast Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from feast.infra.offline_stores.contrib.sqlalchemy_offline_store.sqlalchemy import (
SQLAlchemyOfflineStore,
SQLAlchemyOfflineStoreConfig,
)
from feast.infra.offline_stores.contrib.sqlalchemy_offline_store.sqlalchemy_source import (
SQLAlchemySource,
)

__all__ = [
"SQLAlchemySource",
"SQLAlchemyOfflineStore",
"SQLAlchemyOfflineStoreConfig",
]
Loading
Loading