aws-samples / amazon-sagemaker-feature-store-end-to-end-workshop

MIT No Attribution
128 stars 50 forks source link

Module 2 - nb1 - Browse the set of offline store files in the S3 console - urls are wrong #66

Open psantus opened 5 months ago

psantus commented 5 months ago

Utils.py#L173-179 has the prefix compute with underscores between date parts because it uses the table name.

Browse the set of offline store files in the S3 console.
customers_s3_console_url = Utils.get_offline_store_url(customers_feature_group_name)
products_s3_console_url = Utils.get_offline_store_url(products_feature_group_name)
orders_s3_console_url = Utils.get_offline_store_url(orders_feature_group_name)

logger.info('Review customers offline store partitioned data files here: '+customers_s3_console_url)
logger.info('\nReview products offline store partitioned data files here: '+products_s3_console_url)
logger.info('\nReview orders offline store partitioned data files here: '+orders_s3_console_url)

But the actual url in s3 has hyphens, not underscores.