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

shark.memstore2.TableRecovery.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.memstore2

import java.util.{HashMap => JavaHashMap}

import scala.collection.JavaConversions.asScalaBuffer

import org.apache.hadoop.hive.ql.metadata.Hive
import org.apache.hadoop.hive.ql.session.SessionState

import shark.{LogHelper, SharkEnv}
import shark.util.QueryRewriteUtils

/**
 * Singleton used to reload RDDs upon server restarts.
 */
object TableRecovery extends LogHelper {

  val db = Hive.get()

  /**
   * Loads any cached tables with MEMORY as its `shark.cache` property.
   * @param cmdRunner The runner that is responsible for taking a cached table query and
   *        a) Creating the table metadata in Hive Meta Store
   *        b) Loading the table as an RDD in memory
   *        @see SharkServer for an example usage.
   * @param console Optional SessionState.LogHelper used, if present, to log information about
            the tables that get reloaded.
   */
  def reloadRdds(cmdRunner: String => Unit, console: Option[SessionState.LogHelper] = None) {
    // Filter for tables that should be reloaded into the cache.
    val currentDbName = db.getCurrentDatabase()
    for (databaseName <- db.getAllDatabases(); tableName <- db.getAllTables(databaseName)) {
      val hiveTable = db.getTable(databaseName, tableName)
      val tblProps = hiveTable.getParameters
      val cacheMode = CacheType.fromString(tblProps.get(SharkTblProperties.CACHE_FLAG.varname))
      if (cacheMode == CacheType.MEMORY) {
        val logMessage = "Reloading %s.%s into memory.".format(databaseName, tableName)
        if (console.isDefined) {
          console.get.printInfo(logMessage)
        } else {
          logInfo(logMessage)
        }
        val cmd = QueryRewriteUtils.cacheToAlterTable("CACHE %s".format(tableName))
        cmdRunner(cmd)
      }
    }
    db.setCurrentDatabase(currentDbName)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy