diff --git src/docbkx/book.xml src/docbkx/book.xml index 5a27582..9e385da 100644 --- src/docbkx/book.xml +++ src/docbkx/book.xml @@ -230,28 +230,28 @@
Data Model Operations The four primary data model operations are Get, Put, Scan, and Delete. Operations are applied via - HTable instances. + HTable instances.
Get - Get returns + Get returns attributes for a specified row. Gets are executed via - + HTable.get.
Put - Put either + Put either adds new rows to a table (if the key is new) or can update existing rows (if the key already exists). Puts are executed via - - HTable.put (writeBuffer) or + + HTable.put (writeBuffer) or HTable.batch (non-writeBuffer).
Scans - Scan allow + Scan allow iteration over multiple rows for specified attributes. The following is an example of a @@ -277,9 +277,9 @@ try {
Delete - Delete removes + Delete removes a row from a table. Deletes are executed via - + HTable.delete. HBase does not modify data in place, and so deletes are handled by creating new markers called tombstones. @@ -356,8 +356,8 @@ try { Get/Scan Gets are implemented on top of Scans. The below discussion of - Get applies equally to Scans. + Get applies equally to Scans. By default, i.e. if you specify no explicit version, when doing a get, the cell whose version has the @@ -368,7 +368,7 @@ try { to return more than one version, see Get.setMaxVersions() + xlink:href="http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Get.html#setMaxVersions()">Get.setMaxVersions() diff --git src/docbkx/preface.xml src/docbkx/preface.xml index 2d9f39d..af54aa2 100644 --- src/docbkx/preface.xml +++ src/docbkx/preface.xml @@ -33,7 +33,7 @@ Herein you will find either the definitive documentation on an HBase topic as of its standing when the referenced HBase version shipped, or it will point to the location in javadoc, + xlink:href="http://hbase.apache.org/apidocs/index.html">javadoc, JIRA or wiki where the pertinent information can be found. diff --git src/main/javadoc/overview.html src/main/javadoc/overview.html index e79d715..c5e743c 100644 --- src/main/javadoc/overview.html +++ src/main/javadoc/overview.html @@ -47,7 +47,7 @@ section of the HBase Book.

Related Documentation