dianfu commented on code in PR #20383: URL: https://github.com/apache/flink/pull/20383#discussion_r934112786
########## flink-python/pyflink/datastream/connectors/file_system.py: ########## @@ -535,6 +568,51 @@ def for_row_format(base_path: str, encoder: Encoder) -> 'FileSink.RowFormatBuild return FileSink.RowFormatBuilder( JFileSink.forRowFormat(JPath(base_path), encoder._j_encoder)) + class BulkFormatBuilder(object): + """ + Builder for the vanilla FileSink using a bulk format. + """ + + def __init__(self, j_bulk_format_builder): Review Comment: StreamingFileSink is to be removed, see https://issues.apache.org/jira/browse/FLINK-28641 for more details. Will we align these methods in 1.16? -- 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