liferoad commented on code in PR #35110:
URL: https://github.com/apache/beam/pull/35110#discussion_r2121157543
##########
sdks/python/apache_beam/dataframe/io.py:
##########
@@ -668,6 +668,9 @@ def expand(self, pcoll):
return pcoll | fileio.WriteToFiles(
path=dir,
shards=self.kwargs.pop('num_shards', None),
+ max_writers_per_bundle=self.kwargs.pop(
+ 'max_writers_per_bundle',
+ fileio.WriteToFiles.MAX_NUM_WRITERS_PER_BUNDLE),
Review Comment:
https://github.com/apache/beam/blob/b69f23f6818787cb2f0a9f02608228a07405c0c8/sdks/python/apache_beam/io/fileio.py#L536
is the default. So I think we should keep the existing behaviour.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]