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 2007/10/02 05:58:10 UTC

[Lucene-hadoop Wiki] Update of "Hbase/HbaseShell/ShellPlans" by udanax

Dear Wiki user,

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

The following page has been changed by udanax:
http://wiki.apache.org/lucene-hadoop/Hbase/HbaseShell/ShellPlans

------------------------------------------------------------------------------
  = Parallel Processing with Hbase Shell =
+ 
+ = User Defined Function (UDF) =
+ 
+ create function isValidUrl(address) returning boolean
+ 
+ insert into webtable (url) values("http://www.google.com");
+ insert into webtable (url) values("http://www.naver.com");
+ 
+ select * from webtablewhere isValidUrl(url);
+ 
  
  = Abstract =