OCIUploader#
- class streaming.base.storage.OCIUploader(out, keep_local=False, progress_bar=False, retry=2, exist_ok=False)[source]#
Upload file from local machine to Oracle Cloud Infrastructure (OCI) Cloud Storage.
- Parameters
out (str | Tuple[str, str]) –
Output dataset directory to save shard files.
If
out
is a local directory, shard files are saved locally.If
out
is a remote directory, a local temporary directory is created to cache the shard files and then the shard files are uploaded to a remote location. At the end, the temp directory is deleted once shards are uploaded.If
out
is a tuple of(local_dir, remote_dir)
, shard files are saved in the local_dir and also uploaded to a remote location.
keep_local (bool) – If the dataset is uploaded, whether to keep the local dataset shard file or remove it after uploading. Defaults to
False
.progress_bar (bool) – Display TQDM progress bars for uploading output dataset files to a remote location. Default to
False
.retry (int) – Number of times to retry uploading a file. Defaults to
2
.exist_ok (bool) – When exist_ok = False, raise error if the local part of
out
already exists and has contents. Defaults toFalse
.
- check_bucket_exists(remote)[source]#
Raise an exception if the bucket does not exist.
- Parameters
remote (str) – OCI bucket path.
- Raises
error – Bucket does not exist.