object FileNames

Helper for creating file names for specific commits / checkpoints.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileNames
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val checkpointFilePattern: Pattern
  6. def checkpointFileSingular(path: Path, version: Long): Path

    Returns the path for a singular checkpoint up to the given version.

    Returns the path for a singular checkpoint up to the given version.

    In a future protocol version this path will stop being written.

  7. def checkpointFileWithParts(path: Path, version: Long, numParts: Int): Seq[Path]

    Returns the paths for all parts of the checkpoint up to the given version.

    Returns the paths for all parts of the checkpoint up to the given version.

    In a future protocol version we will write this path instead of checkpointFileSingular.

    Example of the format: 00000000000000004915.checkpoint.0000000020.0000000060.parquet is checkpoint part 20 out of 60 for the snapshot at version 4915. Zero padding is for lexicographic sorting.

  8. def checkpointPrefix(path: Path, version: Long): Path

    Returns the prefix of all checkpoint files for the given version.

    Returns the prefix of all checkpoint files for the given version.

    Intended for use with listFrom to get all files from this version onwards. The returned Path will not exist as a file.

  9. def checkpointVersion(path: Path): Long
  10. def checksumFile(path: Path, version: Long): Path

    Returns the path to the checksum file for the given version.

  11. val checksumFilePattern: Pattern
  12. def checksumVersion(path: Path): Long

    Returns the version for the given checksum file.

  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  14. def deltaFile(path: Path, version: Long): Path

    Returns the path for a given delta file.

  15. val deltaFilePattern: Pattern
  16. def deltaVersion(path: Path): Long

    Returns the version for the given delta path.

  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getFileVersion(path: Path): Long

    Get the version of the checkpoint, checksum or delta file.

    Get the version of the checkpoint, checksum or delta file. Throws an error if the log file path is unexpected. Must be used after whitelisting the list of files during a transaction log listing for forwards compatibility.

  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def isCheckpointFile(path: Path): Boolean
  24. def isChecksumFile(path: Path): Boolean
  25. def isDeltaFile(path: Path): Boolean
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def numCheckpointParts(path: Path): Option[Int]
  31. def sampleFile(path: Path, version: Long): Path

    Returns the path for a given sample file

  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped