shark.memstore2

MemoryMetadataManager

class MemoryMetadataManager extends LogHelper

Linear Supertypes
LogHelper, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MemoryMetadataManager
  2. LogHelper
  3. Logging
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MemoryMetadataManager()

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def containsTable(databaseName: String, tableName: String): Boolean

  9. def createMemoryTable(databaseName: String, tableName: String, cacheMode: CacheType): MemoryTable

  10. def createPartitionedMemoryTable(databaseName: String, tableName: String, cacheMode: CacheType, tblProps: Map[String, String]): PartitionedMemoryTable

  11. def dropTableFromMemory(db: Hive, databaseName: String, tableName: String): Unit

    Drops a table from the Shark cache.

    Drops a table from the Shark cache. However, Shark properties needed for table recovery (see TableRecovery#reloadRdds()) won't be removed. After this method completes, the table can still be scanned from disk.

  12. final def eq(arg0: AnyRef): Boolean

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

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

    Definition Classes
    LogHelper
  15. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  17. def getMemoryTable(databaseName: String, tableName: String): Option[MemoryTable]

  18. def getPartitionedTable(databaseName: String, tableName: String): Option[PartitionedMemoryTable]

  19. def getTable(databaseName: String, tableName: String): Option[Table]

  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. def isHivePartitioned(databaseName: String, tableName: String): Boolean

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def isTraceEnabled(): Boolean

    Attributes
    protected
    Definition Classes
    Logging
  24. def log: Logger

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  40. def outStream(): PrintStream

    Definition Classes
    LogHelper
  41. def removeTable(databaseName: String, tableName: String): Option[RDD[_]]

    Used to drop a table from Spark in-memory cache and/or disk.

    Used to drop a table from Spark in-memory cache and/or disk. All metadata is deleted as well.

    Note that this is always used in conjunction with a dropTableFromMemory() for handling 'shark.cache' property changes in an ALTER TABLE command, or to finish off a DROP TABLE command after the table has been deleted from the Hive metastore.

    returns

    Option::isEmpty() is true of there is no MemoryTable (and RDD) corresponding to 'key' in _keyToMemoryTable. For tables that are Hive-partitioned, the RDD returned will be a UnionRDD comprising RDDs that back the table's Hive-partitions.

  42. def renameTable(databaseName: String, oldName: String, newName: String): Unit

  43. def shutdown(): Unit

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

    Definition Classes
    AnyRef
  45. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LogHelper

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped