class HiveContext extends SQLContext with Logging
An instance of the Spark SQL execution engine that integrates with data stored in Hive. Configuration for Hive is read from hive-site.xml on the classpath.
- Self Type
 - HiveContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.0.0) Use SparkSession.builder.enableHiveSupport instead
- Grouped
 - Alphabetic
 - By Inheritance
 
- HiveContext
 - SQLContext
 - Serializable
 - Serializable
 - Logging
 - AnyRef
 - Any
 
- Hide All
 - Show All
 
- Public
 - All
 
Instance Constructors
-  new HiveContext(sc: JavaSparkContext)
 -  new HiveContext(sc: SparkContext)
 
Value Members
- 
      
      
      
        
      
    
      
        
        object
      
      
        implicits extends SQLImplicits with Serializable
      
      
      
:: Experimental :: (Scala-specific) Implicit methods available in Scala for converting common Scala objects into
DataFrames.:: Experimental :: (Scala-specific) Implicit methods available in Scala for converting common Scala objects into
DataFrames.val sqlContext = new SQLContext(sc) import sqlContext.implicits._
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        !=(arg0: Any): Boolean
      
      
      
- Definition Classes
 - AnyRef → Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        ##(): Int
      
      
      
- Definition Classes
 - AnyRef → Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        ==(arg0: Any): Boolean
      
      
      
- Definition Classes
 - AnyRef → Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        asInstanceOf[T0]: T0
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        baseRelationToDataFrame(baseRelation: BaseRelation): DataFrame
      
      
      
Convert a
BaseRelationcreated for external data sources into aDataFrame.Convert a
BaseRelationcreated for external data sources into aDataFrame.- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        cacheTable(tableName: String): Unit
      
      
      
Caches the specified table in-memory.
Caches the specified table in-memory.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        clearCache(): Unit
      
      
      
Removes all cached tables from the in-memory cache.
Removes all cached tables from the in-memory cache.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        clone(): AnyRef
      
      
      
- Attributes
 - protected[java.lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @native() @throws( ... )
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame(data: List[_], beanClass: Class[_]): DataFrame
      
      
      
Applies a schema to a List of Java Beans.
Applies a schema to a List of Java Beans.
WARNING: Since there is no guaranteed ordering for fields in a Java Bean, SELECT * queries will return the columns in an undefined order.
- Definition Classes
 - SQLContext
 - Since
 1.6.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame(rdd: JavaRDD[_], beanClass: Class[_]): DataFrame
      
      
      
Applies a schema to an RDD of Java Beans.
Applies a schema to an RDD of Java Beans.
WARNING: Since there is no guaranteed ordering for fields in a Java Bean, SELECT * queries will return the columns in an undefined order.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame(rdd: RDD[_], beanClass: Class[_]): DataFrame
      
      
      
Applies a schema to an RDD of Java Beans.
Applies a schema to an RDD of Java Beans.
WARNING: Since there is no guaranteed ordering for fields in a Java Bean, SELECT * queries will return the columns in an undefined order.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame(rows: List[Row], schema: StructType): DataFrame
      
      
      
:: DeveloperApi :: Creates a
DataFramefrom ajava.util.Listcontaining Rows using the given schema.:: DeveloperApi :: Creates a
DataFramefrom ajava.util.Listcontaining Rows using the given schema. It is important to make sure that the structure of every Row of the provided List matches the provided schema. Otherwise, there will be runtime exception.- Definition Classes
 - SQLContext
 - Annotations
 - @DeveloperApi() @Evolving()
 - Since
 1.6.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame(rowRDD: JavaRDD[Row], schema: StructType): DataFrame
      
      
      
:: DeveloperApi :: Creates a
DataFramefrom aJavaRDDcontaining Rows using the given schema.:: DeveloperApi :: Creates a
DataFramefrom aJavaRDDcontaining Rows using the given schema. It is important to make sure that the structure of every Row of the provided RDD matches the provided schema. Otherwise, there will be runtime exception.- Definition Classes
 - SQLContext
 - Annotations
 - @DeveloperApi() @Evolving()
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame(rowRDD: RDD[Row], schema: StructType): DataFrame
      
      
      
:: DeveloperApi :: Creates a
DataFramefrom anRDDcontaining Rows using the given schema.:: DeveloperApi :: Creates a
DataFramefrom anRDDcontaining Rows using the given schema. It is important to make sure that the structure of every Row of the provided RDD matches the provided schema. Otherwise, there will be runtime exception. Example:import org.apache.spark.sql._ import org.apache.spark.sql.types._ val sqlContext = new org.apache.spark.sql.SQLContext(sc) val schema = StructType( StructField("name", StringType, false) :: StructField("age", IntegerType, true) :: Nil) val people = sc.textFile("examples/src/main/resources/people.txt").map( _.split(",")).map(p => Row(p(0), p(1).trim.toInt)) val dataFrame = sqlContext.createDataFrame(people, schema) dataFrame.printSchema // root // |-- name: string (nullable = false) // |-- age: integer (nullable = true) dataFrame.createOrReplaceTempView("people") sqlContext.sql("select name from people").collect.foreach(println)
- Definition Classes
 - SQLContext
 - Annotations
 - @DeveloperApi() @Evolving()
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame[A <: Product](data: Seq[A])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[A]): DataFrame
      
      
      
