From 2a0d18928e372b3e976c9c89457390b7afc0aafc Mon Sep 17 00:00:00 2001 From: coral Date: Thu, 20 Jul 2017 14:31:59 -0500 Subject: [PATCH] HBASE-18404 fixed typo in acid semantics Signed-off-by: Sean Busbey --- src/main/site/xdoc/acid-semantics.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/site/xdoc/acid-semantics.xml b/src/main/site/xdoc/acid-semantics.xml index 2696df78bd9..2d4eb6a9f5d 100644 --- a/src/main/site/xdoc/acid-semantics.xml +++ b/src/main/site/xdoc/acid-semantics.xml @@ -93,7 +93,7 @@ under the License.
    -
  1. All mutations are atomic within a row. Any put will either wholely succeed or wholely fail.[3]
  2. +
  3. All mutations are atomic within a row. Any put will either wholly succeed or wholly fail.[3]
    1. An operation that returns a "success" code has completely succeeded.
    2. An operation that returns a "failure" code has completely failed.
    3. @@ -225,7 +225,7 @@ under the License. log. This does not actually imply an fsync() to magnetic media, but rather just that the data has been written to the OS cache on all replicas of the log. In the case of a full datacenter power loss, it is possible that the edits are not truly durable.

      -

      [3] Puts will either wholely succeed or wholely fail, provided that they are actually sent +

      [3] Puts will either wholly succeed or wholly fail, provided that they are actually sent to the RegionServer. If the writebuffer is used, Puts will not be sent until the writebuffer is filled or it is explicitly flushed.