Class FsBlobContainer

java.lang.Object
org.elasticsearch.common.blobstore.support.AbstractBlobContainer
org.elasticsearch.common.blobstore.fs.FsBlobContainer
All Implemented Interfaces:
BlobContainer

public class FsBlobContainer
extends AbstractBlobContainer
A file system based implementation of BlobContainer. All blobs in the container are stored on a file system, the location of which is specified by the BlobPath. Note that the methods in this implementation of BlobContainer may additionally throw a SecurityException if the configured SecurityManager does not permit read and/or write access to the underlying files.
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected FsBlobStore blobStore  
    protected java.nio.file.Path path  
  • Constructor Summary

    Constructors
    Constructor Description
    FsBlobContainer​(FsBlobStore blobStore, BlobPath blobPath, java.nio.file.Path path)  
  • Method Summary

    Modifier and Type Method Description
    boolean blobExists​(java.lang.String blobName)
    Tests whether a blob with the given blob name exists in the container.
    java.util.Map<java.lang.String,​BlobContainer> children()
    Lists all child containers under this container.
    DeleteResult delete()
    Deletes this container and all its contents from the repository.
    void deleteBlobsIgnoringIfNotExists​(java.util.List<java.lang.String> blobNames)
    Deletes the blobs with given names.
    static boolean isTempBlobName​(java.lang.String blobName)
    Returns true if the blob is a leftover temporary blob.
    java.util.Map<java.lang.String,​BlobMetadata> listBlobs()
    Lists all blobs in the container.
    java.util.Map<java.lang.String,​BlobMetadata> listBlobsByPrefix​(java.lang.String blobNamePrefix)
    Lists all blobs in the container that match the specified prefix.
    void moveBlobAtomic​(java.lang.String sourceBlobName, java.lang.String targetBlobName, boolean failIfAlreadyExists)  
    java.io.InputStream readBlob​(java.lang.String name)
    Creates a new InputStream for the given blob name.
    java.io.InputStream readBlob​(java.lang.String blobName, long position, long length)
    Creates a new InputStream that can be used to read the given blob starting from a specific position in the blob.
    long readBlobPreferredLength()
    Provides a hint to clients for a suitable length to use with BlobContainer.readBlob(String, long, long).
    static java.lang.String tempBlobName​(java.lang.String blobName)  
    void writeBlob​(java.lang.String blobName, java.io.InputStream inputStream, long blobSize, boolean failIfAlreadyExists)
    Reads blob content from the input stream and writes it to the container in a new blob with the given name.
    void writeBlob​(java.lang.String blobName, BytesReference bytes, boolean failIfAlreadyExists)
    Reads blob content from a BytesReference and writes it to the container in a new blob with the given name.
    void writeBlobAtomic​(java.lang.String blobName, BytesReference bytes, boolean failIfAlreadyExists)
    Reads blob content from a BytesReference and writes it to the container in a new blob with the given name, using an atomic write operation if the implementation supports it.

    Methods inherited from class org.elasticsearch.common.blobstore.support.AbstractBlobContainer

    path

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • blobStore

      protected final FsBlobStore blobStore
    • path

      protected final java.nio.file.Path path
  • Constructor Details

    • FsBlobContainer

      public FsBlobContainer​(FsBlobStore blobStore, BlobPath blobPath, java.nio.file.Path path)
  • Method Details

    • listBlobs

      public java.util.Map<java.lang.String,​BlobMetadata> listBlobs() throws java.io.IOException
      Description copied from interface: BlobContainer
      Lists all blobs in the container.
      Returns:
      A map of all the blobs in the container. The keys in the map are the names of the blobs and the values are BlobMetadata, containing basic information about each blob.
      Throws:
      java.io.IOException - if there were any failures in reading from the blob container.
    • children

      public java.util.Map<java.lang.String,​BlobContainer> children() throws java.io.IOException
      Description copied from interface: BlobContainer
      Lists all child containers under this container. A child container is defined as a container whose BlobContainer.path() method returns a path that has this containers BlobContainer.path() return as its prefix and has one more path element than the current container's path.
      Returns:
      Map of name of the child container to child container
      Throws:
      java.io.IOException - on failure to list child containers
    • listBlobsByPrefix

      public java.util.Map<java.lang.String,​BlobMetadata> listBlobsByPrefix​(java.lang.String blobNamePrefix) throws java.io.IOException
      Description copied from interface: BlobContainer
      Lists all blobs in the container that match the specified prefix.
      Parameters:
      blobNamePrefix - The prefix to match against blob names in the container.
      Returns:
      A map of the matching blobs in the container. The keys in the map are the names of the blobs and the values are BlobMetadata, containing basic information about each blob.
      Throws:
      java.io.IOException - if there were any failures in reading from the blob container.
    • delete

      public DeleteResult delete() throws java.io.IOException
      Description copied from interface: BlobContainer
      Deletes this container and all its contents from the repository.
      Returns:
      delete result
      Throws:
      java.io.IOException - on failure
    • deleteBlobsIgnoringIfNotExists

      public void deleteBlobsIgnoringIfNotExists​(java.util.List<java.lang.String> blobNames) throws java.io.IOException
      Description copied from interface: BlobContainer
      Deletes the blobs with given names. This method will not throw an exception when one or multiple of the given blobs don't exist and simply ignore this case.
      Parameters:
      blobNames - The names of the blob to delete.
      Throws:
      java.io.IOException - if a subset of blob exists but could not be deleted.
    • blobExists

      public boolean blobExists​(java.lang.String blobName)
      Description copied from interface: BlobContainer
      Tests whether a blob with the given blob name exists in the container.
      Parameters:
      blobName - The name of the blob whose existence is to be determined.
      Returns:
      true if a blob exists in the BlobContainer with the given name, and false otherwise.
    • readBlob

      public java.io.InputStream readBlob​(java.lang.String name) throws java.io.IOException
      Description copied from interface: BlobContainer
      Creates a new InputStream for the given blob name.
      Parameters:
      name - The name of the blob to get an InputStream for.
      Returns:
      The InputStream to read the blob.
      Throws:
      java.nio.file.NoSuchFileException - if the blob does not exist
      java.io.IOException - if the blob can not be read.
    • readBlob

      public java.io.InputStream readBlob​(java.lang.String blobName, long position, long length) throws java.io.IOException
      Description copied from interface: BlobContainer
      Creates a new InputStream that can be used to read the given blob starting from a specific position in the blob. The length is an indication of the number of bytes that are expected to be read from the InputStream.
      Parameters:
      blobName - The name of the blob to get an InputStream for.
      position - The position in the blob where the next byte will be read.
      length - An indication of the number of bytes to be read.
      Returns:
      The InputStream to read the blob.
      Throws:
      java.nio.file.NoSuchFileException - if the blob does not exist
      java.io.IOException - if the blob can not be read.
    • readBlobPreferredLength

      public long readBlobPreferredLength()
      Description copied from interface: BlobContainer
      Provides a hint to clients for a suitable length to use with BlobContainer.readBlob(String, long, long). Some blob containers have nontrivial costs attached to each readBlob call, so it is a good idea for consumers to speculatively request more data than they need right now and to re-use this stream for future needs if possible. Also, some blob containers return streams that are expensive to close before the stream has been fully consumed, and the cost may depend on the length of the data that was left unconsumed. For these containers it's best to bound the cost of a partial read by bounding the length of the data requested.
      Returns:
      a hint to consumers regarding the length of data to request if there is a good chance that future reads can be satisfied from the same stream.
    • writeBlob

      public void writeBlob​(java.lang.String blobName, java.io.InputStream inputStream, long blobSize, boolean failIfAlreadyExists) throws java.io.IOException
      Description copied from interface: BlobContainer
      Reads blob content from the input stream and writes it to the container in a new blob with the given name. This method assumes the container does not already contain a blob of the same blobName. If a blob by the same name already exists, the operation will fail and an IOException will be thrown.
      Parameters:
      blobName - The name of the blob to write the contents of the input stream to.
      inputStream - The input stream from which to retrieve the bytes to write to the blob.
      blobSize - The size of the blob to be written, in bytes. It is implementation dependent whether this value is used in writing the blob to the repository.
      failIfAlreadyExists - whether to throw a FileAlreadyExistsException if the given blob already exists
      Throws:
      java.nio.file.FileAlreadyExistsException - if failIfAlreadyExists is true and a blob by the same name already exists
      java.io.IOException - if the input stream could not be read, or the target blob could not be written to.
    • writeBlob

      public void writeBlob​(java.lang.String blobName, BytesReference bytes, boolean failIfAlreadyExists) throws java.io.IOException
      Description copied from interface: BlobContainer
      Reads blob content from a BytesReference and writes it to the container in a new blob with the given name.
      Parameters:
      blobName - The name of the blob to write the contents of the input stream to.
      bytes - The bytes to write
      failIfAlreadyExists - whether to throw a FileAlreadyExistsException if the given blob already exists
      Throws:
      java.nio.file.FileAlreadyExistsException - if failIfAlreadyExists is true and a blob by the same name already exists
      java.io.IOException - if the input stream could not be read, or the target blob could not be written to.
    • writeBlobAtomic

      public void writeBlobAtomic​(java.lang.String blobName, BytesReference bytes, boolean failIfAlreadyExists) throws java.io.IOException
      Description copied from interface: BlobContainer
      Reads blob content from a BytesReference and writes it to the container in a new blob with the given name, using an atomic write operation if the implementation supports it.
      Parameters:
      blobName - The name of the blob to write the contents of the input stream to.
      bytes - The bytes to write
      failIfAlreadyExists - whether to throw a FileAlreadyExistsException if the given blob already exists
      Throws:
      java.nio.file.FileAlreadyExistsException - if failIfAlreadyExists is true and a blob by the same name already exists
      java.io.IOException - if the input stream could not be read, or the target blob could not be written to.
    • moveBlobAtomic

      public void moveBlobAtomic​(java.lang.String sourceBlobName, java.lang.String targetBlobName, boolean failIfAlreadyExists) throws java.io.IOException
      Throws:
      java.io.IOException
    • tempBlobName

      public static java.lang.String tempBlobName​(java.lang.String blobName)
    • isTempBlobName

      public static boolean isTempBlobName​(java.lang.String blobName)
      Returns true if the blob is a leftover temporary blob. The temporary blobs might be left after failed atomic write operation.