[ 
https://issues.apache.org/jira/browse/HIVE-752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12748999#action_12748999
 ] 

Todd Lipcon commented on HIVE-752:
----------------------------------

Hi Edward,

As I think I noticed in the original JIRA, I did not manually test HWI. I 
figured that any necessary tests would already exist in the form of JUnit tests 
- in my opinion every supported feature of Hive should be continuously tested 
by Hudson.

If you can add a test case that passes pre-HIVE-718 and fails now, I will 
happily fix it.

-Todd

> Encountered ClassNotFound exception when trying HWI server
> ----------------------------------------------------------
>
>                 Key: HIVE-752
>                 URL: https://issues.apache.org/jira/browse/HIVE-752
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Clients
>         Environment: Hadoop 0.18.3
>            Reporter: Venkat Ramachandran
>            Assignee: Edward Capriolo
>
> Encountered ClassNotFound exception (for class: 
> org.apache.jetty.hive.shims.Jetty18Shims) when trying to start HWI server on 
> Hadoop 18.
> It appears that the class ShimLoader 
> (org.apache.hadoop.hive.shims.ShimLoader) is referring to incorrect classes 
> as below:
> static {
>     JETTY_SHIM_CLASSES.put("0.17", 
> "org.apache.jetty.hive.shims.Jetty17Shims");
>     JETTY_SHIM_CLASSES.put("0.18", 
> "org.apache.jetty.hive.shims.Jetty18Shims");
>     JETTY_SHIM_CLASSES.put("0.19", 
> "org.apache.jetty.hive.shims.Jetty19Shims");
>     JETTY_SHIM_CLASSES.put("0.20", 
> "org.apache.jetty.hive.shims.Jetty20Shims");
>   }
> however, I think it should be as below:
>  static 
>   {
>         JETTY_SHIM_CLASSES.put("0.17", 
> "org.apache.hadoop.hive.shims.Jetty17Shims");
>         JETTY_SHIM_CLASSES.put("0.18", 
> "org.apache.hadoop.hive.shims.Jetty18Shims");
>         JETTY_SHIM_CLASSES.put("0.19", 
> "org.apache.hadoop.hive.shims.Jetty19Shims");
>         JETTY_SHIM_CLASSES.put("0.20", 
> "org.apache.hadoop.hive.shims.Jetty20Shims");
>   } 
> Wondering if anybody else encountered this.

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

Reply via email to