MCPcopy Index your code
hub / github.com/feast-dev/feast / get_data_source

Method get_data_source

sdk/python/feast/feature_store.py:817–830  ·  view source on GitHub ↗

Retrieves the list of data sources from the registry. Args: name: Name of the data source. Returns: The specified data source. Raises: DataSourceObjectNotFoundException: The data source could not be found.

(self, name: str)

Source from the content-addressed store, hash-verified

815 )
816
817 def get_data_source(self, name: str) -> DataSource:
818 """
819 Retrieves the list of data sources from the registry.
820
821 Args:
822 name: Name of the data source.
823
824 Returns:
825 The specified data source.
826
827 Raises:
828 DataSourceObjectNotFoundException: The data source could not be found.
829 """
830 return self.registry.get_data_source(name, self.project)
831
832 def delete_feature_view(self, name: str):
833 """

Calls

no outgoing calls