Created
August 11, 2015 22:16
-
-
Save ezhulenev/c7a3e549d9195a08d3d9 to your computer and use it in GitHub Desktop.
Thread-safe Spark Sql Context
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object ServerSparkContext { | |
private[this] lazy val _sqlContext = { | |
val conf = new SparkConf() | |
.setAppName("....") | |
val sc = new SparkContext(conf) | |
// TODO: Bug in Spark: http://stackoverflow.com/questions/30323212 | |
val ctx = new HiveContext(sc) | |
ctx.setConf("spark.sql.hive.convertMetastoreParquet", "false") | |
ctx | |
} | |
private[this] lazy val sparkPool = { | |
val threadFactory = | |
new ThreadFactoryBuilder() | |
.setDaemon(true) | |
.setNameFormat("spark-pool-%s") | |
.build() | |
ExecutionContext.fromExecutor(Executors.newSingleThreadExecutor(threadFactory)) | |
} | |
// TODO: Because of some Spark concurrency weirdness DataFrame can be created | |
// TODO: from sql query only in the same thread where SqlContext was initialized | |
// Dirty hack to initialize Sql Context and load data frames in the same thread | |
def sqlContext: SQLContext = { | |
val future = Future(_sqlContext)(sparkPool) | |
Await.result(future, 60.seconds) | |
} | |
def dataFrame(source: String, cached: Boolean = true): DataFrame = { | |
val future = Future { | |
val df = Source(source).asDataFrame(_sqlContext) | |
if (cached) df.cache() else df | |
}(sparkPool) | |
Await.result(future, 10.seconds) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice example!
Thank you.