DataSource
A DataSource object represents a collection of source tables that the feature store can access.
This object is obtained from the FeatureStore object it is linked to using the get_data_source()
method:
Follow below steps to access the source tables available in the data source:
- Retrieve the list of databases in the data source using the
list_databases()
method: - Obtain the list of schemas within the desired database using the
list_schemas()
method: - Access the list of tables contained in the selected schema using the
list_source_tables()
method: - Obtain a SourceTable object using the
get_source_table()
method: