|
|
-
JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-04, 07:47
Here's what I'm trying: ResultSet rs=st.executeQuery("show tables"); while(rs.next()) { System.out.println(rs.getString(1)); } The while loop never terminates, after going through the list of tables, it keeps printing the last table name over & over again. Am I doing something wrong over here, or have I hit a bug? I'm on hive-0.3.0-hadoop-0.18.0-bin Saurabh. -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Bill Graham 2009-08-04, 14:35
This bug has been fixed on the trunk. Check out the hive trunk and build the JDBC driver and you should be fine. On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]>wrote: > Here's what I'm trying: > > ResultSet rs=st.executeQuery("show tables"); > while(rs.next()) { > System.out.println(rs.getString(1)); > } > > The while loop never terminates, after going through the list of tables, it > keeps printing the last table name over & over again. Am I doing something > wrong over here, or have I hit a bug? I'm on hive-0.3.0-hadoop-0.18.0-bin > > Saurabh. > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com>
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-04, 14:39
I was dreading this response! Are there any plans to push out a new Hive build with the latest features & bug fixes? Building from trunk is not everyone's cup of tea, you know :-) Any nightly builds that I can pick up? Saurabh. On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]> wrote: > This bug has been fixed on the trunk. Check out the hive trunk and build > the JDBC driver and you should be fine. > > > On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]>wrote: > >> Here's what I'm trying: >> >> ResultSet rs=st.executeQuery("show tables"); >> while(rs.next()) { >> System.out.println(rs.getString(1)); >> } >> >> The while loop never terminates, after going through the list of tables, >> it keeps printing the last table name over & over again. Am I doing >> something wrong over here, or have I hit a bug? I'm on >> hive-0.3.0-hadoop-0.18.0-bin >> >> Saurabh. >> -- >> http://nandz.blogspot.com>> http://foodieforlife.blogspot.com>> > > -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Bill Graham 2009-08-04, 14:43
+1 I agree. I do not know the answer to that one. Can anyone comment on the future Hive release schedule? On Tue, Aug 4, 2009 at 7:39 AM, Saurabh Nanda <[EMAIL PROTECTED]>wrote: > I was dreading this response! Are there any plans to push out a new Hive > build with the latest features & bug fixes? Building from trunk is not > everyone's cup of tea, you know :-) > > Any nightly builds that I can pick up? > > Saurabh. > > > On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]> wrote: > >> This bug has been fixed on the trunk. Check out the hive trunk and build >> the JDBC driver and you should be fine. >> >> >> On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]>wrote: >> >>> Here's what I'm trying: >>> >>> ResultSet rs=st.executeQuery("show tables"); >>> while(rs.next()) { >>> System.out.println(rs.getString(1)); >>> } >>> >>> The while loop never terminates, after going through the list of tables, >>> it keeps printing the last table name over & over again. Am I doing >>> something wrong over here, or have I hit a bug? I'm on >>> hive-0.3.0-hadoop-0.18.0-bin >>> >>> Saurabh. >>> -- >>> http://nandz.blogspot.com>>> http://foodieforlife.blogspot.com>>> >> >> > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com>
-
Re: JDBC: Infinite while(rs.next()) loop
Edward Capriolo 2009-08-04, 15:43
On Tue, Aug 4, 2009 at 10:43 AM, Bill Graham<[EMAIL PROTECTED]> wrote: > +1 > > I agree. I do not know the answer to that one. Can anyone comment on the > future Hive release schedule? > > > On Tue, Aug 4, 2009 at 7:39 AM, Saurabh Nanda <[EMAIL PROTECTED]> > wrote: >> >> I was dreading this response! Are there any plans to push out a new Hive >> build with the latest features & bug fixes? Building from trunk is not >> everyone's cup of tea, you know :-) >> >> Any nightly builds that I can pick up? >> >> Saurabh. >> >> On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]> wrote: >>> >>> This bug has been fixed on the trunk. Check out the hive trunk and build >>> the JDBC driver and you should be fine. >>> >>> On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]> >>> wrote: >>>> >>>> Here's what I'm trying: >>>> >>>> ResultSet rs=st.executeQuery("show tables"); >>>> while(rs.next()) { >>>> System.out.println(rs.getString(1)); >>>> } >>>> >>>> The while loop never terminates, after going through the list of tables, >>>> it keeps printing the last table name over & over again. Am I doing >>>> something wrong over here, or have I hit a bug? I'm on >>>> hive-0.3.0-hadoop-0.18.0-bin >>>> >>>> Saurabh. >>>> -- >>>> http://nandz.blogspot.com>>>> http://foodieforlife.blogspot.com>>> >> >> >> >> -- >> http://nandz.blogspot.com>> http://foodieforlife.blogspot.com> > Hive 4.0 will be a release candidate soon. The largest major blocker that I know of is dealing with Hadoop 0.20. See: https://issues.apache.org/jira/browse/HIVE-487Soon after that their should be a release candidate, then voting. Edward
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-04, 17:20
Is there any possibility of having a nightly build off the trunk, before hive 0.4 is officially released? On 8/4/09, Edward Capriolo <[EMAIL PROTECTED]> wrote: > On Tue, Aug 4, 2009 at 10:43 AM, Bill Graham<[EMAIL PROTECTED]> wrote: >> +1 >> >> I agree. I do not know the answer to that one. Can anyone comment on the >> future Hive release schedule? >> >> >> On Tue, Aug 4, 2009 at 7:39 AM, Saurabh Nanda <[EMAIL PROTECTED]> >> wrote: >>> >>> I was dreading this response! Are there any plans to push out a new Hive >>> build with the latest features & bug fixes? Building from trunk is not >>> everyone's cup of tea, you know :-) >>> >>> Any nightly builds that I can pick up? >>> >>> Saurabh. >>> >>> On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]> wrote: >>>> >>>> This bug has been fixed on the trunk. Check out the hive trunk and build >>>> the JDBC driver and you should be fine. >>>> >>>> On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]> >>>> wrote: >>>>> >>>>> Here's what I'm trying: >>>>> >>>>> ResultSet rs=st.executeQuery("show tables"); >>>>> while(rs.next()) { >>>>> System.out.println(rs.getString(1)); >>>>> } >>>>> >>>>> The while loop never terminates, after going through the list of >>>>> tables, >>>>> it keeps printing the last table name over & over again. Am I doing >>>>> something wrong over here, or have I hit a bug? I'm on >>>>> hive-0.3.0-hadoop-0.18.0-bin >>>>> >>>>> Saurabh. >>>>> -- >>>>> http://nandz.blogspot.com>>>>> http://foodieforlife.blogspot.com>>>> >>> >>> >>> >>> -- >>> http://nandz.blogspot.com>>> http://foodieforlife.blogspot.com>> >> > > Hive 4.0 will be a release candidate soon. The largest major blocker > that I know of is dealing with Hadoop 0.20. See: > > https://issues.apache.org/jira/browse/HIVE-487> > Soon after that their should be a release candidate, then voting. > > Edward > -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Edward Capriolo 2009-08-04, 17:33
On Tue, Aug 4, 2009 at 1:20 PM, Saurabh Nanda<[EMAIL PROTECTED]> wrote: > Is there any possibility of having a nightly build off the trunk, > before hive 0.4 is officially released? > > On 8/4/09, Edward Capriolo <[EMAIL PROTECTED]> wrote: >> On Tue, Aug 4, 2009 at 10:43 AM, Bill Graham<[EMAIL PROTECTED]> wrote: >>> +1 >>> >>> I agree. I do not know the answer to that one. Can anyone comment on the >>> future Hive release schedule? >>> >>> >>> On Tue, Aug 4, 2009 at 7:39 AM, Saurabh Nanda <[EMAIL PROTECTED]> >>> wrote: >>>> >>>> I was dreading this response! Are there any plans to push out a new Hive >>>> build with the latest features & bug fixes? Building from trunk is not >>>> everyone's cup of tea, you know :-) >>>> >>>> Any nightly builds that I can pick up? >>>> >>>> Saurabh. >>>> >>>> On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]> wrote: >>>>> >>>>> This bug has been fixed on the trunk. Check out the hive trunk and build >>>>> the JDBC driver and you should be fine. >>>>> >>>>> On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]> >>>>> wrote: >>>>>> >>>>>> Here's what I'm trying: >>>>>> >>>>>> ResultSet rs=st.executeQuery("show tables"); >>>>>> while(rs.next()) { >>>>>> System.out.println(rs.getString(1)); >>>>>> } >>>>>> >>>>>> The while loop never terminates, after going through the list of >>>>>> tables, >>>>>> it keeps printing the last table name over & over again. Am I doing >>>>>> something wrong over here, or have I hit a bug? I'm on >>>>>> hive-0.3.0-hadoop-0.18.0-bin >>>>>> >>>>>> Saurabh. >>>>>> -- >>>>>> http://nandz.blogspot.com>>>>>> http://foodieforlife.blogspot.com>>>>> >>>> >>>> >>>> >>>> -- >>>> http://nandz.blogspot.com>>>> http://foodieforlife.blogspot.com>>> >>> >> >> Hive 4.0 will be a release candidate soon. The largest major blocker >> that I know of is dealing with Hadoop 0.20. See: >> >> https://issues.apache.org/jira/browse/HIVE-487>> >> Soon after that their should be a release candidate, then voting. >> >> Edward >> > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> The major thing on that is we have to build releases for every hadoop major/minor and possibly one off the trunk. I was thinking of doing something similar on my site since accomplishing this is possible with hudson. Does anyone think adding this to hadoop hive is something we should do.
-
Re: JDBC: Infinite while(rs.next()) loop
Bill Graham 2009-08-04, 23:13
I would love to see nightly/periodic builds published somewhere, especially if it's going to be some time before Hive 0.4 is released. It seems like people new to Hive get the "check out and build from the trunk" or "apply this patch" answer often on this list. Having nightly builds would make life easier on these folks as well. On Tue, Aug 4, 2009 at 10:33 AM, Edward Capriolo <[EMAIL PROTECTED]>wrote: > On Tue, Aug 4, 2009 at 1:20 PM, Saurabh Nanda<[EMAIL PROTECTED]> > wrote: > > Is there any possibility of having a nightly build off the trunk, > > before hive 0.4 is officially released? > > > > On 8/4/09, Edward Capriolo <[EMAIL PROTECTED]> wrote: > >> On Tue, Aug 4, 2009 at 10:43 AM, Bill Graham<[EMAIL PROTECTED]> > wrote: > >>> +1 > >>> > >>> I agree. I do not know the answer to that one. Can anyone comment on > the > >>> future Hive release schedule? > >>> > >>> > >>> On Tue, Aug 4, 2009 at 7:39 AM, Saurabh Nanda <[EMAIL PROTECTED]> > >>> wrote: > >>>> > >>>> I was dreading this response! Are there any plans to push out a new > Hive > >>>> build with the latest features & bug fixes? Building from trunk is not > >>>> everyone's cup of tea, you know :-) > >>>> > >>>> Any nightly builds that I can pick up? > >>>> > >>>> Saurabh. > >>>> > >>>> On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]> > wrote: > >>>>> > >>>>> This bug has been fixed on the trunk. Check out the hive trunk and > build > >>>>> the JDBC driver and you should be fine. > >>>>> > >>>>> On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda < > [EMAIL PROTECTED]> > >>>>> wrote: > >>>>>> > >>>>>> Here's what I'm trying: > >>>>>> > >>>>>> ResultSet rs=st.executeQuery("show tables"); > >>>>>> while(rs.next()) { > >>>>>> System.out.println(rs.getString(1)); > >>>>>> } > >>>>>> > >>>>>> The while loop never terminates, after going through the list of > >>>>>> tables, > >>>>>> it keeps printing the last table name over & over again. Am I doing > >>>>>> something wrong over here, or have I hit a bug? I'm on > >>>>>> hive-0.3.0-hadoop-0.18.0-bin > >>>>>> > >>>>>> Saurabh. > >>>>>> -- > >>>>>> http://nandz.blogspot.com> >>>>>> http://foodieforlife.blogspot.com> >>>>> > >>>> > >>>> > >>>> > >>>> -- > >>>> http://nandz.blogspot.com> >>>> http://foodieforlife.blogspot.com> >>> > >>> > >> > >> Hive 4.0 will be a release candidate soon. The largest major blocker > >> that I know of is dealing with Hadoop 0.20. See: > >> > >> https://issues.apache.org/jira/browse/HIVE-487> >> > >> Soon after that their should be a release candidate, then voting. > >> > >> Edward > >> > > > > > > -- > > http://nandz.blogspot.com> > http://foodieforlife.blogspot.com> > > > The major thing on that is we have to build releases for every hadoop > major/minor and possibly one off the trunk. I was thinking of doing > something similar on my site since accomplishing this is possible with > hudson. Does anyone think adding this to hadoop hive is something we > should do. >
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-05, 03:43
> The major thing on that is we have to build releases for every hadoop > major/minor and possibly one off the trunk. I was thinking of doing > something similar on my site since accomplishing this is possible with > hudson. Does anyone think adding this to hadoop hive is something we > should do. > A nightly build is helpful for newbies who don't have the necessary skills (or time) to build trunk themselves. For that class of people it doesn't make any difference if the Hadoop version used is the latest -- in all probability, they're new to Hadoop as well. Even if they have an older version of Hadoop running in a production cluster, they would be fine with downloading a newer version to experiment/develop with a *nightly build* of Hive. To summarize, a nightly build off Hadoop-0.3 should be just fine :-) PS: I'm assuming that switching to a newer version of Hadoop is easy, and data in the DFS can be imported into the newer version, right? Saurabh. -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-05, 05:01
Another line of reasoning -- if Hive-trunk is not compiling with Hadoop 0.20, then people with Hadoop 0.20 are anyways living with their bugs. That should not be a reason to not put out a new build. With a new build, at least people who're on newer versions of Hadoop get their Hive bug fixes & features. Hive 4.0 will be a release candidate soon. The largest major blocker > that I know of is dealing with Hadoop 0.20. See: > > https://issues.apache.org/jira/browse/HIVE-487> > Soon after that their should be a release candidate, then voting. > > -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Zheng Shao 2009-08-05, 05:16
Namit just committed Todd's patch of HIVE-487, so hive trunk is already compatible with hadoop 0.20 now. Zheng On Tue, Aug 4, 2009 at 10:01 PM, Saurabh Nanda<[EMAIL PROTECTED]> wrote: > Another line of reasoning -- if Hive-trunk is not compiling with Hadoop > 0.20, then people with Hadoop 0.20 are anyways living with their bugs. That > should not be a reason to not put out a new build. With a new build, at > least people who're on newer versions of Hadoop get their Hive bug fixes & > features. > > > >> Hive 4.0 will be a release candidate soon. The largest major blocker >> that I know of is dealing with Hadoop 0.20. See: >> >> https://issues.apache.org/jira/browse/HIVE-487>> >> Soon after that their should be a release candidate, then voting. >> > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> -- Yours, Zheng
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-05, 06:07
Great! So how far is a release candidate or nightly build now ? Saurabh. On Wed, Aug 5, 2009 at 10:46 AM, Zheng Shao <[EMAIL PROTECTED]> wrote: > Namit just committed Todd's patch of HIVE-487, so hive trunk is > already compatible with hadoop 0.20 now. > > Zheng > > On Tue, Aug 4, 2009 at 10:01 PM, Saurabh Nanda<[EMAIL PROTECTED]> > wrote: > > Another line of reasoning -- if Hive-trunk is not compiling with Hadoop > > 0.20, then people with Hadoop 0.20 are anyways living with their bugs. > That > > should not be a reason to not put out a new build. With a new build, at > > least people who're on newer versions of Hadoop get their Hive bug fixes > & > > features. > > > > > > > >> Hive 4.0 will be a release candidate soon. The largest major blocker > >> that I know of is dealing with Hadoop 0.20. See: > >> > >> https://issues.apache.org/jira/browse/HIVE-487> >> > >> Soon after that their should be a release candidate, then voting. > >> > > > > -- > > http://nandz.blogspot.com> > http://foodieforlife.blogspot.com> > > > > > -- > Yours, > Zheng > -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Edward Capriolo 2009-08-05, 14:59
On Wed, Aug 5, 2009 at 2:07 AM, Saurabh Nanda<[EMAIL PROTECTED]> wrote: > Great! So how far is a release candidate or nightly build now ? > > Saurabh. > > On Wed, Aug 5, 2009 at 10:46 AM, Zheng Shao <[EMAIL PROTECTED]> wrote: >> >> Namit just committed Todd's patch of HIVE-487, so hive trunk is >> already compatible with hadoop 0.20 now. >> >> Zheng >> >> On Tue, Aug 4, 2009 at 10:01 PM, Saurabh Nanda<[EMAIL PROTECTED]> >> wrote: >> > Another line of reasoning -- if Hive-trunk is not compiling with Hadoop >> > 0.20, then people with Hadoop 0.20 are anyways living with their bugs. >> > That >> > should not be a reason to not put out a new build. With a new build, at >> > least people who're on newer versions of Hadoop get their Hive bug fixes >> > & >> > features. >> > >> > >> > >> >> Hive 4.0 will be a release candidate soon. The largest major blocker >> >> that I know of is dealing with Hadoop 0.20. See: >> >> >> >> https://issues.apache.org/jira/browse/HIVE-487>> >> >> >> Soon after that their should be a release candidate, then voting. >> >> >> > >> > -- >> > http://nandz.blogspot.com>> > http://foodieforlife.blogspot.com>> > >> >> >> >> -- >> Yours, >> Zheng > > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> Bill, I feel your pain on the nightly releases. At any given time I am working with four trunks, and two major hadoop versions. On a related topic, I use linux-vserver.org I want to cook up a system that can produce and test in distributed mode, something like hudson + vserver to fire out 'appliances' but doing nightly should be pretty easy ill start on that first.
-
RE: JDBC: Infinite while(rs.next()) loop
Ashish Thusoo 2009-08-05, 17:43
We will have to enable nightly builds with 0.20 on Hudson. That is still not done but can be enabled after we brnach. We can branch out 0.4 today or latest by Friday now that 487 is in. Ashish -----Original Message----- From: Edward Capriolo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 05, 2009 7:59 AM To: [EMAIL PROTECTED] Subject: Re: JDBC: Infinite while(rs.next()) loop On Wed, Aug 5, 2009 at 2:07 AM, Saurabh Nanda<[EMAIL PROTECTED]> wrote: > Great! So how far is a release candidate or nightly build now ? > > Saurabh. > > On Wed, Aug 5, 2009 at 10:46 AM, Zheng Shao <[EMAIL PROTECTED]> wrote: >> >> Namit just committed Todd's patch of HIVE-487, so hive trunk is >> already compatible with hadoop 0.20 now. >> >> Zheng >> >> On Tue, Aug 4, 2009 at 10:01 PM, Saurabh >> Nanda<[EMAIL PROTECTED]> >> wrote: >> > Another line of reasoning -- if Hive-trunk is not compiling with >> > Hadoop 0.20, then people with Hadoop 0.20 are anyways living with their bugs. >> > That >> > should not be a reason to not put out a new build. With a new >> > build, at least people who're on newer versions of Hadoop get their >> > Hive bug fixes & features. >> > >> > >> > >> >> Hive 4.0 will be a release candidate soon. The largest major >> >> blocker that I know of is dealing with Hadoop 0.20. See: >> >> >> >> https://issues.apache.org/jira/browse/HIVE-487>> >> >> >> Soon after that their should be a release candidate, then voting. >> >> >> > >> > -- >> > http://nandz.blogspot.com>> > http://foodieforlife.blogspot.com>> > >> >> >> >> -- >> Yours, >> Zheng > > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> Bill, I feel your pain on the nightly releases. At any given time I am working with four trunks, and two major hadoop versions. On a related topic, I use linux-vserver.org I want to cook up a system that can produce and test in distributed mode, something like hudson + vserver to fire out 'appliances' but doing nightly should be pretty easy ill start on that first.
-
RE: JDBC: Infinite while(rs.next()) loop
Ashish Thusoo 2009-08-05, 18:23
Just noticed that hudson is no longer doing the nightly builds for hive. Johan had added hudson for doing nightly builds for hive. These are available at http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.17/http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.18/http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.19/They are also hang off from the developer menu on the Hive official page. http://hadoop.apache.org/hive/The links though don't seem to be working right now which may be a transient problem with hudson. Ashish ________________________________ From: Bill Graham [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 04, 2009 4:13 PM To: [EMAIL PROTECTED] Subject: Re: JDBC: Infinite while(rs.next()) loop I would love to see nightly/periodic builds published somewhere, especially if it's going to be some time before Hive 0.4 is released. It seems like people new to Hive get the "check out and build from the trunk" or "apply this patch" answer often on this list. Having nightly builds would make life easier on these folks as well. On Tue, Aug 4, 2009 at 10:33 AM, Edward Capriolo <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: On Tue, Aug 4, 2009 at 1:20 PM, Saurabh Nanda<[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: > Is there any possibility of having a nightly build off the trunk, > before hive 0.4 is officially released? > > On 8/4/09, Edward Capriolo <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: >> On Tue, Aug 4, 2009 at 10:43 AM, Bill Graham<[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: >>> +1 >>> >>> I agree. I do not know the answer to that one. Can anyone comment on the >>> future Hive release schedule? >>> >>> >>> On Tue, Aug 4, 2009 at 7:39 AM, Saurabh Nanda <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> >>> wrote: >>>> >>>> I was dreading this response! Are there any plans to push out a new Hive >>>> build with the latest features & bug fixes? Building from trunk is not >>>> everyone's cup of tea, you know :-) >>>> >>>> Any nightly builds that I can pick up? >>>> >>>> Saurabh. >>>> >>>> On Tue, Aug 4, 2009 at 8:05 PM, Bill Graham <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: >>>>> >>>>> This bug has been fixed on the trunk. Check out the hive trunk and build >>>>> the JDBC driver and you should be fine. >>>>> >>>>> On Tue, Aug 4, 2009 at 12:47 AM, Saurabh Nanda <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> >>>>> wrote: >>>>>> >>>>>> Here's what I'm trying: >>>>>> >>>>>> ResultSet rs=st.executeQuery("show tables"); >>>>>> while(rs.next()) { >>>>>> System.out.println(rs.getString(1)); >>>>>> } >>>>>> >>>>>> The while loop never terminates, after going through the list of >>>>>> tables, >>>>>> it keeps printing the last table name over & over again. Am I doing >>>>>> something wrong over here, or have I hit a bug? I'm on >>>>>> hive-0.3.0-hadoop-0.18.0-bin >>>>>> >>>>>> Saurabh. >>>>>> -- >>>>>> http://nandz.blogspot.com>>>>>> http://foodieforlife.blogspot.com>>>>> >>>> >>>> >>>> >>>> -- >>>> http://nandz.blogspot.com>>>> http://foodieforlife.blogspot.com>>> >>> >> >> Hive 4.0 will be a release candidate soon. The largest major blocker >> that I know of is dealing with Hadoop 0.20. See: >> >> https://issues.apache.org/jira/browse/HIVE-487>> >> Soon after that their should be a release candidate, then voting. >> >> Edward >> > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> The major thing on that is we have to build releases for every hadoop major/minor and possibly one off the trunk. I was thinking of doing something similar on my site since accomplishing this is possible with hudson. Does anyone think adding this to hadoop hive is something we should do.
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-06, 03:27
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-06, 09:55
Sorry for the stupid question, but I can't find any link to actually download the build (zip/tarball). Where do I download the build from? Saurabh. On Thu, Aug 6, 2009 at 3:18 PM, Saurabh Nanda <[EMAIL PROTECTED]>wrote: > Yeay! The links are working now. Just confirming -- the build process runs > standard unit tests as part of the process, right? In case of test failures > it doesn't publish the build? > > Saurabh. > > > On Thu, Aug 6, 2009 at 8:57 AM, Saurabh Nanda <[EMAIL PROTECTED]>wrote: > >> >>> >>> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.17/>>> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.18/>>> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.19/>>> >> >> >> These links are still not working. Can anyone people look into this? >> >> Thanks, >> >> Saurabh. >> -- >> http://nandz.blogspot.com>> http://foodieforlife.blogspot.com>> > > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-06, 15:40
Any replies? How do i download the actual tarball? On 8/6/09, Saurabh Nanda <[EMAIL PROTECTED]> wrote: > Sorry for the stupid question, but I can't find any link to actually > download the build (zip/tarball). Where do I download the build from? > > Saurabh. > > On Thu, Aug 6, 2009 at 3:18 PM, Saurabh Nanda > <[EMAIL PROTECTED]>wrote: > >> Yeay! The links are working now. Just confirming -- the build process >> runs >> standard unit tests as part of the process, right? In case of test >> failures >> it doesn't publish the build? >> >> Saurabh. >> >> >> On Thu, Aug 6, 2009 at 8:57 AM, Saurabh Nanda >> <[EMAIL PROTECTED]>wrote: >> >>> >>>> >>>> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.17/>>>> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.18/>>>> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.19/>>>> >>> >>> >>> These links are still not working. Can anyone people look into this? >>> >>> Thanks, >>> >>> Saurabh. >>> -- >>> http://nandz.blogspot.com>>> http://foodieforlife.blogspot.com>>> >> >> >> >> -- >> http://nandz.blogspot.com>> http://foodieforlife.blogspot.com>> > > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
RE: JDBC: Infinite while(rs.next()) loop
Ashish Thusoo 2009-08-06, 20:06
You can access the builds for 0.3 from http://hadoop.apache.org/hive/releases.htmlAshish ________________________________ From: Saurabh Nanda [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 06, 2009 2:55 AM To: [EMAIL PROTECTED] Subject: Re: JDBC: Infinite while(rs.next()) loop Sorry for the stupid question, but I can't find any link to actually download the build (zip/tarball). Where do I download the build from? Saurabh. On Thu, Aug 6, 2009 at 3:18 PM, Saurabh Nanda <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: Yeay! The links are working now. Just confirming -- the build process runs standard unit tests as part of the process, right? In case of test failures it doesn't publish the build? Saurabh. On Thu, Aug 6, 2009 at 8:57 AM, Saurabh Nanda <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.17/http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.18/http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.19/These links are still not working. Can anyone people look into this? Thanks, Saurabh. -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com-- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com-- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
-
Re: JDBC: Infinite while(rs.next()) loop
Saurabh Nanda 2009-08-07, 02:08
I already have the 0.3 build. I was looking for the nightly trunk builds. But, i guess those will be available after the hudson disk space problem is sorted out. On 8/7/09, Ashish Thusoo <[EMAIL PROTECTED]> wrote: > You can access the builds for 0.3 from > > http://hadoop.apache.org/hive/releases.html> > Ashish > > ________________________________ > From: Saurabh Nanda [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 06, 2009 2:55 AM > To: [EMAIL PROTECTED] > Subject: Re: JDBC: Infinite while(rs.next()) loop > > Sorry for the stupid question, but I can't find any link to actually > download the build (zip/tarball). Where do I download the build from? > > Saurabh. > > On Thu, Aug 6, 2009 at 3:18 PM, Saurabh Nanda > <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: > Yeay! The links are working now. Just confirming -- the build process runs > standard unit tests as part of the process, right? In case of test failures > it doesn't publish the build? > > Saurabh. > > > On Thu, Aug 6, 2009 at 8:57 AM, Saurabh Nanda > <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: > > http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.17/> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.18/> http://hudson.zones.apache.org/hudson/job/Hive-trunk-h0.19/> > > These links are still not working. Can anyone people look into this? > > Thanks, > > Saurabh. > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> > > > -- > http://nandz.blogspot.com> http://foodieforlife.blogspot.com> -- http://nandz.blogspot.comhttp://foodieforlife.blogspot.com
|
|