chamikaramj commented on a change in pull request #15082:
URL: https://github.com/apache/beam/pull/15082#discussion_r662117312
##########
File path:
sdks/java/expansion-service/src/main/java/org/apache/beam/sdk/expansion/service/ExpansionService.java
##########
@@ -486,6 +504,11 @@ default InputT createInput(Pipeline p, Map<String,
PCollection<?>> inputs) {
.build();
}
+ protected Pipeline createPipeline() {
+ pipelineOptions.setRunner(NoOpRunner.class);
Review comment:
How about just adding both "beam-sdks-java-io-expansion-service" and
beam-runners-direct-java" to the classpath when starting up the expansion
service ? No need to update dependencies of Beam. Following seems to work for
me.
export
CLASSPATH=beam-sdks-java-io-expansion-service-2.32.0-SNAPSHOT.jar:beam-runners-direct-java-2.32.0-SNAPSHOT.jar
java org.apache.beam.sdk.expansion.service.ExpansionService 12345
--
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]