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:40:17 UTC

[hbase] branch branch-2.1 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.1
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit f758d407355ee2ea599c2040fb887989dfef6b6c
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 9bc46bc..01bfe92 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
@@ -1393,7 +1393,7 @@ public class HStore implements Store, HeapSize, StoreConfigInformation, Propagat
    *  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