From c21e77a0199ae32d34f13e8e770a869cab4f4b0d Mon Sep 17 00:00:00 2001 From: William Horton Date: Wed, 20 Jul 2022 16:15:16 -0400 Subject: [PATCH] Add CustomSourceOptions to SavedDatasetStorage I am implementing a custom OfflineStore and found that I couldn't use CustomSourceOptions in SavedDatasetStorage: currently you'd have to try to fit your custom options into one of the existing implemented Options structs Signed-off-by: William Horton --- protos/feast/core/SavedDataset.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/feast/core/SavedDataset.proto b/protos/feast/core/SavedDataset.proto index 353e925ad1c..53f06f73a98 100644 --- a/protos/feast/core/SavedDataset.proto +++ b/protos/feast/core/SavedDataset.proto @@ -58,6 +58,7 @@ message SavedDatasetStorage { DataSource.SnowflakeOptions snowflake_storage = 7; DataSource.TrinoOptions trino_storage = 8; DataSource.SparkOptions spark_storage = 9; + DataSource.CustomSourceOptions custom_storage = 10; } }