Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
After instantiating FeatureStoreClient as fs, the following code snippet results in an error. What is the correct way to fix this code?
fs.create_table( name=table_name, schema=airbnb_df.schema, description="All Errors are captured in this table" )
A
By changing fs.create_table to fs.write_table.
fs.create_table
fs.write_table
B
By adding the df parameter inside fs.create_table.
df
fs.create_table( name=table_name, df=airbnb_df, schema=airbnb_df.schema, description="All Errors are captured in this table" )
C
By changing fs.create_table to fs.createtable.
fs.createtable
D
By adding primary_keys parameter inside fs.create_table.
primary_keys
fs.create_table( name=table_name, primary_keys=['column1', 'column2'], schema=airbnb_df.schema, description="All Errors are captured in this table" )