All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shark.repl.SharkILoop.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2012 The Regents of The University California.
 * All rights reserved.
 *
 * Licensed 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 shark.repl

import java.io.PrintWriter

import org.apache.spark.{SparkContext, SparkEnv}
import org.apache.spark.repl.SparkILoop

import shark.{SharkContext, SharkEnv}


/**
 * Add more Shark specific initializations.
 */
class SharkILoop extends SparkILoop(None, new PrintWriter(Console.out, true), None) {

  override def initializeSpark() {
    // Note: shark.SharkEnv.initWithSharkContext must be invoked after spark.repl.Main.interp
    // is used because the slaves' executors depend on the environmental variable
    // "spark.repl.class.uri" set to invoke Spark's ExecutorClassLoader.
    intp.beQuietDuring {
      command("""
        org.apache.spark.repl.Main.interp.out.println("Creating SparkContext...");
        org.apache.spark.repl.Main.interp.out.flush();
        shark.SharkEnv.initWithSharkContext("shark-shell");
        @transient val sparkContext = shark.SharkEnv.sc;
        org.apache.spark.repl.Main.interp.sparkContext = sparkContext;
        @transient val sc = sparkContext.asInstanceOf[shark.SharkContext];
        org.apache.spark.repl.Main.interp.out.println("Shark context available as sc.");
        import sc._;
        def s = sql2console _;
        org.apache.spark.repl.Main.interp.out.flush();
        """)
      command("import org.apache.spark.SparkContext._");
    }
    Console.println("Type in expressions to have them evaluated.")
    Console.println("Type :help for more information.")
    Console.flush()
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy