QuestionQ143
Advanced Feature Store ConceptsA data scientist created a Python function, compute_features, that returns a Spark DataFrame with this schema:

The resulting DataFrame is assigned to the features_df variable. The data scientist needs to create a Feature Store table using features_df.
Which of the following code blocks can be used to create and populate the Feature Store table with the Feature Store Client fs?
- A

- B

- C features_df.write.mode("fs").path("new_table")
- D

- E features_df.write.mode("feature").path("new_table")
Community Discussion