mosche commented on code in PR #17406: URL: https://github.com/apache/beam/pull/17406#discussion_r870047265
########## runners/spark/src/test/java/org/apache/beam/runners/spark/SparkContextRule.java: ########## @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.beam.runners.spark; + +import static java.util.stream.Collectors.toMap; + +import java.io.Serializable; +import java.util.Arrays; +import java.util.Map; +import javax.annotation.Nullable; +import org.apache.beam.runners.spark.translation.SparkContextFactory; +import org.apache.beam.sdk.options.PipelineOptions; +import org.apache.beam.sdk.testing.TestPipeline; +import org.apache.beam.sdk.values.KV; +import org.apache.spark.SparkConf; +import org.apache.spark.api.java.JavaSparkContext; +import org.junit.rules.ExternalResource; + +public class SparkContextRule extends ExternalResource implements Serializable { + private transient SparkConf sparkConf; + private transient @Nullable JavaSparkContext sparkContext = null; + + public SparkContextRule(String sparkMaster, Map<String, String> sparkConfig) { + sparkConf = new SparkConf(); + sparkConfig.forEach(sparkConf::set); + sparkConf.setMaster(sparkMaster).setAppName(sparkMaster); Review Comment: Honestly, I don't see the point of having this depend on PipelineOptions ... the value would be as meaningless as it is here. I changed the appName to reflect the scope of the rule -- 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]
