You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by vj...@apache.org on 2020/05/12 15:38:41 UTC

[hbase] branch branch-2 updated: HBASE-24355 Fix typos in the HStore#compact annotation (#1699)

This is an automated email from the ASF dual-hosted git repository.

vjasani pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new a7e3c03  HBASE-24355 Fix typos in the HStore#compact annotation (#1699)
a7e3c03 is described below

commit a7e3c035410dd97504b505fb7e91c573023730d5
Author: Gkkkk302 <49...@users.noreply.github.com>
AuthorDate: Tue May 12 23:35:29 2020 +0800

    HBASE-24355 Fix typos in the HStore#compact annotation (#1699)
    
    Co-authored-by: guo.kangkang <gu...@immomo.com>
    
    Signed-off-by: Viraj Jasani <vj...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
index c0ec662..1d63da5 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
@@ -1498,7 +1498,7 @@ public class HStore implements Store, HeapSize, StoreConfigInformation,
    *  Since we already have this data, this will be idempotent but we will have a redundant
    *  copy of the data.
    *  - If RS fails between 2 and 3, the region will have a redundant copy of the data. The
-   *  RS that failed won't be able to finish snyc() for WAL because of lease recovery in WAL.
+   *  RS that failed won't be able to finish sync() for WAL because of lease recovery in WAL.
    *  - If RS fails after 3, the region region server who opens the region will pick up the
    *  the compaction marker from the WAL and replay it by removing the compaction input files.
    *  Failed RS can also attempt to delete those files, but the operation will be idempotent