public final class FsCheckpointMetadataOutputStream extends CheckpointMetadataOutputStream
CheckpointMetadataOutputStream
that writes a specified file and directory, and
returns a FsCompletedCheckpointStorageLocation
upon closing.Constructor and Description |
---|
FsCheckpointMetadataOutputStream(FileSystem fileSystem,
Path metadataFilePath,
Path exclusiveCheckpointDir) |
Modifier and Type | Method and Description |
---|---|
void |
close()
This method should close the stream, if has not been closed before.
|
FsCompletedCheckpointStorageLocation |
closeAndFinalizeCheckpoint() |
void |
flush()
Flushes the stream, writing any data currently buffered in stream implementation
to the proper output stream.
|
long |
getPos()
Gets the position of the stream (non-negative), defined as the number of bytes
from the beginning of the file to the current writing position.
|
boolean |
isClosed() |
void |
sync()
Flushes the data all the way to the persistent non-volatile storage (for example disks).
|
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
write
public FsCheckpointMetadataOutputStream(FileSystem fileSystem, Path metadataFilePath, Path exclusiveCheckpointDir) throws IOException
IOException
public final void write(int b) throws IOException
write
in class OutputStream
IOException
public final void write(@Nonnull byte[] b, int off, int len) throws IOException
write
in class OutputStream
IOException
public long getPos() throws IOException
FSDataOutputStream
This method must report accurately report the current position of the stream. Various components of the high-availability and recovery logic rely on the accurate
getPos
in class FSDataOutputStream
IOException
- Thrown if an I/O error occurs while obtaining the position from
the stream implementation.public void flush() throws IOException
FSDataOutputStream
A completed flush does not mean that the data is necessarily persistent. Data
persistence can is only assumed after calls to FSDataOutputStream.close()
or FSDataOutputStream.sync()
.
Implementation note: This overrides the method defined in OutputStream
as abstract to force implementations of the FSDataOutputStream
to implement
this method directly.
flush
in interface Flushable
flush
in class FSDataOutputStream
IOException
- Thrown if an I/O error occurs while flushing the stream.public void sync() throws IOException
FSDataOutputStream
sync
in class FSDataOutputStream
IOException
- Thrown if an I/O error occurspublic boolean isClosed()
public void close()
CheckpointMetadataOutputStream
The above implies that this method is intended to be the "unsuccessful close",
such as when cancelling the stream writing, or when an exception occurs.
Closing the stream for the successful case must go through CheckpointMetadataOutputStream.closeAndFinalizeCheckpoint()
.
close
in interface Closeable
close
in interface AutoCloseable
close
in class CheckpointMetadataOutputStream
public FsCompletedCheckpointStorageLocation closeAndFinalizeCheckpoint() throws IOException
closeAndFinalizeCheckpoint
in class CheckpointMetadataOutputStream
IOException
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.