[
https://issues.apache.org/jira/browse/HIVE-11274?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14630876#comment-14630876
]
Ferdinand Xu commented on HIVE-11274:
-------------------------------------
Beeline is a think client. It's different from the HIVE CLI who is able to
retrieve the hdfs configuration. We should only support this feature in new CLI
mode. HIVE-11280 is filed addressing this.
> Support executing script file from hdfs in beeline
> --------------------------------------------------
>
> Key: HIVE-11274
> URL: https://issues.apache.org/jira/browse/HIVE-11274
> Project: Hive
> Issue Type: Improvement
> Reporter: Jeff Zhang
> Assignee: Ferdinand Xu
>
> It is supported for cli to execute hive script on hdfs, it should be
> straightforward to support it in beeline too.
> Beeline.java
> {code}
> private int executeFile(String fileName) {
> FileInputStream initStream = null;
> try {
> initStream = new FileInputStream(fileName);
> return execute(getConsoleReader(initStream), true);
> } catch (Throwable t) {
> handleException(t);
> return ERRNO_OTHER;
> } finally {
> IOUtils.closeStream(initStream);
> consoleReader = null;
> output(""); // dummy new line
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)