[ 
https://issues.apache.org/jira/browse/SPARK-13768?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Weizhong closed SPARK-13768.
----------------------------
    Resolution: Fixed

> Set hive conf failed use --hiveconf when beeline connect to thriftserver
> ------------------------------------------------------------------------
>
>                 Key: SPARK-13768
>                 URL: https://issues.apache.org/jira/browse/SPARK-13768
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 1.5.1
>            Reporter: Weizhong
>            Priority: Minor
>
> 1. Start thriftserver
> 2. ./bin/beeline -u '...' --hiveconf hive.exec.max.dynamic.partitions=10000
> 3. set hive.exec.max.dynamic.partitions;  --  return is default value 1000, 
> not 10000
> May be we can pass conf to context when open session
> {code:java}
> override def openSession(...): SessionHandle = {
>   ...
>   if (sessionConf != null) {
>     import scala.collection.JavaConversions._
>     for ((k, v) <- sessionConf) {
>       if (k.startsWith("set:hiveconf:")) {
>         val setK = k.split("set:hiveconf:")(1)
>         ctx.setConf(setK, v)
>       }
>     }
>   }
>   ctx.setConf("spark.sql.hive.version", HiveContext.hiveExecutionVersion)
>   ...
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to