shark.execution

MemoryStoreSinkOperator

class MemoryStoreSinkOperator extends TerminalOperator

Cache the RDD and force evaluate it (so the cache is filled).

Linear Supertypes
TerminalOperator, UnaryOperator[FileSinkDesc], Operator[FileSinkDesc], Serializable, Serializable, LogHelper, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MemoryStoreSinkOperator
  2. TerminalOperator
  3. UnaryOperator
  4. Operator
  5. Serializable
  6. Serializable
  7. LogHelper
  8. Logging
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MemoryStoreSinkOperator()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addChild(child: Operator[_ <: HiveDesc]): Unit

    Definition Classes
    Operator
  7. def addParent(parent: Operator[_ <: HiveDesc]): Unit

    Definition Classes
    Operator
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. var cacheMode: CacheType

  10. def childOperators: ArrayBuffer[Operator[_ <: HiveDesc]]

    Definition Classes
    Operator
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. var databaseName: String

  13. def desc: FileSinkDesc

    Definition Classes
    Operator
  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def errStream(): PrintStream

    Definition Classes
    LogHelper
  17. def execute(): RDD[_]

    Execute the operator.

    Execute the operator. This should recursively execute parent operators.

    Definition Classes
    MemoryStoreSinkOperatorUnaryOperatorOperator
  18. def executeParents(): Seq[(Int, RDD[_])]

    Attributes
    protected
    Definition Classes
    Operator
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def getDatabaseName(): String

  22. def getHivePartitionKeyOpt(): Option[String]

  23. def getLocalHconf(): HiveConf

    Definition Classes
    TerminalOperator
  24. def getLocalHiveOp(): org.apache.hadoop.hive.ql.exec.FileSinkOperator

    Definition Classes
    TerminalOperator
  25. def getNow(): Date

    Definition Classes
    TerminalOperator
  26. def getPartitionSize(): Int

  27. def getShouldCompress(): Boolean

  28. def getTableName(): String

  29. def getTag: Int

    Return the join tag.

    Return the join tag. This is usually just 0. ReduceSink might set it to something else.

    Definition Classes
    Operator
  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. def hconf: HiveConf

    Definition Classes
    Operator
  32. var hivePartitionKeyOpt: Option[String]

  33. def initEvaluators(evals: Array[ExprNodeEvaluator], start: Int, length: Int, rowInspector: ObjectInspector): Array[ObjectInspector]

    Initialize an array of ExprNodeEvaluator from start, for specified length and return the result ObjectInspectors.

    Initialize an array of ExprNodeEvaluator from start, for specified length and return the result ObjectInspectors.

    Attributes
    protected
    Definition Classes
    Operator
  34. def initEvaluators(evals: Array[ExprNodeEvaluator], rowInspector: ObjectInspector): Array[ObjectInspector]

    Initialize an array of ExprNodeEvaluator and return the result ObjectInspectors.

    Initialize an array of ExprNodeEvaluator and return the result ObjectInspectors.

    Attributes
    protected
    Definition Classes
    Operator
  35. def initEvaluatorsAndReturnStruct(evals: Array[ExprNodeEvaluator], outputColName: List[String], rowInspector: ObjectInspector): StructObjectInspector

    Initialize an array of ExprNodeEvaluator and put the return values into a StructObjectInspector with integer field names.

    Initialize an array of ExprNodeEvaluator and put the return values into a StructObjectInspector with integer field names.

    Attributes
    protected
    Definition Classes
    Operator
  36. def initEvaluatorsAndReturnStruct(evals: Array[ExprNodeEvaluator], fieldObjectInspectors: Array[ObjectInspector], distinctColIndices: List[List[Integer]], outputColNames: List[String], length: Int, rowInspector: ObjectInspector): StructObjectInspector

    Copy from the org.

    Copy from the org.apache.hadoop.hive.ql.exec.ReduceSinkOperator Initializes array of ExprNodeEvaluator. Adds Union field for distinct column indices for group by. Puts the return values into a StructObjectInspector with output column names.

    If distinctColIndices is empty, the object inspector is same as Operator#initEvaluatorsAndReturnStruct(ExprNodeEvaluator[], List, ObjectInspector)

    Attributes
    protected
    Definition Classes
    Operator
  37. def initEvaluatorsAndReturnStruct(evals: Array[ExprNodeEvaluator], distinctColIndices: List[List[Integer]], outputColNames: List[String], length: Int, rowInspector: ObjectInspector): StructObjectInspector

    Copy from the org.

    Copy from the org.apache.hadoop.hive.ql.exec.ReduceSinkOperator Initializes array of ExprNodeEvaluator. Adds Union field for distinct column indices for group by. Puts the return values into a StructObjectInspector with output column names.

    If distinctColIndices is empty, the object inspector is same as Operator#initEvaluatorsAndReturnStruct(ExprNodeEvaluator[], List, ObjectInspector)

    Attributes
    protected
    Definition Classes
    Operator
  38. def initializeMasterOnAll(): Unit

    Recursively calls initializeOnMaster() for the entire query plan.

    Recursively calls initializeOnMaster() for the entire query plan. Parent operators are called before children.

    Definition Classes
    Operator
  39. def initializeOnMaster(): Unit

    Initialize the operator on master node.

    Initialize the operator on master node. This can have dependency on other nodes. When an operator's initializeOnMaster() is invoked, all its parents' initializeOnMaster() have been invoked.

    Definition Classes
    MemoryStoreSinkOperatorTerminalOperatorOperator
  40. def initializeOnSlave(): Unit

    Initialize the operator on slave nodes.

    Initialize the operator on slave nodes. This method should have no dependency on parents or children. Everything that is not used in this method should be marked @transient.

    Definition Classes
    MemoryStoreSinkOperatorTerminalOperatorOperator
  41. def inputObjectInspectors(): Seq[ObjectInspector]

    Attributes
    protected
    Definition Classes
    Operator
  42. var isInsertInto: Boolean

  43. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  44. def isTraceEnabled(): Boolean

    Attributes
    protected
    Definition Classes
    Logging
  45. var localHconf: HiveConf

    Definition Classes
    TerminalOperator
  46. var localHiveOp: org.apache.hadoop.hive.ql.exec.FileSinkOperator

    Definition Classes
    TerminalOperator
  47. def log: Logger

    Attributes
    protected
    Definition Classes
    Logging
  48. def logDebug(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  49. def logDebug(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  50. def logError(msg: String, exception: Throwable): Unit

    Definition Classes
    LogHelper
  51. def logError(msg: String, detail: String): Unit

    Definition Classes
    LogHelper
  52. def logError(msg: ⇒ String): Unit

    Definition Classes
    LogHelper → Logging
  53. def logError(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  54. def logInfo(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  55. def logInfo(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  56. def logTrace(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  57. def logTrace(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  58. def logWarning(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  59. def logWarning(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  60. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  61. final def notify(): Unit

    Definition Classes
    AnyRef
  62. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  63. val now: Date

    Definition Classes
    TerminalOperator
  64. var numColumns: Int

  65. def objectInspector: ObjectInspector

    Definition Classes
    UnaryOperator
  66. var objectInspectors: Seq[ObjectInspector]

    Definition Classes
    Operator
  67. def outStream(): PrintStream

    Definition Classes
    LogHelper
  68. def outputObjectInspector(): ObjectInspector

    Definition Classes
    Operator
  69. def parentOperator: Operator[HiveDesc]

    Definition Classes
    UnaryOperator
  70. def parentOperators: ArrayBuffer[Operator[_ <: HiveDesc]]

    Definition Classes
    Operator
  71. def parentOperatorsAsJavaList: List[Operator[_ <: HiveDesc]]

    Return the parent operators as a Java List.

    Return the parent operators as a Java List. This is for interoperability with Java. We use this in explain's Java code.

    Definition Classes
    Operator
  72. var partitionSize: Int

  73. def postprocessRdd(rdd: RDD[_]): RDD[_]

    Called on master.

    Called on master.

    Definition Classes
    UnaryOperator
  74. def preprocessRdd(rdd: RDD[_]): RDD[_]

    Called on master.

    Called on master.

    Definition Classes
    UnaryOperator
  75. def processPartition(split: Int, iter: Iterator[_]): Iterator[_]

    Process a partition.

    Process a partition. Called on slaves.

    Definition Classes
    MemoryStoreSinkOperatorTerminalOperatorUnaryOperatorOperator
  76. def returnTerminalOperators(): Seq[Operator[_ <: HiveDesc]]

    Definition Classes
    Operator
  77. def returnTopOperators(): Seq[Operator[_]]

    Definition Classes
    Operator
  78. def setDatabaseName(arg0: String): Unit

  79. def setDesc[B >: FileSinkDesc](d: B): Unit

    Definition Classes
    Operator
  80. def setHivePartitionKeyOpt(arg0: Option[String]): Unit

  81. def setLocalHconf(arg0: HiveConf): Unit

    Definition Classes
    TerminalOperator
  82. def setLocalHiveOp(arg0: org.apache.hadoop.hive.ql.exec.FileSinkOperator): Unit

    Definition Classes
    TerminalOperator
  83. def setPartitionSize(arg0: Int): Unit

  84. def setShouldCompress(arg0: Boolean): Unit

  85. def setTableName(arg0: String): Unit

  86. var shouldCompress: Boolean

  87. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  88. var tableName: String

  89. def toString(): String

    Definition Classes
    AnyRef → Any
  90. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  91. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  92. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TerminalOperator

Inherited from UnaryOperator[FileSinkDesc]

Inherited from Operator[FileSinkDesc]

Inherited from Serializable

Inherited from Serializable

Inherited from LogHelper

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped