You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Edward Capriolo (JIRA)" <ji...@apache.org> on 2009/03/30 00:51:50 UTC

[jira] Created: (HIVE-377) Some ANT jars should be included into hive

Some ANT jars should be included into hive
------------------------------------------

                 Key: HIVE-377
                 URL: https://issues.apache.org/jira/browse/HIVE-377
             Project: Hadoop Hive
          Issue Type: Bug
          Components: Web UI
    Affects Versions: 0.2.0, 0.3.0
            Reporter: Edward Capriolo
             Fix For: 0.4.0


The WEB UI requires
HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant.jar
HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant-launcher.jar

Right now the start script does this.
{noformat}
 #hwi requires ant jars
 # if [ "$ANT_LIB" = "" ] ; then
 #   ANT_LIB=/opt/ant/libs
 # fi
 # for f in ${ANT_LIB}/*.jar; do
 #   if [[ ! -f $f ]]; then
 #     continue;
 #   fi
 #   HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:$f
 # done
{noformat}

Can we add these jars? This will add 1.4 MB to the hive. If we do not want to add these I would like to make the startup script fail if the environment variable is not correct.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HIVE-377) Some ANT jars should be included into hive

Posted by "Ashish Thusoo (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-377?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12694508#action_12694508 ] 

Ashish Thusoo commented on HIVE-377:
------------------------------------

I don't see a big problem adding this to hive_hwi.jar. If we just add it to that jar we would not be adding it to the cli jars or the execution jars. 


> Some ANT jars should be included into hive
> ------------------------------------------
>
>                 Key: HIVE-377
>                 URL: https://issues.apache.org/jira/browse/HIVE-377
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Web UI
>    Affects Versions: 0.2.0, 0.3.0
>            Reporter: Edward Capriolo
>             Fix For: 0.4.0
>
>
> The WEB UI requires
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant.jar
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant-launcher.jar
> Right now the start script does this.
> {noformat}
>  #hwi requires ant jars
>  # if [ "$ANT_LIB" = "" ] ; then
>  #   ANT_LIB=/opt/ant/libs
>  # fi
>  # for f in ${ANT_LIB}/*.jar; do
>  #   if [[ ! -f $f ]]; then
>  #     continue;
>  #   fi
>  #   HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:$f
>  # done
> {noformat}
> Can we add these jars? This will add 1.4 MB to the hive. If we do not want to add these I would like to make the startup script fail if the environment variable is not correct.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (HIVE-377) Some ANT jars should be included into hive

Posted by "Edward Capriolo (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-377?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward Capriolo resolved HIVE-377.
----------------------------------

    Resolution: Won't Fix

With newer releases of Hadoop & Hive Jetty and Ant are packaged differently and this is no longer and issue. 

> Some ANT jars should be included into hive
> ------------------------------------------
>
>                 Key: HIVE-377
>                 URL: https://issues.apache.org/jira/browse/HIVE-377
>             Project: Hadoop Hive
>          Issue Type: Improvement
>          Components: Web UI
>    Affects Versions: 0.3.0, 0.6.0
>            Reporter: Edward Capriolo
>             Fix For: 0.4.2
>
>
> The WEB UI requires
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant.jar
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant-launcher.jar
> Right now the start script does this.
> {noformat}
>  #hwi requires ant jars
>  # if [ "$ANT_LIB" = "" ] ; then
>  #   ANT_LIB=/opt/ant/libs
>  # fi
>  # for f in ${ANT_LIB}/*.jar; do
>  #   if [[ ! -f $f ]]; then
>  #     continue;
>  #   fi
>  #   HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:$f
>  # done
> {noformat}
> Can we add these jars? This will add 1.4 MB to the hive. If we do not want to add these I would like to make the startup script fail if the environment variable is not correct.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HIVE-377) Some ANT jars should be included into hive

Posted by "Zheng Shao (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-377?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zheng Shao updated HIVE-377:
----------------------------

    Issue Type: Improvement  (was: Bug)

> Some ANT jars should be included into hive
> ------------------------------------------
>
>                 Key: HIVE-377
>                 URL: https://issues.apache.org/jira/browse/HIVE-377
>             Project: Hadoop Hive
>          Issue Type: Improvement
>          Components: Web UI
>    Affects Versions: 0.2.0, 0.3.0
>            Reporter: Edward Capriolo
>             Fix For: 0.4.0
>
>
> The WEB UI requires
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant.jar
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant-launcher.jar
> Right now the start script does this.
> {noformat}
>  #hwi requires ant jars
>  # if [ "$ANT_LIB" = "" ] ; then
>  #   ANT_LIB=/opt/ant/libs
>  # fi
>  # for f in ${ANT_LIB}/*.jar; do
>  #   if [[ ! -f $f ]]; then
>  #     continue;
>  #   fi
>  #   HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:$f
>  # done
> {noformat}
> Can we add these jars? This will add 1.4 MB to the hive. If we do not want to add these I would like to make the startup script fail if the environment variable is not correct.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HIVE-377) Some ANT jars should be included into hive

Posted by "Zheng Shao (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-377?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zheng Shao updated HIVE-377:
----------------------------

    Fix Version/s:     (was: 0.4.0)
                   0.4.2

> Some ANT jars should be included into hive
> ------------------------------------------
>
>                 Key: HIVE-377
>                 URL: https://issues.apache.org/jira/browse/HIVE-377
>             Project: Hadoop Hive
>          Issue Type: Improvement
>          Components: Web UI
>    Affects Versions: 0.2.0, 0.3.0
>            Reporter: Edward Capriolo
>             Fix For: 0.4.2
>
>
> The WEB UI requires
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant.jar
> HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:/opt/ant/lib/ant-launcher.jar
> Right now the start script does this.
> {noformat}
>  #hwi requires ant jars
>  # if [ "$ANT_LIB" = "" ] ; then
>  #   ANT_LIB=/opt/ant/libs
>  # fi
>  # for f in ${ANT_LIB}/*.jar; do
>  #   if [[ ! -f $f ]]; then
>  #     continue;
>  #   fi
>  #   HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:$f
>  # done
> {noformat}
> Can we add these jars? This will add 1.4 MB to the hive. If we do not want to add these I would like to make the startup script fail if the environment variable is not correct.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.