12345678910111213141516171819202122232425262728293031323334353637383940 |
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- from fate_arch.storage import StorageSessionBase, StorageEngine
- from fate_arch.abc import AddressABC
- from fate_arch.common.address import LocalFSAddress
- class StorageSession(StorageSessionBase):
- def __init__(self, session_id, options=None):
- super(StorageSession, self).__init__(session_id=session_id, engine=StorageEngine.LOCALFS)
- def table(self, address: AddressABC, name, namespace, partitions, storage_type=None, options=None, **kwargs):
- if isinstance(address, LocalFSAddress):
- from fate_arch.storage.localfs._table import StorageTable
- return StorageTable(address=address, name=name, namespace=namespace,
- partitions=partitions, storage_type=storage_type, options=options)
- raise NotImplementedError(f"address type {type(address)} not supported with hdfs storage")
- def cleanup(self, name, namespace):
- pass
- def stop(self):
- pass
- def kill(self):
- pass
|