[ 
https://issues.apache.org/jira/browse/BEAM-6872?focusedWorklogId=224503&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-224503
 ]

ASF GitHub Bot logged work on BEAM-6872:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 08/Apr/19 18:00
            Start Date: 08/Apr/19 18:00
    Worklog Time Spent: 10m 
      Work Description: TheNeuralBit commented on pull request #8104: 
[BEAM-6872] Add hook for user-defined JVM initialization in workers
URL: https://github.com/apache/beam/pull/8104#discussion_r273170518
 
 

 ##########
 File path: 
runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/DataflowWorkerHarnessHelper.java
 ##########
 @@ -95,6 +97,17 @@ public static void 
configureLogging(DataflowWorkerHarnessOptions pipelineOptions
     DataflowWorkerLoggingInitializer.configure(pipelineOptions);
   }
 
+  public static void runUserDefinedInitialization() {
+    ServiceLoader<DataflowWorkerInitializer> loader =
+        ServiceLoader.load(DataflowWorkerInitializer.class);
+    for (DataflowWorkerInitializer initializer : loader) {
 
 Review comment:
   I moved all the relevant logic into BeamWorkerInitializer and tested there. 
It's kind of tricky to test the worker harnesses directly.
 
----------------------------------------------------------------
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:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 224503)
    Time Spent: 1h 20m  (was: 1h 10m)

> Add hook for user-defined JVM initialization in workers
> -------------------------------------------------------
>
>                 Key: BEAM-6872
>                 URL: https://issues.apache.org/jira/browse/BEAM-6872
>             Project: Beam
>          Issue Type: New Feature
>          Components: runner-dataflow
>            Reporter: Brian Hulette
>            Assignee: Brian Hulette
>            Priority: Minor
>          Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Expose an interface for users to run some one-time initialization code when a 
> worker starts up.
> This can be useful for things like overriding the Default ZoneRulesProvider, 
> or setting up custom SSL providers.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to