コード例 #1
0
ファイル: passthrough_provider.py プロジェクト: dmatrix/feast
    def __init__(self, config: RepoConfig):
        super().__init__(config)

        self.repo_config = config
        self.offline_store = get_offline_store_from_config(
            config.offline_store)
        self.online_store = get_online_store_from_config(config.online_store)
コード例 #2
0
ファイル: local.py プロジェクト: tsotnet/feast
 def __init__(self, config: RepoConfig):
     assert config is not None
     self.config = config
     self.offline_store = get_offline_store_from_config(
         config.offline_store)
     self.online_store = get_online_store_from_config(config.online_store)