Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package apache
    Definition Classes
    org
  • package spark

    Core Spark functionality.

    Core Spark functionality. org.apache.spark.SparkContext serves as the main entry point to Spark, while org.apache.spark.rdd.RDD is the data type representing a distributed collection, and provides most parallel operations.

    In addition, org.apache.spark.rdd.PairRDDFunctions contains operations available only on RDDs of key-value pairs, such as groupByKey and join; org.apache.spark.rdd.DoubleRDDFunctions contains operations available only on RDDs of Doubles; and org.apache.spark.rdd.SequenceFileRDDFunctions contains operations available on RDDs that can be saved as SequenceFiles. These operations are automatically available on any RDD of the right type (e.g. RDD[(Int, Int)] through implicit conversions.

    Java programmers should reference the org.apache.spark.api.java package for Spark programming APIs in Java.

    Classes and methods marked with Experimental are user-facing features which have not been officially adopted by the Spark project. These are subject to change or removal in minor releases.

    Classes and methods marked with Developer API are intended for advanced users want to extend Spark through lower level interfaces. These are subject to changes or removal in minor releases.

    Definition Classes
    apache
  • package sql

    Allows the execution of relational queries, including those expressed in SQL using Spark.

    Allows the execution of relational queries, including those expressed in SQL using Spark.

    Definition Classes
    spark
  • package catalyst
    Definition Classes
    sql
  • package trees
    Definition Classes
    catalyst
  • package util
    Definition Classes
    catalyst
  • LogStringContext

package util

Linear Supertypes
Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. util
  2. Logging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. implicit class LogStringContext extends AnyRef
    Definition Classes
    Logging

Value Members

  1. val AUTO_GENERATED_ALIAS: String
  2. val INTERNAL_METADATA_KEYS: Seq[String]
  3. val METADATA_COL_ATTR_KEY: String
  4. val QUALIFIED_ACCESS_ONLY: String
  5. def escapeSingleQuotedString(str: String): String
  6. def fileToString(file: File, encoding: Charset): String
  7. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  8. def initializeLogIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  9. def isTraceEnabled(): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  10. def log: Logger
    Attributes
    protected
    Definition Classes
    Logging
  11. def logDebug(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  12. def logDebug(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  13. def logDebug(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    Logging
  14. def logDebug(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  15. def logError(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  16. def logError(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  17. def logError(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    Logging
  18. def logError(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  19. def logInfo(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  20. def logInfo(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  21. def logInfo(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    Logging
  22. def logInfo(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  23. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  24. def logTrace(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  25. def logTrace(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  26. def logTrace(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    Logging
  27. def logTrace(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  28. def logWarning(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  29. def logWarning(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  30. def logWarning(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    Logging
  31. def logWarning(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  32. def quietly[A](f: => A): A
  33. def quoteIdentifier(name: String): String
  34. def quoteIfNeeded(part: String): String
  35. def quoteNameParts(name: Seq[String]): String
  36. def removeInternalMetadata(schema: StructType): StructType
  37. def resourceToBytes(resource: String, classLoader: ClassLoader): Array[Byte]
  38. def resourceToString(resource: String, encoding: String, classLoader: ClassLoader): String
  39. def sideBySide(left: Seq[String], right: Seq[String]): Seq[String]
  40. def sideBySide(left: String, right: String): Seq[String]
  41. def stackTraceToString(t: Throwable): String
  42. def stringToFile(file: File, str: String): File
  43. def toPrettySQL(e: Expression): String
  44. def truncatedString[T](seq: Seq[T], sep: String, maxFields: Int): String
  45. def truncatedString[T](seq: Seq[T], start: String, sep: String, end: String, maxFields: Int): String
  46. def usePrettyExpression(e: Expression): Expression
  47. def withLogContext(context: HashMap[String, String])(body: => Unit): Unit
    Attributes
    protected
    Definition Classes
    Logging

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped