You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2009/04/15 22:08:18 UTC

[Hadoop Wiki] Trivial Update of "Hbase/Groovy" by TomNichols

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The following page has been changed by TomNichols:
http://wiki.apache.org/hadoop/Hbase/Groovy

The comment on the change is:
updated intro phrasing & changelog.

------------------------------------------------------------------------------
  == Using HBase From Groovy ==
  
- Instructions for using Groovy to manipulate HBase should be identical to Java.  A 'builder' class has been written to make some HBase methods more convenient in Groovy.  Note that this is not part of the 'official' HBase API, but a community contribution.  It is a single class that should be easy enough to include in your own project source.  The code is released under the ASF 2.0 license.
+ The normal HBase Java API may be used directly in Groovy.  This page describes a 'builder' class to make some HBase methods more convenient.  Namely, table structure manipulation is done in a heirarchical fashion similar to DDL, and scanners and batch updates are performed in a closure scope to ease iteration and resource clean-up.
  
- To get support or submit enhancements to this code, please email the [http://hadoop.apache.org/hbase/mailing_lists.html HBase mailing lists].
+ Note that this is not part of the 'official' HBase API, but a community contribution.  It is a single class that should be easy enough to include in your own project source.  The code is released under the ASF 2.0 license.  To get support or submit enhancements to this code, please email the [http://hadoop.apache.org/hbase/mailing_lists.html HBase mailing lists].
  
  The latest code may be downloaded [attachment:HBaseBuilder.java here].
  
@@ -89, +89 @@

  }}}
  
  === Changelog ===
+  * '''21/03/2009''' - Updated for HBase 0.19
- *'''28/11/2008''' - Initial upload
+  * '''28/11/2008''' - Initial upload