je-ik commented on a change in pull request #15082:
URL: https://github.com/apache/beam/pull/15082#discussion_r667506931



##########
File path: 
sdks/java/expansion-service/src/main/java/org/apache/beam/sdk/expansion/service/ExpansionService.java
##########
@@ -486,6 +515,19 @@ default InputT createInput(Pipeline p, Map<String, 
PCollection<?>> inputs) {
         .build();
   }
 
+  protected Pipeline createPipeline() {
+    PipelineOptions effectiveOpts = PipelineOptionsFactory.create();

Review comment:
       :+1:

##########
File path: 
sdks/java/expansion-service/src/main/java/org/apache/beam/sdk/expansion/service/ExpansionService.java
##########
@@ -462,6 +488,9 @@ default InputT createInput(Pipeline p, Map<String, 
PCollection<?>> inputs) {
                         throw new RuntimeException(exn);
                       }
                     }));
+
+    
SplittableParDo.convertReadBasedSplittableDoFnsToPrimitiveReadsIfNecessary(pipeline);

Review comment:
       Oops. My bad. I thought the `if` statement was (!use_sdf_read && 
(use_deprecated_read || beam_fn_api_use_deprecated_read)) - which actually 
would make more sense to me, because that is consistent with the fact, that we 
made SDF the default. This way I think the `beam_fn_api_use_deprecated_read` 
will not work, but I actually don't know where it is set. Will move the call to 
the inner block.

##########
File path: 
sdks/java/expansion-service/src/test/java/org/apache/beam/sdk/expansion/service/ExpansionServerTest.java
##########
@@ -45,4 +47,20 @@ public void testHostPortAvailableAfterClose() throws 
Exception {
     assertThat(expansionServer.getHost(), is("localhost"));
     assertThat(expansionServer.getPort(), greaterThan(0));
   }
+
+  @Test

Review comment:
       Hm, I thought there was one. :)
   If there is no such test, I think it would be good to have one. I'll create 
a Jira for that.




-- 
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]


Reply via email to