Example usage for org.apache.spark.launcher InProcessLauncher InProcessLauncher

List of usage examples for org.apache.spark.launcher InProcessLauncher InProcessLauncher

Introduction

In this page you can find the example usage for org.apache.spark.launcher InProcessLauncher InProcessLauncher.

Prototype

InProcessLauncher

Source Link

Usage

From source file:org.apache.hive.spark.client.SparkLauncherSparkClient.java

License:Apache License

private AbstractLauncher<InProcessLauncher> getSparkLauncher() {
    if (this.sparkLauncher == null) {
        this.sparkLauncher = new InProcessLauncher();
    }//from   w  ww . j a  va 2s  .com
    return this.sparkLauncher;
}