Please see the following
in sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala :
val TUNGSTEN_ENABLED = booleanConf("spark.sql.tungsten.enabled",
defaultValue = Some(true),
doc = "When true, use the optimized Tungsten physical execution backend
which explicitly " +
"manages memory and dynamically generates bytecode for expression
evaluation.")
val CODEGEN_ENABLED = booleanConf("spark.sql.codegen",
defaultValue = Some(true), // use TUNGSTEN_ENABLED as default
doc = "When true, code will be dynamically generated at runtime for
expression evaluation in" +
" a specific query.",
isPublic = false)
val UNSAFE_ENABLED = booleanConf("spark.sql.unsafe.enabled",
defaultValue = Some(true), // use TUNGSTEN_ENABLED as default
doc = "When true, use the new optimized Tungsten physical execution
backend.",
isPublic = false)
Cheers
On Thu, Sep 10, 2015 at 7:39 AM, unk1102 <[email protected]> wrote:
> Hi Spark 1.5 looks promising how do we enable project tungsten for spark
> sql
> or is it enabled by default please guide.
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com/How-to-enable-Tungsten-in-Spark-1-5-for-Spark-SQL-tp24642.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>