fredia commented on code in PR #20217: URL: https://github.com/apache/flink/pull/20217#discussion_r923182158
########## flink-dstl/flink-dstl-dfs/src/main/java/org/apache/flink/changelog/fs/StateChangeFsUploader.java: ########## @@ -19,50 +19,30 @@ import org.apache.flink.annotation.VisibleForTesting; import org.apache.flink.changelog.fs.StateChangeUploadScheduler.UploadTask; -import org.apache.flink.core.fs.FSDataOutputStream; import org.apache.flink.core.fs.FileSystem; +import org.apache.flink.core.fs.FileSystem.WriteMode; import org.apache.flink.core.fs.Path; -import org.apache.flink.runtime.state.SnappyStreamCompressionDecorator; -import org.apache.flink.runtime.state.StreamCompressionDecorator; import org.apache.flink.runtime.state.StreamStateHandle; -import org.apache.flink.runtime.state.UncompressedStreamCompressionDecorator; import org.apache.flink.runtime.state.filesystem.FileStateHandle; -import org.apache.flink.util.clock.Clock; -import org.apache.flink.util.clock.SystemClock; import org.apache.flink.shaded.guava30.com.google.common.io.Closer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import java.io.BufferedOutputStream; import java.io.IOException; -import java.io.OutputStream; import java.util.Collection; -import java.util.HashMap; -import java.util.Map; -import java.util.UUID; import java.util.function.BiFunction; -import java.util.stream.Collectors; - -import static org.apache.flink.core.fs.FileSystem.WriteMode.NO_OVERWRITE; /** * A synchronous {@link StateChangeUploadScheduler} implementation that uploads the changes using * {@link FileSystem}. */ -public class StateChangeFsUploader implements StateChangeUploader { +public class StateChangeFsUploader extends AbstractStateChangeFsUploader { Review Comment: Nice suggestion, I extracted the logic of creating stream into `prepareStream()`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org