:: Experimental :: Creates a DataFrame from a local Seq of Product.
:: Experimental :: Creates a DataFrame from a local Seq of Product.
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataFrame[A <: Product](rdd: RDD[A])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[A]): DataFrame
      
      
      
:: Experimental :: Creates a DataFrame from an RDD of Product (e.g.
:: Experimental :: Creates a DataFrame from an RDD of Product (e.g. case classes, tuples).
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataset[T](data: List[T])(implicit arg0: Encoder[T]): Dataset[T]
      
      
      
:: Experimental :: Creates a Dataset from a
java.util.Listof a given type.:: Experimental :: Creates a Dataset from a
java.util.Listof a given type. This method requires an encoder (to convert a JVM object of typeTto and from the internal Spark SQL representation) that is generally created automatically through implicits from aSparkSession, or can be created explicitly by calling static methods on Encoders.Java Example
List<String> data = Arrays.asList("hello", "world"); Dataset<String> ds = spark.createDataset(data, Encoders.STRING());
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 2.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataset[T](data: RDD[T])(implicit arg0: Encoder[T]): Dataset[T]
      
      
      
:: Experimental :: Creates a Dataset from an RDD of a given type.
:: Experimental :: Creates a Dataset from an RDD of a given type. This method requires an encoder (to convert a JVM object of type
Tto and from the internal Spark SQL representation) that is generally created automatically through implicits from aSparkSession, or can be created explicitly by calling static methods on Encoders.- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental()
 - Since
 2.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createDataset[T](data: Seq[T])(implicit arg0: Encoder[T]): Dataset[T]
      
      
      
:: Experimental :: Creates a Dataset from a local Seq of data of a given type.
:: Experimental :: Creates a Dataset from a local Seq of data of a given type. This method requires an encoder (to convert a JVM object of type
Tto and from the internal Spark SQL representation) that is generally created automatically through implicits from aSparkSession, or can be created explicitly by calling static methods on Encoders.Example
import spark.implicits._ case class Person(name: String, age: Long) val data = Seq(Person("Michael", 29), Person("Andy", 30), Person("Justin", 19)) val ds = spark.createDataset(data) ds.show() // +-------+---+ // | name|age| // +-------+---+ // |Michael| 29| // | Andy| 30| // | Justin| 19| // +-------+---+
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 2.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        dropTempTable(tableName: String): Unit
      
      
      
Drops the temporary table with the given table name in the catalog.
Drops the temporary table with the given table name in the catalog. If the table has been cached/persisted before, it's also unpersisted.
- tableName
 the name of the table to be unregistered.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        emptyDataFrame: DataFrame
      
      
      
Returns a
DataFramewith no rows or columns.Returns a
DataFramewith no rows or columns.- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        eq(arg0: AnyRef): Boolean
      
      
      
- Definition Classes
 - AnyRef
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        equals(arg0: Any): Boolean
      
      
      
- Definition Classes
 - AnyRef → Any
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        experimental: ExperimentalMethods
      
      
      
:: Experimental :: A collection of methods that are considered experimental, but can be used to hook into the query planner for advanced functionality.
:: Experimental :: A collection of methods that are considered experimental, but can be used to hook into the query planner for advanced functionality.
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @transient() @Unstable()
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        finalize(): Unit
      
      
      
- Attributes
 - protected[java.lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws( classOf[java.lang.Throwable] )
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        getAllConfs: Map[String, String]
      
      
      
Return all the configuration properties that have been set (i.e.
Return all the configuration properties that have been set (i.e. not the default). This creates a new copy of the config properties in the form of a Map.
- Definition Classes
 - SQLContext
 - Since
 1.0.0
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        getClass(): Class[_]
      
      
      
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        getConf(key: String, defaultValue: String): String
      
      
      
Return the value of Spark SQL configuration property for the given key.
Return the value of Spark SQL configuration property for the given key. If the key is not set yet, return
defaultValue.- Definition Classes
 - SQLContext
 - Since
 1.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        getConf(key: String): String
      
      
      
Return the value of Spark SQL configuration property for the given key.
Return the value of Spark SQL configuration property for the given key.
- Definition Classes
 - SQLContext
 - Since
 1.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        hashCode(): Int
      
      
      
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean = false): Boolean
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        initializeLogIfNecessary(isInterpreter: Boolean): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        isCached(tableName: String): Boolean
      
      
      
Returns true if the table is currently cached in-memory.
Returns true if the table is currently cached in-memory.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        isInstanceOf[T0]: Boolean
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        isTraceEnabled(): Boolean
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        listenerManager: ExecutionListenerManager
      
      
      
An interface to register custom org.apache.spark.sql.util.QueryExecutionListeners that listen for execution metrics.
An interface to register custom org.apache.spark.sql.util.QueryExecutionListeners that listen for execution metrics.
- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        log: Logger
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logDebug(msg: ⇒ String, throwable: Throwable): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logDebug(msg: ⇒ String): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logError(msg: ⇒ String, throwable: Throwable): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logError(msg: ⇒ String): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logInfo(msg: ⇒ String, throwable: Throwable): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logInfo(msg: ⇒ String): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logName: String
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logTrace(msg: ⇒ String, throwable: Throwable): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logTrace(msg: ⇒ String): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logWarning(msg: ⇒ String, throwable: Throwable): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        logWarning(msg: ⇒ String): Unit
      
      
      
- Attributes
 - protected
 - Definition Classes
 - Logging
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        ne(arg0: AnyRef): Boolean
      
      
      
- Definition Classes
 - AnyRef
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        newSession(): HiveContext
      
      
      
Returns a new HiveContext as new session, which will have separated SQLConf, UDF/UDAF, temporary tables and SessionState, but sharing the same CacheManager, IsolatedClientLoader and Hive client (both of execution and metadata) with existing HiveContext.
Returns a new HiveContext as new session, which will have separated SQLConf, UDF/UDAF, temporary tables and SessionState, but sharing the same CacheManager, IsolatedClientLoader and Hive client (both of execution and metadata) with existing HiveContext.
- Definition Classes
 - HiveContext → SQLContext
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        notify(): Unit
      
      
      
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        notifyAll(): Unit
      
      
      
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        range(start: Long, end: Long, step: Long, numPartitions: Int): DataFrame
      
      
      
:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in an range fromstarttoend(exclusive) with an step value, with partition number specified.:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in an range fromstarttoend(exclusive) with an step value, with partition number specified.- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 1.4.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        range(start: Long, end: Long, step: Long): DataFrame
      
      
      
:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with a step value.:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with a step value.- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 2.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        range(start: Long, end: Long): DataFrame
      
      
      
:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with step value 1.:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with step value 1.- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 1.4.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        range(end: Long): DataFrame
      
      
      
:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in a range from 0 toend(exclusive) with step value 1.:: Experimental :: Creates a
DataFramewith a singleLongTypecolumn namedid, containing elements in a range from 0 toend(exclusive) with step value 1.- Definition Classes
 - SQLContext
 - Annotations
 - @Experimental() @Evolving()
 - Since
 1.4.1
 - 
      
      
      
        
      
    
      
        
        def
      
      
        read: DataFrameReader
      
      
      
Returns a DataFrameReader that can be used to read non-streaming data in as a
DataFrame.Returns a DataFrameReader that can be used to read non-streaming data in as a
DataFrame.sqlContext.read.parquet("/path/to/file.parquet") sqlContext.read.schema(schema).json("/path/to/file.json")
- Definition Classes
 - SQLContext
 - Since
 1.4.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        readStream: DataStreamReader
      
      
      
Returns a
DataStreamReaderthat can be used to read streaming data in as aDataFrame.Returns a
DataStreamReaderthat can be used to read streaming data in as aDataFrame.sparkSession.readStream.parquet("/path/to/directory/of/parquet/files") sparkSession.readStream.schema(schema).json("/path/to/directory/of/json/files")
- Definition Classes
 - SQLContext
 - Annotations
 - @Evolving()
 - Since
 2.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        refreshTable(tableName: String): Unit
      
      
      
Invalidate and refresh all the cached the metadata of the given table.
Invalidate and refresh all the cached the metadata of the given table. For performance reasons, Spark SQL or the external data source library it uses might cache certain metadata about a table, such as the location of blocks. When those change outside of Spark SQL, users should call this function to invalidate the cache.
- Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        setConf(key: String, value: String): Unit
      
      
      
Set the given Spark SQL configuration property.
Set the given Spark SQL configuration property.
- Definition Classes
 - SQLContext
 - Since
 1.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        setConf(props: Properties): Unit
      
      
      
Set Spark SQL configuration properties.
Set Spark SQL configuration properties.
- Definition Classes
 - SQLContext
 - Since
 1.0.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        sparkContext: SparkContext
      
      
      
- Definition Classes
 - SQLContext
 
 - 
      
      
      
        
      
    
      
        
        val
      
      
        sparkSession: SparkSession
      
      
      
- Definition Classes
 - SQLContext
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        sql(sqlText: String): DataFrame
      
      
      
Executes a SQL query using Spark, returning the result as a
DataFrame.Executes a SQL query using Spark, returning the result as a
DataFrame. The dialect that is used for SQL parsing can be configured with 'spark.sql.dialect'.- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        streams: StreamingQueryManager
      
      
      
Returns a
StreamingQueryManagerthat allows managing all the StreamingQueries active onthiscontext.Returns a
StreamingQueryManagerthat allows managing all the StreamingQueries active onthiscontext.- Definition Classes
 - SQLContext
 - Since
 2.0.0
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        synchronized[T0](arg0: ⇒ T0): T0
      
      
      
- Definition Classes
 - AnyRef
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        table(tableName: String): DataFrame
      
      
      
Returns the specified table as a
DataFrame.Returns the specified table as a
DataFrame.- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        tableNames(databaseName: String): Array[String]
      
      
      
Returns the names of tables in the given database as an array.
Returns the names of tables in the given database as an array.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        tableNames(): Array[String]
      
      
      
Returns the names of tables in the current database as an array.
Returns the names of tables in the current database as an array.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        tables(databaseName: String): DataFrame
      
      
      
Returns a
DataFramecontaining names of existing tables in the given database.Returns a
DataFramecontaining names of existing tables in the given database. The returned DataFrame has two columns, tableName and isTemporary (a Boolean indicating if a table is a temporary one or not).- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        tables(): DataFrame
      
      
      
Returns a
DataFramecontaining names of existing tables in the current database.Returns a
DataFramecontaining names of existing tables in the current database. The returned DataFrame has two columns, tableName and isTemporary (a Boolean indicating if a table is a temporary one or not).- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        toString(): String
      
      
      
- Definition Classes
 - AnyRef → Any
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        udf: UDFRegistration
      
      
      
A collection of methods for registering user-defined functions (UDF).
A collection of methods for registering user-defined functions (UDF).
The following example registers a Scala closure as UDF:
sqlContext.udf.register("myUDF", (arg1: Int, arg2: String) => arg2 + arg1)
The following example registers a UDF in Java:
sqlContext.udf().register("myUDF", (Integer arg1, String arg2) -> arg2 + arg1, DataTypes.StringType);
- Definition Classes
 - SQLContext
 - Since
 1.3.0
- Note
 The user-defined functions must be deterministic. Due to optimization, duplicate invocations may be eliminated or the function may even be invoked more times than it is present in the query.
 - 
      
      
      
        
      
    
      
        
        def
      
      
        uncacheTable(tableName: String): Unit
      
      
      
Removes the specified table from the in-memory cache.
Removes the specified table from the in-memory cache.
- Definition Classes
 - SQLContext
 - Since
 1.3.0
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        wait(): Unit
      
      
      
- Definition Classes
 - AnyRef
 - Annotations
 - @throws( ... )
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        wait(arg0: Long, arg1: Int): Unit
      
      
      
- Definition Classes
 - AnyRef
 - Annotations
 - @throws( ... )
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        wait(arg0: Long): Unit
      
      
      
- Definition Classes
 - AnyRef
 - Annotations
 - @native() @throws( ... )
 
 
Deprecated Value Members
- 
      
      
      
        
      
    
      
        
        def
      
      
        createExternalTable(tableName: String, source: String, schema: StructType, options: Map[String, String]): DataFrame
      
      
      
(Scala-specific) Create an external table from the given path based on a data source, a schema and a set of options.
(Scala-specific) Create an external table from the given path based on a data source, a schema and a set of options. Then, returns the corresponding DataFrame.
- Definition Classes
 - SQLContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.2.0) use sparkSession.catalog.createTable instead.
- Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createExternalTable(tableName: String, source: String, schema: StructType, options: Map[String, String]): DataFrame
      
      
      
Create an external table from the given path based on a data source, a schema and a set of options.
Create an external table from the given path based on a data source, a schema and a set of options. Then, returns the corresponding DataFrame.
- Definition Classes
 - SQLContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.2.0) use sparkSession.catalog.createTable instead.
- Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createExternalTable(tableName: String, source: String, options: Map[String, String]): DataFrame
      
      
      
(Scala-specific) Creates an external table from the given path based on a data source and a set of options.
(Scala-specific) Creates an external table from the given path based on a data source and a set of options. Then, returns the corresponding DataFrame.
- Definition Classes
 - SQLContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.2.0) use sparkSession.catalog.createTable instead.
- Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createExternalTable(tableName: String, source: String, options: Map[String, String]): DataFrame
      
      
      
Creates an external table from the given path based on a data source and a set of options.
Creates an external table from the given path based on a data source and a set of options. Then, returns the corresponding DataFrame.
- Definition Classes
 - SQLContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.2.0) use sparkSession.catalog.createTable instead.
- Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createExternalTable(tableName: String, path: String, source: String): DataFrame
      
      
      
Creates an external table from the given path based on a data source and returns the corresponding DataFrame.
Creates an external table from the given path based on a data source and returns the corresponding DataFrame.
- Definition Classes
 - SQLContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.2.0) use sparkSession.catalog.createTable instead.
- Since
 1.3.0
 - 
      
      
      
        
      
    
      
        
        def
      
      
        createExternalTable(tableName: String, path: String): DataFrame
      
      
      
Creates an external table from the given path and returns the corresponding DataFrame.
Creates an external table from the given path and returns the corresponding DataFrame. It will use the default data source configured by spark.sql.sources.default.
- Definition Classes
 - SQLContext
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.2.0) use sparkSession.catalog.createTable instead.
- Since
 1.3.0