Databricks Certified Machine Learning Professional — Question 33
Which of the following operations in Feature Store Client fs can be used to return a Spark DataFrame of a data set associated with a Feature Store table?
Answer options
- A. fs.create_table
- B. fs.write_table
- C. fs.get_table
- D. There is no way to accomplish this task with fs
- E. fs.read_table
Correct answer: E
Explanation
The correct answer is E, as fs.read_table is specifically designed to read data from a Feature Store table and return it as a Spark DataFrame. The other options either create, write, or retrieve information about tables but do not return the data set directly as a DataFrame.