[
https://issues.apache.org/jira/browse/HIVE-22325?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16964653#comment-16964653
]
Hive QA commented on HIVE-22325:
--------------------------------
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12984547/HIVE-22325.patch
{color:green}SUCCESS:{color} +1 due to 1 test(s) being added or modified.
{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 17547 tests
executed
*Failed tests:*
{noformat}
org.apache.hive.beeline.hs2connection.TestBeelineSiteParser.testVariableExpansion
(batchId=204)
{noformat}
Test results:
https://builds.apache.org/job/PreCommit-HIVE-Build/19245/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/19245/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-19245/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12984547 - PreCommit-HIVE-Build
> variable expansion doesn't work in beeline-site.xml
> ---------------------------------------------------
>
> Key: HIVE-22325
> URL: https://issues.apache.org/jira/browse/HIVE-22325
> Project: Hive
> Issue Type: Bug
> Components: Beeline
> Affects Versions: 3.1.0, 3.1.1, 3.1.2
> Reporter: Allan Espinosa
> Assignee: Allan Espinosa
> Priority: Major
> Attachments: HIVE-22325.patch.txt
>
>
> I have a default jdbc connection string and I want to build on top on it to
> have customized connections like setting custom queue names.
> {code}
> $ cat .beeline/beeline-site.xml
> <configuration xmlns:xi="http://www.w3.org/2001/XInclude">
> <property>
> <name>beeline.hs2.jdbc.url.base</name>
> <value>jdbc:hive2://localhost/</value>
> </property>
> <property>
> <name>beeline.hs2.jdbc.url.myqueue</name>
> <value>${beeline.hs2.jdbc.url.base}?tez.queue.name=myqueue</value>
> </property>
> </configuration>
> $ beeline -c myqueue
> SLF4J: Class path contains multiple SLF4J bindings.
> SLF4J: Found binding in
> [jar:file:/usr/hdp/3.1.0.0-78/hive/lib/log4j-slf4j-impl-2.10.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
> SLF4J: Found binding in
> [jar:file:/usr/hdp/3.1.0.0-78/hadoop/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
> SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
> explanation.
> SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
> Error in parsing jdbc url:
> ${beeline.hs2.jdbc.url.base}?tez.queue.name=myqueue from beeline-site.xml
> Beeline version 3.1.0.3.1.0.0-78 by Apache Hive
> beeline>
> {code}
> Relevant code is found in
> https://github.com/apache/hive/blob/master/beeline/src/java/org/apache/hive/beeline/hs2connection/BeelineSiteParser.java#L94
> Entry<T,T>#getValue() skips the variable expansion . Using
> Configuration#get(key) would make this work.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)