public static final class FsCheckpointStreamFactory.FsCheckpointStateOutputStream extends CheckpointStreamFactory.CheckpointStateOutputStream
CheckpointStreamFactory.CheckpointStateOutputStream that writes into a file and
returns a StreamStateHandle upon closing.| Constructor and Description |
|---|
FsCheckpointStateOutputStream(org.apache.flink.core.fs.Path basePath,
org.apache.flink.core.fs.FileSystem fs,
int bufferSize,
int localStateThreshold) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
If the stream is only closed, we remove the produced file (cleanup through the auto close
feature, for example).
|
StreamStateHandle |
closeAndGetHandle()
Closes the stream and gets a state handle that can create an input stream
producing the data written to this stream.
|
void |
flush() |
long |
getPos() |
boolean |
isClosed()
Checks whether the stream is closed.
|
void |
sync() |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
writepublic FsCheckpointStateOutputStream(org.apache.flink.core.fs.Path basePath,
org.apache.flink.core.fs.FileSystem fs,
int bufferSize,
int localStateThreshold)
public void write(int b)
throws IOException
write in class OutputStreamIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in class OutputStreamIOExceptionpublic long getPos()
throws IOException
getPos in class org.apache.flink.core.fs.FSDataOutputStreamIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class org.apache.flink.core.fs.FSDataOutputStreamIOExceptionpublic void sync()
throws IOException
sync in class org.apache.flink.core.fs.FSDataOutputStreamIOExceptionpublic boolean isClosed()
public void close()
close in interface Closeableclose in interface AutoCloseableclose in class CheckpointStreamFactory.CheckpointStateOutputStream@Nullable public StreamStateHandle closeAndGetHandle() throws IOException
CheckpointStreamFactory.CheckpointStateOutputStreamThis closing must be called (also when the caller is not interested in the handle)
to successfully close the stream and retain the produced resource. In contrast,
the CheckpointStreamFactory.CheckpointStateOutputStream.close() method removes the target resource when called.
closeAndGetHandle in class CheckpointStreamFactory.CheckpointStateOutputStreamIOException - Thrown, if the stream cannot be closed.Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.