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 8DF552009FB for ; Fri, 6 May 2016 23:48:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8CD02160A18; Fri, 6 May 2016 21:48:24 +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 A6EB1160A0E for ; Fri, 6 May 2016 23:48:21 +0200 (CEST) Received: (qmail 51493 invoked by uid 500); 6 May 2016 21:48:18 -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 50524 invoked by uid 99); 6 May 2016 21:48:18 -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, 06 May 2016 21:48:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 20103E0278; Fri, 6 May 2016 21:48:18 +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, 06 May 2016 21:48:32 -0000 Message-Id: <487f661aa40e471cb0c5dfb3479b591f@git.apache.org> In-Reply-To: <061acd30e4fa40179ae67540c62f1530@git.apache.org> References: <061acd30e4fa40179ae67540c62f1530@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [16/51] [partial] hbase-site git commit: Published site at 387c7e6b083fddeae2a7ebe1fef3546f38ef9fb5. archived-at: Fri, 06 May 2016 21:48:24 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/958717f4/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html index 946bca4..c07c93b 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html @@ -380,26 +380,19 @@ service. -Cell -ShareableMemory.cloneToCell() -
Does a deep copy of the contents to a new memory area and - returns it in the form of a cell.
- - - static Cell CellUtil.createCell(byte[] row)
Create a Cell with specific row.
- + static Cell CellUtil.createCell(byte[] row, byte[] value)
Create a Cell with specific row and value.
- + static Cell CellUtil.createCell(byte[] row, byte[] family, @@ -407,7 +400,7 @@ service.
Create a Cell with specific row.
- + static Cell CellUtil.createCell(byte[] row, byte[] family, @@ -416,7 +409,7 @@ service. byte type, byte[] value)  - + static Cell CellUtil.createCell(byte[] row, byte[] family, @@ -429,7 +422,7 @@ service.
Marked as audience Private as of 1.2.0.
- + static Cell CellUtil.createCell(byte[] row, byte[] family, @@ -441,7 +434,7 @@ service.
Marked as audience Private as of 1.2.0.
- + static Cell CellUtil.createCell(byte[] row, byte[] family, @@ -453,7 +446,7 @@ service.
Marked as audience Private as of 1.2.0.
- + static Cell CellUtil.createCell(byte[] rowArray, int rowOffset, @@ -465,7 +458,7 @@ service. int qualifierOffset, int qualifierLength)  - + static Cell CellUtil.createFirstDeleteFamilyCellOnRow(byte[] row, byte[] fam) @@ -474,25 +467,25 @@ service. same row and family. - + static Cell CellUtil.createFirstOnNextRow(Cell cell)
Create a Cell that is smaller than all other possible Cells for the given Cell row's next row.
- + static Cell CellUtil.createFirstOnRow(Cell cell)
Create a Cell that is smaller than all other possible Cells for the given Cell's row.
- + static Cell CellUtil.createFirstOnRowCol(Cell cell)
Create a Cell that is smaller than all other possible Cells for the given Cell's row.
- + static Cell CellUtil.createFirstOnRowCol(Cell cell, byte[] qArray, @@ -502,26 +495,26 @@ service. passed qualifier. - + static Cell CellUtil.createFirstOnRowColTS(Cell cell, long ts)
Creates the first cell with the row/family/qualifier of this cell and the given timestamp.
- + static Cell CellUtil.createLastOnRow(Cell cell)
Create a Cell that is larger than all other possible Cells for the given Cell's row.
- + static Cell CellUtil.createLastOnRowCol(Cell cell)
Create a Cell that is larger than all other possible Cells for the given Cell's rk:cf:q.
- + Cell CellScanner.current()  @@ -1260,32 +1253,32 @@ service. -boolean -KeyValue.KVComparator.matchingRowColumn(Cell left, +static boolean +CellUtil.matchingRowColumn(Cell left, Cell right) -
Deprecated. 
Compares the row and column of two keyvalues for equality
-static boolean -CellUtil.matchingRowColumn(Cell left, +boolean +KeyValue.KVComparator.matchingRowColumn(Cell left, Cell right) +
Deprecated. 
Compares the row and column of two keyvalues for equality
-boolean -KeyValue.KVComparator.matchingRows(Cell left, +static boolean +CellUtil.matchingRows(Cell left, Cell right) -
Deprecated. 
Compares the row of two keyvalues for equality
-static boolean -CellUtil.matchingRows(Cell left, +boolean +KeyValue.KVComparator.matchingRows(Cell left, Cell right) +
Deprecated. 
Compares the row of two keyvalues for equality
@@ -1645,23 +1638,23 @@ service. -Put -Put.add(Cell kv) -
Add the specified KeyValue to this Put operation.
- - - Append Append.add(Cell cell)
Add column and value to this Append operation.
- + Increment Increment.add(Cell cell)
Add the specified KeyValue to this operation.
+ +Put +Put.add(Cell kv) +
Add the specified KeyValue to this Put operation.
+ + Delete Delete.addDeleteMarker(Cell kv) @@ -1750,13 +1743,13 @@ service. boolean partial)
  -Put -Put.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  - - Append Append.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  + +Delete +Delete.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  + Increment Increment.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  @@ -1768,8 +1761,8 @@ service. -Delete -Delete.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  +Put +Put.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  @@ -1808,17 +1801,17 @@ service. Cell kv)
  -BigDecimal -BigDecimalColumnInterpreter.getValue(byte[] colFamily, - byte[] colQualifier, - Cell kv)  - - Double DoubleColumnInterpreter.getValue(byte[] colFamily, byte[] colQualifier, Cell c)  + +BigDecimal +BigDecimalColumnInterpreter.getValue(byte[] colFamily, + byte[] colQualifier, + Cell kv)  + @@ -1852,13 +1845,13 @@ service. protected Cell -KeyValueCodecWithTags.ByteBufferedKeyValueDecoder.createCell(byte[] buf, +KeyValueCodec.ByteBufferedKeyValueDecoder.createCell(byte[] buf, int offset, int len)  protected Cell -KeyValueCodec.ByteBufferedKeyValueDecoder.createCell(byte[] buf, +KeyValueCodecWithTags.ByteBufferedKeyValueDecoder.createCell(byte[] buf, int offset, int len)  @@ -1872,14 +1865,6 @@ service. protected Cell -KeyValueCodecWithTags.KeyValueDecoder.parseCell()  - - -protected Cell -CellCodecWithTags.CellDecoder.parseCell()  - - -protected Cell CellCodec.CellDecoder.parseCell()  @@ -1894,6 +1879,14 @@ service. protected Cell +CellCodecWithTags.CellDecoder.parseCell()  + + +protected Cell +KeyValueCodecWithTags.KeyValueDecoder.parseCell()  + + +protected Cell MessageCodec.MessageDecoder.parseCell()  @@ -1907,11 +1900,11 @@ service. void -KeyValueCodecWithTags.KeyValueEncoder.write(Cell cell)  +CellCodec.CellEncoder.write(Cell cell)  void -CellCodecWithTags.CellEncoder.write(Cell cell)  +KeyValueCodec.KeyValueEncoder.write(Cell cell)  abstract void @@ -1919,11 +1912,11 @@ service. void -CellCodec.CellEncoder.write(Cell cell)  +CellCodecWithTags.CellEncoder.write(Cell cell)  void -KeyValueCodec.KeyValueEncoder.write(Cell cell)  +KeyValueCodecWithTags.KeyValueEncoder.write(Cell cell)  void @@ -2292,22 +2285,22 @@ service. Cell -BaseRegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, +RegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, RegionObserver.MutationType opType, Mutation mutation, Cell oldCell, - Cell newCell)  + Cell newCell) +
Called after a new cell has been created during an increment operation, but before + it is committed to the WAL or memstore.
+ Cell -RegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, +BaseRegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, RegionObserver.MutationType opType, Mutation mutation, Cell oldCell, - Cell newCell) -
Called after a new cell has been created during an increment operation, but before - it is committed to the WAL or memstore.
- + Cell newCell)
  @@ -2326,32 +2319,25 @@ service. Cell -BaseRegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, +RegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, RegionObserver.MutationType opType, Mutation mutation, Cell oldCell, - Cell newCell)  + Cell newCell) +
Called after a new cell has been created during an increment operation, but before + it is committed to the WAL or memstore.
+ Cell -RegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, +BaseRegionObserver.postMutationBeforeWAL(ObserverContext<RegionCoprocessorEnvironment> ctx, RegionObserver.MutationType opType, Mutation mutation, Cell oldCell, - Cell newCell) -
Called after a new cell has been created during an increment operation, but before - it is committed to the WAL or memstore.
- + Cell newCell)
  boolean -BaseRegionObserver.postScannerFilterRow(ObserverContext<RegionCoprocessorEnvironment> e, - InternalScanner s, - Cell curRowCell, - boolean hasMore)  - - -boolean RegionObserver.postScannerFilterRow(ObserverContext<RegionCoprocessorEnvironment> c, InternalScanner s, Cell curRowCell, @@ -2360,15 +2346,14 @@ service. filter. - -void -BaseRegionObserver.prePrepareTimeStampForDeleteVersion(ObserverContext<RegionCoprocessorEnvironment> e, - Mutation delete, - Cell cell, - byte[] byteNow, - Get get)  - +boolean +BaseRegionObserver.postScannerFilterRow(ObserverContext<RegionCoprocessorEnvironment> e, + InternalScanner s, + Cell curRowCell, + boolean hasMore)  + + void RegionObserver.prePrepareTimeStampForDeleteVersion(ObserverContext<RegionCoprocessorEnvironment> c, Mutation mutation, @@ -2378,6 +2363,14 @@ service.
Called before the server updates the timestamp for version delete with latest timestamp.
+ +void +BaseRegionObserver.prePrepareTimeStampForDeleteVersion(ObserverContext<RegionCoprocessorEnvironment> e, + Mutation delete, + Cell cell, + byte[] byteNow, + Get get)  + @@ -2389,25 +2382,19 @@ service. - - - - - + - + - + + + + +
voidBaseRegionObserver.postGetOp(ObserverContext<RegionCoprocessorEnvironment> e, - Get get, - List<Cell> results) 
void RegionObserver.postGetOp(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<Cell> result)
Called after the client performs a Get
voidBaseRegionObserver.preGetOp(ObserverContext<RegionCoprocessorEnvironment> e, - Get get, - List<Cell> results) BaseRegionObserver.postGetOp(ObserverContext<RegionCoprocessorEnvironment> e, + Get get, + List<Cell> results) 
void RegionObserver.preGetOp(ObserverContext<RegionCoprocessorEnvironment> c, Get get, @@ -2415,6 +2402,12 @@ service.
Called before the client performs a Get
voidBaseRegionObserver.preGetOp(ObserverContext<RegionCoprocessorEnvironment> e, + Get get, + List<Cell> results) 
@@ -2477,8 +2470,27 @@ service. Cell +ColumnRangeFilter.getNextCellHint(Cell cell)  + + +Cell +ColumnPrefixFilter.getNextCellHint(Cell cell)  + + +Cell +FilterList.getNextCellHint(Cell currentCell)  + + +Cell FilterWrapper.getNextCellHint(Cell currentCell)  + +abstract Cell +Filter.getNextCellHint(Cell currentCell) +
If the filter returns the match code SEEK_NEXT_USING_HINT, then it should also tell which is + the next key it must seek to.
+ + Cell TimestampsFilter.getNextCellHint(Cell currentCell) @@ -2487,11 +2499,11 @@ service. Cell -MultipleColumnPrefixFilter.getNextCellHint(Cell cell)  +FuzzyRowFilter.getNextCellHint(Cell currentCell)  Cell -ColumnPaginationFilter.getNextCellHint(Cell cell)  +MultipleColumnPrefixFilter.getNextCellHint(Cell cell)  Cell @@ -2502,64 +2514,45 @@ service. Cell -MultiRowRangeFilter.getNextCellHint(Cell currentKV)  +ColumnPaginationFilter.getNextCellHint(Cell cell)  Cell -FuzzyRowFilter.getNextCellHint(Cell currentCell)  +MultiRowRangeFilter.getNextCellHint(Cell currentKV)  Cell -FilterList.getNextCellHint(Cell currentCell)  +FilterList.transformCell(Cell c)  Cell -ColumnRangeFilter.getNextCellHint(Cell cell)  +FilterWrapper.transformCell(Cell v)  abstract Cell -Filter.getNextCellHint(Cell currentCell) -
If the filter returns the match code SEEK_NEXT_USING_HINT, then it should also tell which is - the next key it must seek to.
+Filter.transformCell(Cell v) +
Give the filter a chance to transform the passed KeyValue.
Cell -ColumnPrefixFilter.getNextCellHint(Cell cell)  - - -Cell WhileMatchFilter.transformCell(Cell v)  - -Cell -FilterWrapper.transformCell(Cell v)  - Cell -SkipFilter.transformCell(Cell v)  - - -Cell FilterBase.transformCell(Cell v)
By default no transformation takes place Give the filter a chance to transform the passed KeyValue.
- + Cell KeyOnlyFilter.transformCell(Cell cell)  - + Cell -FilterList.transformCell(Cell c)  - - -abstract Cell -Filter.transformCell(Cell v) -
Give the filter a chance to transform the passed KeyValue.
- +SkipFilter.transformCell(Cell v)  @@ -2606,11 +2599,11 @@ service. Filter.ReturnCode -MultipleColumnPrefixFilter.filterColumn(Cell cell)  +ColumnPrefixFilter.filterColumn(Cell cell)  Filter.ReturnCode -ColumnPrefixFilter.filterColumn(Cell cell)  +MultipleColumnPrefixFilter.filterColumn(Cell cell)  private boolean @@ -2618,230 +2611,230 @@ service. Filter.ReturnCode -FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v) -
Deprecated. 
-  +SingleColumnValueFilter.filterKeyValue(Cell c)  Filter.ReturnCode -WhileMatchFilter.filterKeyValue(Cell v)  +QualifierFilter.filterKeyValue(Cell v)  Filter.ReturnCode -FilterWrapper.filterKeyValue(Cell v)  +FamilyFilter.filterKeyValue(Cell v)  Filter.ReturnCode -TimestampsFilter.filterKeyValue(Cell v)  +ColumnRangeFilter.filterKeyValue(Cell kv)  Filter.ReturnCode -SingleColumnValueFilter.filterKeyValue(Cell c)  +ColumnCountGetFilter.filterKeyValue(Cell v)  Filter.ReturnCode -ColumnCountGetFilter.filterKeyValue(Cell v)  +DependentColumnFilter.filterKeyValue(Cell c)  Filter.ReturnCode -MultipleColumnPrefixFilter.filterKeyValue(Cell kv)  +ColumnPrefixFilter.filterKeyValue(Cell cell)  Filter.ReturnCode -ColumnPaginationFilter.filterKeyValue(Cell v)  +FilterList.filterKeyValue(Cell c)  Filter.ReturnCode -SkipFilter.filterKeyValue(Cell v)  +FilterWrapper.filterKeyValue(Cell v)  -Filter.ReturnCode -PageFilter.filterKeyValue(Cell ignored)  +abstract