From a734c45ae496044343efb4d870c155a9230ec15e Mon Sep 17 00:00:00 2001 From: Achal Shah Date: Tue, 22 Mar 2022 15:12:45 -0700 Subject: [PATCH] chore: Mark DynamoDB's templating logic experimental and add a TODO (#2439) Signed-off-by: Achal Shah --- sdk/python/feast/infra/online_stores/dynamodb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/python/feast/infra/online_stores/dynamodb.py b/sdk/python/feast/infra/online_stores/dynamodb.py index e762713152..86a96239bb 100644 --- a/sdk/python/feast/infra/online_stores/dynamodb.py +++ b/sdk/python/feast/infra/online_stores/dynamodb.py @@ -252,6 +252,8 @@ def _initialize_dynamodb_resource(region: str): return boto3.resource("dynamodb", region_name=region) +# TODO(achals): This form of user-facing templating is experimental. +# Please refer to https://github.com/feast-dev/feast/issues/2438 before building on top of it, def _get_table_name( online_config: DynamoDBOnlineStoreConfig, config: RepoConfig, table: FeatureView ) -> str: