[
https://issues.apache.org/jira/browse/BEAM-9845?focusedWorklogId=429078&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-429078
]
ASF GitHub Bot logged work on BEAM-9845:
----------------------------------------
Author: ASF GitHub Bot
Created on: 30/Apr/20 15:16
Start Date: 30/Apr/20 15:16
Worklog Time Spent: 10m
Work Description: mxm commented on a change in pull request #11557:
URL: https://github.com/apache/beam/pull/11557#discussion_r418060745
##########
File path: sdks/python/apache_beam/utils/subprocess_server.py
##########
@@ -98,7 +98,9 @@ def log_stdout():
t.daemon = True
t.start()
wait_secs = .1
- channel = grpc.insecure_channel(endpoint)
+ channel_options = [("grpc.max_receive_message_length", -1),
+ ("grpc.max_send_message_length", -1)]
Review comment:
Was this necessary to transfer the artifacts?
##########
File path: sdks/python/apache_beam/transforms/external.py
##########
@@ -317,13 +317,17 @@ def expand(self, pvalueish):
transform=transform_proto)
with self._service() as service:
+ print(type(service))
Review comment:
Please remove or replace with logging
##########
File path:
runners/core-construction-java/src/main/java/org/apache/beam/runners/core/construction/DefaultArtifactResolver.java
##########
@@ -62,6 +63,24 @@ public void register(ResolutionFn fn) {
fns.add(fn);
}
+ @Override
+ public List<RunnerApi.ArtifactInformation> resolveArtifacts(
+ List<RunnerApi.ArtifactInformation> artifacts) {
+ for (ResolutionFn fn : Lists.reverse(fns)) {
Review comment:
Is the resolution order documented somewhere?
##########
File path: sdks/python/apache_beam/pipeline.py
##########
@@ -211,6 +211,8 @@ def __init__(self, runner=None, options=None, argv=None):
experiments.append('beam_fn_api')
self._options.view_as(DebugOptions).experiments = experiments
+ self.local_tempdir = tempfile.mkdtemp(prefix='beam-pipeline-temp')
Review comment:
Should this be prefixed by something pipeline-specific?
----------------------------------------------------------------
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: 429078)
Time Spent: 0.5h (was: 20m)
> Stage dependencies over the expansion service.
> ----------------------------------------------
>
> Key: BEAM-9845
> URL: https://issues.apache.org/jira/browse/BEAM-9845
> Project: Beam
> Issue Type: Bug
> Components: sdk-java-core, sdk-py-core
> Reporter: Robert Bradshaw
> Assignee: Robert Bradshaw
> Priority: Major
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> This will obviate the need for jar_packages.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)