We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf00235 commit 01a59b1Copy full SHA for 01a59b1
sagemaker-featurestore/feature_store_introduction.ipynb
@@ -290,7 +290,16 @@
290
"metadata": {},
291
"outputs": [],
292
"source": [
293
- "time.sleep(60)"
+ "def check_feature_group_status(feature_group):\n",
294
+ " status = feature_group.describe().get(\"FeatureGroupStatus\")\n",
295
+ " while status == \"Creating\":\n",
296
+ " print(\"Waiting for Feature Group to be Created\")\n",
297
+ " time.sleep(5)\n",
298
299
+ " print(f\"FeatureGroup {feature_group.name} successfully created.\")\n",
300
+ " \n",
301
+ "check_feature_group_status(customers_feature_group)\n",
302
+ "check_feature_group_status(orders_feature_group)"
303
]
304
},
305
{
0 commit comments