use of org.apache.flink.fs.gs.storage.GSBlobStorageImpl in project flink by apache.
the class GSFileSystem method createRecoverableWriter.
@Override
public RecoverableWriter createRecoverableWriter() {
LOGGER.info("Creating GSRecoverableWriter with file-system options {}", fileSystemOptions);
// create the GS blob storage wrapper
GSBlobStorageImpl blobStorage = new GSBlobStorageImpl(storage);
// construct the recoverable writer with the blob storage wrapper and the options
return new GSRecoverableWriter(blobStorage, fileSystemOptions);
}
Aggregations