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 stack:
http://wiki.apache.org/lucene-hadoop/Hbase/FAQ

The comment on the change is:
Add link to PNUTS notes

------------------------------------------------------------------------------
  [[Anchor(1)]]
+ [[Anchor(2)]]
  '''1. [#1 Can someone give an example of basic API-usage going against 
hbase?]'''
  
  The two main client-side entry points are 
[http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Nightly/javadoc/org/apache/hadoop/hbase/HBaseAdmin.html
 H!BaseAdmin] and 
[http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Nightly/javadoc/org/apache/hadoop/hbase/HTable.html
 H!Table].  Use H!BaseAdmin to create, drop, list, enable and disable tables.  
Use it also to add and drop table column families.  For adding, updating and 
deleting data, use HTable.  Here is some pseudo code absent error checking, 
imports, etc., that creates a table, adds data, does a fetch of just-added data 
and then deletes the table.
@@ -39, +40 @@

  Don't forget your client will need a running hbase instance to connect to 
(See the ''Getting Started'' section toward the end of this 
  
[http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Nightly/javadoc/org/apache/hadoop/hbase/package-summary.html#package_description
 Hbase Package Summary] page). 
  
+ '''2. [#2 What other hbase-like applications are there out there?]'''
+ 
+ Apart from Google's bigtable, here are ones we know of:
+  * [wiki:Hbase/PNUTS PNUTS], a Platform for Nimble Universal Table Storage, 
being developed internally at Yahoo!
+ 

Reply via email to