Reads a saved dataset. Args: config: The config for the current feature store. dataset: A SavedDataset object containing all parameters necessary for retrieving the dataset. Returns: A RetrievalJob that can be executed to get the saved d
(
self, config: RepoConfig, dataset: SavedDataset
)
| 362 | |
| 363 | @abstractmethod |
| 364 | def retrieve_saved_dataset( |
| 365 | self, config: RepoConfig, dataset: SavedDataset |
| 366 | ) -> RetrievalJob: |
| 367 | """ |
| 368 | Reads a saved dataset. |
| 369 | |
| 370 | Args: |
| 371 | config: The config for the current feature store. |
| 372 | dataset: A SavedDataset object containing all parameters necessary for retrieving the dataset. |
| 373 | |
| 374 | Returns: |
| 375 | A RetrievalJob that can be executed to get the saved dataset. |
| 376 | """ |
| 377 | pass |
| 378 | |
| 379 | @abstractmethod |
| 380 | def write_feature_service_logs( |
no outgoing calls
no test coverage detected