Skip to content

Commit 9b33b80

Browse files
committed
remove datastore IDs
1 parent cffb00c commit 9b33b80

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

sdk/python/examples/quickstart/Quickstart.ipynb

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -123,18 +123,13 @@
123123
"# Initialise client\n",
124124
"fs = Client(core_url=FEAST_CORE_URL, verbose=True)\n",
125125
"\n",
126-
"serving_ds=Datastore(id='SERVING')\n",
127-
"warehouse_ds=Datastore(id='WAREHOUSE')\n",
128-
"\n",
129126
"# Create importer\n",
130127
"importer = Importer.from_df(df_complete, \n",
131128
" entity='ride', \n",
132129
" owner='user@website.com', \n",
133130
" staging_location=STAGING_LOCATION,\n",
134131
" id_column='ride', \n",
135-
" timestamp_column='pickup_datetime',\n",
136-
" serving_store=serving_ds,\n",
137-
" warehouse_store=warehouse_ds)\n",
132+
" timestamp_column='pickup_datetime')\n",
138133
"\n",
139134
"# Update feature and entity metadata. Ideally you want to update these manually\n",
140135
"# so that they contain adequate information for the next user\n",
@@ -267,4 +262,4 @@
267262
},
268263
"nbformat": 4,
269264
"nbformat_minor": 2
270-
}
265+
}

0 commit comments

Comments
 (0)