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.