[
https://issues.apache.org/jira/browse/BEAM-8882?focusedWorklogId=354686&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-354686
]
ASF GitHub Bot logged work on BEAM-8882:
----------------------------------------
Author: ASF GitHub Bot
Created on: 05/Dec/19 21:08
Start Date: 05/Dec/19 21:08
Worklog Time Spent: 10m
Work Description: lukecwik commented on pull request #10283: [BEAM-8882]
Allow Dataflow to automatically choose portability.
URL: https://github.com/apache/beam/pull/10283#discussion_r354539673
##########
File path: sdks/python/apache_beam/io/iobase.py
##########
@@ -1534,7 +1514,10 @@ def __init__(self, source):
def _create_sdf_bounded_source_dofn(self):
source = self.source
- chunk_size = Read.get_desired_chunk_size(source.estimate_size())
+ try:
+ chunk_size = Read.get_desired_chunk_size(source.estimate_size())
Review comment:
```suggestion
estimated_size = source.estimate_size()
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 354686)
Time Spent: 3h 10m (was: 3h)
> Allow Dataflow to automatically choose portability or not.
> ----------------------------------------------------------
>
> Key: BEAM-8882
> URL: https://issues.apache.org/jira/browse/BEAM-8882
> Project: Beam
> Issue Type: Bug
> Components: sdk-py-core
> Reporter: Robert Bradshaw
> Assignee: Robert Bradshaw
> Priority: Critical
> Fix For: 2.18.0
>
> Time Spent: 3h 10m
> Remaining Estimate: 0h
>
> We would like the Dataflow service to be able to automatically choose whether
> to run pipelines in a portable way. In order to do this, we need to provide
> more information even if portability is not explicitly requested.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)