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/15 19:59:55 UTC

[Lucene-hadoop Wiki] Trivial Update of "Hbase/HbaseFeatureRequests" by JimKellerman

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

The comment on the change is:
Escape some camel case words so they aren't interpreted as wiki words.

------------------------------------------------------------------------------
  
  ----
   * Add ability for the user to specify the timestamp of a row, much like in bigtable. (our dataset is already mapped to a specific timestamp). Added ''2007-05-29 16:21:06 by johanoskarsson''
-   * '''Implemented'''.  See org.apache.hadoop.hbase.TestTimestamp unit test.
+   * '''Implemented'''.  See org.apache.hadoop.hbase.!TestTimestamp unit test.
  
   * Add to HClient something like `HClient#getNearest(Text row, Text [] column, long timestamp)` to return the results that fall closest to provided timestamp (Use case: wayback machine type applications).   Also `HClient#getNearest(Text row, Text [] column, long timestamp, long delta)` where `delta` is a maximum for how far to go into the future -- or past -- beyond the supplied timestamp.  Added ''2007-05-29 by stack''
  
-  * Clients should be able to open an OutputStream for putting a value into a table. Right now the only interface for insertion is via a byte[], which severely limits the flexibility of the system. Added ''2007-10-08 by stuhood''
+  * Clients should be able to open an !OutputStream for putting a value into a table. Right now the only interface for insertion is via a byte[], which severely limits the flexibility of the system. Added ''2007-10-08 by stuhood''
    * Tell us more Stu why you need this feature?  (Because you want to write BLOBs of multiple Gigabytes into an hbase cell?)