@hashgraph/solo
    Preparing search index...

    The storage backend implementations provide the logic to read and write configuration and other persistent data layer elements to and from various storage mediums.

    The Data Layer API must provide the following minimal set of implementations:

    • Local File System
    • Kubernetes ConfigMap
    • Kubernetes Secret (for future use)
    • Environment Variables

    Storage backends should not attempt to interpret or validate the data being read or written, but should handle the conversion of plain javascript objects to the underlying data format and vice versa.

    Implements

    Index

    Constructors

    Properties

    prefix?: string

    Methods

    • Deletes the persisted data from the storage backend. Not all storage backends support deletion.

      Parameters

      • key: string

        The key to use to delete the data from the storage backend. The key is implementation specific and might be a file path, a config map name, or an environment variable prefix.

      Returns Promise<void>

    • Let prefix = SOLO Let separator = _

      Given: env = SOLO_CACHE_DIR=/tmp cfg = solo.cache.dir=/tmp Then: key = cache.dir rnode = cache lnode = dir ltype = string value = /tmp

      Given: env = SOLO_DEPLOYMENTS_0_NAME=deployment1 cfg = solo.deployments.0.name=deployment1 Then: key = deployments.0.name rnode = deployments inode = 0 itype = array lnode = name ltype = string

      Given: env = SOLO_DEPLOYMENTS_0_CLUSTERS_0=e2e-cluster-1 cfg = solo.deployments.0.clusters.0=e2e-cluster-1 Then: key = deployments.0.clusters.0 rnode = deployments rtype = array lnode = clusters ltype = array

      Returns Promise<string[]>

      • Reads the persisted data from the storage backend and marshals it into bytes.

        Parameters

        • key: string

          The key to use to read the data from the storage backend. The key is implementation specific and might be a file path, a config map name, or an environment variable prefix.

        Returns Promise<Buffer<ArrayBufferLike>>

        The persisted data represented as a byte array.

      • Write the configuration data to the storage backend by marshalling the bytes into the underlying persistent data format.

        Parameters

        • key: string

          The key to use to write the data to the storage backend. The key is implementation specific and might be a file path, a config map name, or an environment variable prefix.

        • data: Buffer

          The persistent data represented as a byte array.

        Returns Promise<void>