diff --git a/src/docbkx/book.xml b/src/docbkx/book.xml
index e566770647c..83b70b21ca0 100644
--- a/src/docbkx/book.xml
+++ b/src/docbkx/book.xml
@@ -226,6 +226,19 @@ throws InterruptedException, IOException {
inserted a lot of data).
+
+
+ Supported Datatypes
+
+ HBase supports a "bytes-in/bytes-out" interface via Put and
+ Result, so anything that can be
+ converted to an array of bytes can be stored as a value. Input could be strings, numbers, complex objects, or even images as long as they can rendered as bytes.
+
+ There are practical limits to the size of values (e.g., storing 10-50MB objects in HBase would probably be too much to ask);
+ search the mailling list for conversations on this topic. All rows in HBase conform to the datamodel, and
+ that includes versioning. Take that into consideration when making your design, as well as block size for the ColumnFamily.
+
+
@@ -1551,6 +1564,16 @@ When I build, why do I always get Unable to find resource 'VM_global_libra
+
+
+ Store (fill in the blank) in HBase?
+
+
+
+ See .
+
+
+