Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
snowflake online test fixes
Signed-off-by: Miles Adkins <miles.adkins@snowflake.com>
  • Loading branch information
sfc-gh-madkins committed Jul 28, 2022
commit 98e3a5cb8d6b3fcb54675830ee05f33e996446ce
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,16 @@
"password": os.environ["SNOWFLAKE_CI_PASSWORD"],
"role": os.environ["SNOWFLAKE_CI_ROLE"],
"warehouse": os.environ["SNOWFLAKE_CI_WAREHOUSE"],
"database": "FEAST",
"schema": "ONLINE",
}


OFFLINE_STORE_TO_PROVIDER_CONFIG: Dict[str, DataSourceCreator] = {
"file": ("local", FileDataSourceCreator),
"bigquery": ("gcp", BigQueryDataSourceCreator),
"redshift": ("aws", RedshiftDataSourceCreator),
"snowflake": ("aws", SnowflakeDataSourceCreator),
"snowflake": ("aws", RedshiftDataSourceCreator),
}

AVAILABLE_OFFLINE_STORES: List[Tuple[str, Type[DataSourceCreator]]] = [
Expand All @@ -113,7 +115,7 @@
AVAILABLE_ONLINE_STORES["redis"] = (REDIS_CONFIG, None)
AVAILABLE_ONLINE_STORES["dynamodb"] = (DYNAMO_CONFIG, None)
AVAILABLE_ONLINE_STORES["datastore"] = ("datastore", None)
#AVAILABLE_ONLINE_STORES["snowflake"] = (SNOWFLAKE_CONFIG, None)
AVAILABLE_ONLINE_STORES["snowflake"] = (SNOWFLAKE_CONFIG, None)


full_repo_configs_module = os.environ.get(FULL_REPO_CONFIGS_MODULE_ENV_NAME)
Expand Down