[
https://issues.apache.org/jira/browse/BEAM-11935?focusedWorklogId=573710&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-573710
]
ASF GitHub Bot logged work on BEAM-11935:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 29/Mar/21 20:33
Start Date: 29/Mar/21 20:33
Worklog Time Spent: 10m
Work Description: tvalentyn commented on a change in pull request #14343:
URL: https://github.com/apache/beam/pull/14343#discussion_r603594360
##########
File path: sdks/java/container/boot.go
##########
@@ -97,7 +97,12 @@ func main() {
// (2) Retrieve the staged user jars. We ignore any disk limit,
// because the staged jars are mandatory.
- dir := filepath.Join(*semiPersistDir, "staged")
+ // Using the SDK Harness ID in the artifact destination path to make
sure that dependencies used by multiple
+ // SDK Harnesses in the same VM do not conflict. This is needed since
some runners (for example, Dataflow)
+ // may share the artifact staging directory across multiple SDK
Harnesses
+ // TODO(BEAM-9455): consider removing the SDK Harness ID from the
staging path after Dataflow can properly
+ // seperate out dependencies per environment.
+ dir := filepath.Join(*semiPersistDir, *id, "staged")
Review comment:
Is this directory just a temp directory used by the boot laucher, or the
launcher will expect some content in that directory provisioned by the runner?
--
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: 573710)
Time Spent: 7h 40m (was: 7.5h)
> Update Dataflow requests to include the environment ID
> ------------------------------------------------------
>
> Key: BEAM-11935
> URL: https://issues.apache.org/jira/browse/BEAM-11935
> Project: Beam
> Issue Type: Bug
> Components: cross-language, runner-dataflow
> Reporter: Chamikara Madhusanka Jayalath
> Assignee: Chamikara Madhusanka Jayalath
> Priority: P2
> Time Spent: 7h 40m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)