On Mon, Aug 24, 2009 at 10:13 PM, Vijay<[email protected]> wrote: > Probably spoke too soon :) I added this comment to the JIRA ticket above. > > Hi, I tried the latest patch on trunk and there seems to be a problem. > > I was interested in using the "add jar " command to add jar files to the > path. However, by the time the command flows through the SessionState to the > AddResourceProcessor (in > ./ql/src/java/org/apache/hadoop/hive/ql/processors/AddResourceProcessor.java), > the command word "add" is not being stripped so the resource processor is > trying to find a ResourceType of "ADD." > > I'm not sure if this was an existing bug or was a result of the current set > of changes. > > [ Show ยป ] > Vijay added a comment - 24/Aug/09 07:12 PM Hi, I tried the latest patch on > trunk and there seems to be a problem. I was interested in using the "add > jar " command to add jar files to the path. However, by the time the command > flows through the SessionState to the AddResourceProcessor (in > ./ql/src/java/org/apache/hadoop/hive/ql/processors/AddResourceProcessor.java), > the command word "add" is not being stripped so the resource processor is > trying to find a ResourceType of "ADD." I'm not sure if this was an existing > bug or was a result of the current set of changes. > On Mon, Aug 24, 2009 at 5:30 PM, Vijay <[email protected]> wrote: >> >> That's awesome and looks like exactly what I needed. Local file system >> requirement is perfectly ok for now. I will check it out right away! >> Hopefully it will be checked in soon. >> >> Thanks Edward! >> >> On Mon, Aug 24, 2009 at 5:14 PM, Edward Capriolo <[email protected]> >> wrote: >>> >>> On Mon, Aug 24, 2009 at 8:09 PM, Prasad Chakka<[email protected]> >>> wrote: >>> > Vijay, there is no solution for it yet. There may be a jira open but >>> > AFAIK, >>> > no one is working on it. You are welcome to contribute this feature. >>> > >>> > Prasad >>> > >>> > >>> > ________________________________ >>> > From: Vijay <[email protected]> >>> > Reply-To: <[email protected]> >>> > Date: Mon, 24 Aug 2009 16:59:28 -0700 >>> > To: <[email protected]> >>> > Subject: Re: Adding jar files when running hive in hwi mode or >>> > hiveserver >>> > mode >>> > >>> > Hi, is there any solution for this? How does everybody include custom >>> > jar >>> > files running hive in a non-cli mode? >>> > >>> > Thanks in advance, >>> > Vijay >>> > >>> > On Sat, Aug 22, 2009 at 6:19 PM, Vijay <[email protected]> wrote: >>> > >>> > When I run hive in cli mode, I add the hive_contrib.jar file using this >>> > command: >>> > >>> > hive> add jar lib/hive_contrib.jar >>> > >>> > Is there a way to do this automatically when running hive in hwi or >>> > hiveserver modes? Or do I have to add the jar file explicitly to any of >>> > the >>> > startup scripts? >>> > >>> > >>> > >>> >>> Vijay, >>> >>> Currently HWI does not support this. The changes in >>> https://issues.apache.org/jira/browse/HIVE-716 will make this possible >>> (although I did not test but it should work as the cli does). The file >>> will have to be in the servers local file system. We could probably >>> include 'commons upload' to the web interface if there was a need for >>> it. >>> >>> HIVE-716 should be in trunk soon. It does apply cleanly if its >>> something you need today, >>> Edward >> > >
I just committed a new version of the patch. You were correct, the clidriver trims the first token off set and add queries hwi was not doing that. Also let me know your impressions of HWI. The new features are the 'ResultBucket' a buffer of the last x results viewable from the web interface, and the ability to supply more then one query at a time. These two features should add much usability now as you can do things like explain, show tables, etc and not have to dump the results to a file. Edward
