Skip to main content

No project description provided

Project description

OpenDAL driver

jumpstarter-driver-opendal provides functionality for interacting with storages attached to the exporter.

Installation

:substitutions:
$ pip3 install --extra-index-url {{index_url}} jumpstarter-driver-opendal

Configuration

Example configuration:

:language: yaml

Configuration Parameters

  • scheme (required): The storage service type (e.g., "fs", "s3", "gcs"). See OpenDAL services for supported options.
  • kwargs (required): Service-specific configuration parameters passed to the OpenDAL operator.
  • remove_created_on_close (optional, default: false): When enabled, automatically removes all files and directories created during the session when the driver is closed.

File/Directory Tracking and Cleanup

The OpenDAL driver tracks all files and directories created during a session:

  • File Creation: Files opened in write modes ("wb", "w", "ab", "a")
  • Directory Creation: Directories created via create_dir()
  • Copy Operations: Target files/directories from copy() operations
  • Rename Operations: Target files/directories from rename() operations (source is removed from tracking)

Automatic Cleanup: The tracking is automatically updated when resources are removed:

  • Delete Operations: delete() removes the path from tracking
  • Remove Operations: remove_all() removes the path from tracking

Cleanup Behavior: When remove_created_on_close: true, all tracked files and directories are automatically removed when the driver closes (filesystem only)

Tracking API

# Get all created resources (files and directories)
created_resources = await driver.get_created_resources()  # Returns set[str]

# Example usage
for path in created_resources:
    print(f"Created: {path}")

Use Cases

Temporary File Management:

# Enable cleanup for temporary storage
remove_created_on_close: true

Persistent Storage:

# Disable cleanup to preserve files (default)
remove_created_on_close: false

Note: Pre-existing files that are written to are treated as "created" since they may be remnants from failed cleanup operations.

API Reference

Examples

>>> from tempfile import NamedTemporaryFile
>>> opendal.create_dir("test/directory/")
>>> opendal.write_bytes("test/directory/file", b"hello")
>>> assert opendal.hash("test/directory/file", "md5") == "5d41402abc4b2a76b9719d911017c592"
>>> opendal.remove_all("test/")
from jumpstarter.config.exporter import ExporterConfigV1Alpha1DriverInstance
from jumpstarter.common.utils import serve

instance = serve(
    ExporterConfigV1Alpha1DriverInstance.from_path("source/reference/package-apis/drivers/opendal.yaml"
).instantiate())

opendal = instance.__enter__()
instance.__exit__(None, None, None)

Client API

.. autoclass:: jumpstarter_driver_opendal.client.OpendalClient()
    :members:

.. autoclass:: jumpstarter_driver_opendal.client.OpendalFile()
    :members:

.. autoclass:: jumpstarter_driver_opendal.common.Metadata()
    :members:
    :undoc-members:
    :exclude-members: model_config

.. autoclass:: jumpstarter_driver_opendal.common.EntryMode()
    :members:
    :undoc-members:
    :exclude-members: model_config

.. autoclass:: jumpstarter_driver_opendal.common.PresignedRequest()
    :members:
    :undoc-members:
    :exclude-members: model_config

.. autoclass:: jumpstarter_driver_opendal.common.Capability()
    :members:
    :undoc-members:
    :exclude-members: model_config

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jumpstarter_driver_opendal-0.7.3.tar.gz (15.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jumpstarter_driver_opendal-0.7.3-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file jumpstarter_driver_opendal-0.7.3.tar.gz.

File metadata

File hashes

Hashes for jumpstarter_driver_opendal-0.7.3.tar.gz
Algorithm Hash digest
SHA256 51d27696db195f32f7695eeb87068e545ac60438e369b57bed06518f0a6a70dc
MD5 4e6ec00ecf91c2e542d0c07ec2434881
BLAKE2b-256 4721a1c07111e1a789813b44fde13707b4a8ae3dec741e6c5e10138e74cfadb9

See more details on using hashes here.

File details

Details for the file jumpstarter_driver_opendal-0.7.3-py3-none-any.whl.

File metadata

File hashes

Hashes for jumpstarter_driver_opendal-0.7.3-py3-none-any.whl
Algorithm Hash digest
SHA256 12ca6d974169e2a8d4fe77e93557f3fd84e9b3ff3d97d1549192b9b50ad165be
MD5 49780c996b4ad494e8407bc7988749b3
BLAKE2b-256 d03d99db84cdf02602e3998705ba96f70dadb1383302e03946c598ebd4cb04c6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page