Interface Snapshot

  • All Superinterfaces:
    java.io.Serializable

    public interface Snapshot
    extends java.io.Serializable
    A snapshot of the data in a table at a point in time.

    A snapshot consist of one or more file manifests, and the complete table contents is the union of all the data files in those manifests.

    Snapshots are created by table operations, like AppendFiles and RewriteFiles.

    • Method Detail

      • sequenceNumber

        long sequenceNumber()
        Return this snapshot's sequence number.

        Sequence numbers are assigned when a snapshot is committed.

        Returns:
        a long sequence number
      • snapshotId

        long snapshotId()
        Return this snapshot's ID.
        Returns:
        a long ID
      • parentId

        java.lang.Long parentId()
        Return this snapshot's parent ID or null.
        Returns:
        a long ID for this snapshot's parent, or null if it has no parent
      • timestampMillis

        long timestampMillis()
        Return this snapshot's timestamp.

        This timestamp is the same as those produced by System.currentTimeMillis().

        Returns:
        a long timestamp in milliseconds
      • allManifests

        @Deprecated
        java.util.List<ManifestFile> allManifests()
        Deprecated.
        since 0.14.0, will be removed in 1.0.0; Use allManifests(FileIO) instead.
        Return all ManifestFile instances for either data or delete manifests in this snapshot.
        Returns:
        a list of ManifestFile
      • allManifests

        java.util.List<ManifestFile> allManifests​(FileIO io)
        Return all ManifestFile instances for either data or delete manifests in this snapshot.
        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        a list of ManifestFile
      • dataManifests

        @Deprecated
        java.util.List<ManifestFile> dataManifests()
        Deprecated.
        since 0.14.0, will be removed in 1.0.0; Use dataManifests(FileIO) instead.
        Return a ManifestFile for each data manifest in this snapshot.
        Returns:
        a list of ManifestFile
      • dataManifests

        java.util.List<ManifestFile> dataManifests​(FileIO io)
        Return a ManifestFile for each data manifest in this snapshot.
        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        a list of ManifestFile
      • deleteManifests

        @Deprecated
        java.util.List<ManifestFile> deleteManifests()
        Deprecated.
        since 0.14.0, will be removed in 1.0.0; Use deleteManifests(FileIO) instead.
        Return a ManifestFile for each delete manifest in this snapshot.
        Returns:
        a list of ManifestFile
      • deleteManifests

        java.util.List<ManifestFile> deleteManifests​(FileIO io)
        Return a ManifestFile for each delete manifest in this snapshot.
        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        a list of ManifestFile
      • operation

        java.lang.String operation()
        Return the name of the data operation that produced this snapshot.
        Returns:
        the operation that produced this snapshot, or null if the operation is unknown
        See Also:
        DataOperations
      • summary

        java.util.Map<java.lang.String,​java.lang.String> summary()
        Return a string map of summary data for the operation that produced this snapshot.
        Returns:
        a string map of summary data.
      • addedFiles

        @Deprecated
        java.lang.Iterable<DataFile> addedFiles()
        Deprecated.
        since 0.14.0, will be removed in 1.0.0; Use addedDataFiles(FileIO) instead.
        Return all data files added to the table in this snapshot.

        The files returned include the following columns: file_path, file_format, partition, record_count, and file_size_in_bytes. Other columns will be null.

        Returns:
        all data files added to the table in this snapshot.
      • addedDataFiles

        java.lang.Iterable<DataFile> addedDataFiles​(FileIO io)
        Return all data files added to the table in this snapshot.

        The files returned include the following columns: file_path, file_format, partition, record_count, and file_size_in_bytes. Other columns will be null.

        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        all data files added to the table in this snapshot.
      • deletedFiles

        @Deprecated
        java.lang.Iterable<DataFile> deletedFiles()
        Deprecated.
        since 0.14.0, will be removed in 1.0.0; Use removedDataFiles(FileIO) instead.
        Return all data files deleted from the table in this snapshot.

        The files returned include the following columns: file_path, file_format, partition, record_count, and file_size_in_bytes. Other columns will be null.

        Returns:
        all data files deleted from the table in this snapshot.
      • removedDataFiles

        java.lang.Iterable<DataFile> removedDataFiles​(FileIO io)
        Return all data files removed from the table in this snapshot.

        The files returned include the following columns: file_path, file_format, partition, record_count, and file_size_in_bytes. Other columns will be null.

        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        all data files removed from the table in this snapshot.
      • addedDeleteFiles

        default java.lang.Iterable<DeleteFile> addedDeleteFiles​(FileIO io)
        Return all delete files added to the table in this snapshot.

        The files returned include the following columns: file_path, file_format, partition, record_count, and file_size_in_bytes. Other columns will be null.

        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        all delete files added to the table in this snapshot
      • removedDeleteFiles

        default java.lang.Iterable<DeleteFile> removedDeleteFiles​(FileIO io)
        Return all delete files removed from the table in this snapshot.

        The files returned include the following columns: file_path, file_format, partition, record_count, and file_size_in_bytes. Other columns will be null.

        Parameters:
        io - a FileIO instance used for reading files from storage
        Returns:
        all delete files removed from the table in this snapshot
      • manifestListLocation

        java.lang.String manifestListLocation()
        Return the location of this snapshot's manifest list, or null if it is not separate.
        Returns:
        the location of the manifest list for this Snapshot
      • schemaId

        default java.lang.Integer schemaId()
        Return the id of the schema used when this snapshot was created, or null if this information is not available.
        Returns:
        schema id associated with this snapshot