Tom, There is no doubt that it's useful. I have updated my version on the wiki. Please check it out. Thanks a lot for doing this. We use groovy at Gumgum for running our Hadoop jobs too! We are looking forward to use Hbase with groovy client.
Regards, Vaibhav On Mon, Mar 23, 2009 at 4:37 AM, Tom Nichols <[email protected]> wrote: > Hi Vaibhav, > > Actually I realized a while ago that there was a 0.19 > incompatibility,,, I thought I had changed the wiki but maybe I > forgot to. Thanks for bringing this to my attention; I'll try to take > care of it shortly. Hope you found it useful :) > > Thanks, > -Tom > > > > On Thu, Mar 19, 2009 at 8:31 PM, Vaibhav Puranik <[email protected]> > wrote: > > Hi, > > > > I noticed that the class HBaseBuilder.java (The groovy DSL) is not > compiling > > with HBase 0.19. > > > > The following code block was not compiling: > > > > if ( admin.tableExists( tableName ) ) { > > admin.modifyTableMeta( tableName.getBytes(), table ); > > log.info( "Updated table: {}", table ); > > } > > > > I changed it to > > > > if ( admin.tableExists( tableName ) ) { > > admin.modifyTable( tableName.getBytes(), > > HConstants.MODIFY_TABLE_SET_HTD, table ); > > log.info( "Updated table: {}", table ); > > } > > > > I am not sure about the change. I am attaching the file with this email > (ext > > changed to .txt from .java). > > > > Tom, is this change ok? If yes, is it possible for you to update it in > the > > HBase wiki? > > > > Regards, > > Vaibhav > > >
