Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B7DB0200AF6 for ; Fri, 27 May 2016 18:22:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B6BD9160A42; Fri, 27 May 2016 16:22:03 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E80E6160A10 for ; Fri, 27 May 2016 18:22:01 +0200 (CEST) Received: (qmail 54203 invoked by uid 500); 27 May 2016 16:21:58 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 53117 invoked by uid 99); 27 May 2016 16:21:57 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 May 2016 16:21:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 957EBDFBDE; Fri, 27 May 2016 16:21:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: misty@apache.org To: commits@hbase.apache.org Date: Fri, 27 May 2016 16:22:15 -0000 Message-Id: In-Reply-To: <73b2dd6f770242d1bb7b13f77b05e9a7@git.apache.org> References: <73b2dd6f770242d1bb7b13f77b05e9a7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [20/51] [partial] hbase-site git commit: Published site at da0d74cd27154b76aaa69fe0e5742821f3bfea79. archived-at: Fri, 27 May 2016 16:22:03 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/237089a5/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html index 7076540..90aa87b 100644 --- a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html +++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html @@ -1703,6 +1703,20 @@ void +RegionObserver.postReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> ctx, + HRegionInfo info, + org.apache.hadoop.fs.Path edits) +
Called after replaying WALs for this region.
+ + + +void +BaseRegionObserver.postReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> env, + HRegionInfo info, + org.apache.hadoop.fs.Path edits)  + + +void BaseRegionServerObserver.postReplicateLogEntries(ObserverContext<RegionServerCoprocessorEnvironment> ctx, List<org.apache.hadoop.hbase.protobuf.generated.AdminProtos.WALEntry> entries, CellScanner cells)  @@ -2191,39 +2205,46 @@ void -WALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath) -
Called after rolling the current WAL
- + org.apache.hadoop.fs.Path newPath)
  void -BaseWALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath)  + org.apache.hadoop.fs.Path newPath) +
Called after rolling the current WAL
+ void -WALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Called after a WALEdit - is writen to WAL.
+
Implementers should override this method and leave the deprecated version as-is.
void -BaseWALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Implementers should override this method and leave the deprecated version as-is.
+
Called after a WALEdit + is writen to WAL.
void +BaseWALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, + HRegionInfo info, + HLogKey logKey, + WALEdit logEdit)  + + +void WALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, @@ -2233,13 +2254,6 @@ - -void -BaseWALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, - HRegionInfo info, - HLogKey logKey, - WALEdit logEdit)  - void BaseMasterObserver.preAbortProcedure(ObserverContext<MasterCoprocessorEnvironment> ctx, @@ -3830,6 +3844,20 @@ void +RegionObserver.preReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> ctx, + HRegionInfo info, + org.apache.hadoop.fs.Path edits) +
Called before replaying WALs for this region.
+ + + +void +BaseRegionObserver.preReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> env, + HRegionInfo info, + org.apache.hadoop.fs.Path edits)  + + +void BaseRegionServerObserver.preReplicateLogEntries(ObserverContext<RegionServerCoprocessorEnvironment> ctx, List<org.apache.hadoop.hbase.protobuf.generated.AdminProtos.WALEntry> entries, CellScanner cells)  @@ -4383,39 +4411,46 @@ void -WALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath) -
Called before rolling the current WAL
- + org.apache.hadoop.fs.Path newPath)
  void -BaseWALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath)  + org.apache.hadoop.fs.Path newPath) +
Called before rolling the current WAL
+ boolean -WALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Called before a WALEdit - is writen to WAL.
+
Implementers should override this method and leave the deprecated version as-is.
boolean -BaseWALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Implementers should override this method and leave the deprecated version as-is.
+
Called before a WALEdit + is writen to WAL.
boolean +BaseWALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, + HRegionInfo info, + HLogKey logKey, + WALEdit logEdit)  + + +boolean WALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, @@ -4425,13 +4460,6 @@ - -boolean -BaseWALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, - HRegionInfo info, - HLogKey logKey, - WALEdit logEdit)  - http://git-wip-us.apache.org/repos/asf/hbase-site/blob/237089a5/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html index 2523af1..3ddba24 100644 --- a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html +++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html @@ -152,15 +152,15 @@ private RegionCoprocessorEnvironment -AggregateImplementation.env  +BaseRowProcessorEndpoint.env  private RegionCoprocessorEnvironment -BaseRowProcessorEndpoint.env  +MultiRowMutationEndpoint.env  private RegionCoprocessorEnvironment -MultiRowMutationEndpoint.env  +AggregateImplementation.env  @@ -562,6 +562,20 @@ void +RegionObserver.postReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> ctx, + HRegionInfo info, + org.apache.hadoop.fs.Path edits) +
Called after replaying WALs for this region.
+ + + +void +BaseRegionObserver.postReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> env, + HRegionInfo info, + org.apache.hadoop.fs.Path edits)  + + +void RegionObserver.postRollBackSplit(ObserverContext<RegionCoprocessorEnvironment> ctx)
This will be called after the roll back of the split region is completed
@@ -1224,6 +1238,20 @@ void +RegionObserver.preReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> ctx, + HRegionInfo info, + org.apache.hadoop.fs.Path edits) +
Called before replaying WALs for this region.
+ + + +void +BaseRegionObserver.preReplayWALs(ObserverContext<? extends RegionCoprocessorEnvironment> env, + HRegionInfo info, + org.apache.hadoop.fs.Path edits)  + + +void RegionObserver.preRollBackSplit(ObserverContext<RegionCoprocessorEnvironment> ctx)
This will be called before the roll back of the split region is completed
@@ -1445,11 +1473,11 @@ private RegionCoprocessorEnvironment -RowCountEndpoint.env  +BulkDeleteEndpoint.env  private RegionCoprocessorEnvironment -BulkDeleteEndpoint.env  +RowCountEndpoint.env  @@ -1920,14 +1948,14 @@ void -DefaultVisibilityLabelServiceImpl.init(RegionCoprocessorEnvironment e)  - - -void VisibilityLabelService.init(RegionCoprocessorEnvironment e)
System calls this after opening of regions.
+ +void +DefaultVisibilityLabelServiceImpl.init(RegionCoprocessorEnvironment e)  + private void VisibilityController.initVisibilityLabelService(RegionCoprocessorEnvironment env)  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/237089a5/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html index 22ee357..a5807a3 100644 --- a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html +++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html @@ -102,39 +102,46 @@ void -WALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath) -
Called after rolling the current WAL
- + org.apache.hadoop.fs.Path newPath)
  void -BaseWALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.postWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath)  + org.apache.hadoop.fs.Path newPath) +
Called after rolling the current WAL
+ void -WALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Called after a WALEdit - is writen to WAL.
+
Implementers should override this method and leave the deprecated version as-is.
void -BaseWALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.postWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Implementers should override this method and leave the deprecated version as-is.
+
Called after a WALEdit + is writen to WAL.
void +BaseWALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, + HRegionInfo info, + HLogKey logKey, + WALEdit logEdit)  + + +void WALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, @@ -144,14 +151,13 @@ - + void -BaseWALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, - HRegionInfo info, - HLogKey logKey, - WALEdit logEdit)  +BaseWALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, + org.apache.hadoop.fs.Path oldPath, + org.apache.hadoop.fs.Path newPath)  - + void WALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, org.apache.hadoop.fs.Path oldPath, @@ -159,33 +165,34 @@
Called before rolling the current WAL
- -void -BaseWALObserver.preWALRoll(ObserverContext<? extends WALCoprocessorEnvironment> ctx, - org.apache.hadoop.fs.Path oldPath, - org.apache.hadoop.fs.Path newPath)  - boolean -WALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +BaseWALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Called before a WALEdit - is writen to WAL.
+
Implementers should override this method and leave the deprecated version as-is.
boolean -BaseWALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, +WALObserver.preWALWrite(ObserverContext<? extends WALCoprocessorEnvironment> ctx, HRegionInfo info, WALKey logKey, WALEdit logEdit) -
Implementers should override this method and leave the deprecated version as-is.
+
Called before a WALEdit + is writen to WAL.
boolean +BaseWALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, + HRegionInfo info, + HLogKey logKey, + WALEdit logEdit)  + + +boolean WALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, @@ -195,13 +202,6 @@ - -boolean -BaseWALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, - HRegionInfo info, - HLogKey logKey, - WALEdit logEdit)  -