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 DC77C200D30 for ; Sun, 15 Oct 2017 17:16:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DB1091609D9; Sun, 15 Oct 2017 15:16:04 +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 94DE5160BEA for ; Sun, 15 Oct 2017 17:16:02 +0200 (CEST) Received: (qmail 84837 invoked by uid 500); 15 Oct 2017 15:15:56 -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 82698 invoked by uid 99); 15 Oct 2017 15:15:54 -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; Sun, 15 Oct 2017 15:15:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 00032DFFC0; Sun, 15 Oct 2017 15:15:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: git-site-role@apache.org To: commits@hbase.apache.org Date: Sun, 15 Oct 2017 15:16:32 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [42/51] [partial] hbase-site git commit: Published site at . archived-at: Sun, 15 Oct 2017 15:16:05 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/5a2158f2/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html b/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html index 873eb8c..0654d6f 100644 --- a/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html +++ b/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html @@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";

-
private final class HStore.StoreFlusherImpl
+
private final class HStore.StoreFlusherImpl
 extends Object
 implements StoreFlushContext
@@ -274,7 +274,7 @@ implements
  • cacheFlushSeqNum

    -
    private long cacheFlushSeqNum
    +
    private long cacheFlushSeqNum
  • @@ -283,7 +283,7 @@ implements
  • snapshot

    -
    private MemStoreSnapshot snapshot
    +
    private MemStoreSnapshot snapshot
  • @@ -292,7 +292,7 @@ implements
  • tempFiles

    -
    private List<org.apache.hadoop.fs.Path> tempFiles
    +
    private List<org.apache.hadoop.fs.Path> tempFiles
  • @@ -301,7 +301,7 @@ implements
  • committedFiles

    -
    private List<org.apache.hadoop.fs.Path> committedFiles
    +
    private List<org.apache.hadoop.fs.Path> committedFiles
  • @@ -310,7 +310,7 @@ implements
  • cacheFlushCount

    -
    private long cacheFlushCount
    +
    private long cacheFlushCount
  • @@ -319,7 +319,7 @@ implements
  • cacheFlushSize

    -
    private long cacheFlushSize
    +
    private long cacheFlushSize
  • @@ -328,7 +328,7 @@ implements
  • outputFileSize

    -
    private long outputFileSize
    +
    private long outputFileSize
  • @@ -345,7 +345,7 @@ implements
  • StoreFlusherImpl

    -
    private StoreFlusherImpl(long cacheFlushSeqNum)
    +
    private StoreFlusherImpl(long cacheFlushSeqNum)
  • @@ -362,7 +362,7 @@ implements
  • prepare

    -
    public void prepare()
    +
    public void prepare()
    This is not thread safe. The caller should have a lock on the region or the store. If necessary, the lock can be added with the patch provided in HBASE-10087
    @@ -377,7 +377,7 @@ implements
  • flushCache

    -
    public void flushCache(MonitoredTask status)
    +
    public void flushCache(MonitoredTask status)
                     throws IOException
    Description copied from interface: StoreFlushContext
    Flush the cache (create the new store file) @@ -398,7 +398,7 @@ implements
  • commit

    -
    public boolean commit(MonitoredTask status)
    +
    public boolean commit(MonitoredTask status)
                    throws IOException
    Description copied from interface: StoreFlushContext
    Commit the flush - add the store file to the store and clear the @@ -422,7 +422,7 @@ implements
  • getOutputFileSize

    -
    public long getOutputFileSize()
    +
    public long getOutputFileSize()
    Specified by:
    getOutputFileSize in interface StoreFlushContext
    @@ -437,7 +437,7 @@ implements
  • getCommittedFiles

    -
    public List<org.apache.hadoop.fs.Path> getCommittedFiles()
    +
    public List<org.apache.hadoop.fs.Path> getCommittedFiles()
    Description copied from interface: StoreFlushContext
    Returns the newly committed files from the flush. Called only if commit returns true
    @@ -454,7 +454,7 @@ implements
  • replayFlush

    -
    public void replayFlush(List<String> fileNames,
    +
    public void replayFlush(List<String> fileNames,
                             boolean dropMemstoreSnapshot)
                      throws IOException
    Similar to commit, but called in secondary region replicas for replaying the @@ -477,7 +477,7 @@ implements
  • abort

    -
    public void abort()
    +
    public void abort()
                throws IOException
    Abort the snapshot preparation. Drops the snapshot if any.
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/5a2158f2/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.html b/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.html index 0382282..7dc4e4f 100644 --- a/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.html +++ b/devapidocs/org/apache/hadoop/hbase/regionserver/HStore.html @@ -1679,7 +1679,7 @@ implements
  • FIXED_OVERHEAD

    -
    public static final long FIXED_OVERHEAD
    +
    public static final long FIXED_OVERHEAD
  • @@ -1688,7 +1688,7 @@ implements
  • DEEP_OVERHEAD

    -
    public static final long DEEP_OVERHEAD
    +
    public static final long DEEP_OVERHEAD
  • @@ -3497,11 +3497,7 @@ public static org.apache.hadoop.fs.Path 
  • getCoprocessorHost

    -
    public RegionCoprocessorHost getCoprocessorHost()
    -
    -
    Specified by:
    -
    getCoprocessorHost in interface Store
    -
    +
    public RegionCoprocessorHost getCoprocessorHost()
  • @@ -3510,7 +3506,7 @@ public static org.apache.hadoop.fs.Path 
  • getRegionInfo

    -
    public RegionInfo getRegionInfo()
    +
    public RegionInfo getRegionInfo()
    Specified by:
    getRegionInfo in interface Store
    @@ -3525,7 +3521,7 @@ public static org.apache.hadoop.fs.Path 
  • areWritesEnabled

    -
    public boolean areWritesEnabled()
    +
    public boolean areWritesEnabled()
    Specified by:
    areWritesEnabled in interface Store
    @@ -3538,7 +3534,7 @@ public static org.apache.hadoop.fs.Path 
  • getSmallestReadPoint

    -
    public long getSmallestReadPoint()
    +
    public long getSmallestReadPoint()
    Specified by:
    getSmallestReadPoint in interface Store
    @@ -3555,7 +3551,7 @@ public static org.apache.hadoop.fs.Path 
  • upsert

    -
    public void upsert(Iterable<Cell> cells,
    +
    public void upsert(Iterable<Cell> cells,
                        long readpoint,
                        MemStoreSize memstoreSize)
                 throws IOException
    @@ -3582,7 +3578,7 @@ public static org.apache.hadoop.fs.Path 
  • createFlushContext

    -
    public StoreFlushContext createFlushContext(long cacheFlushId)
    +
    public StoreFlushContext createFlushContext(long cacheFlushId)
  • @@ -3591,7 +3587,7 @@ public static org.apache.hadoop.fs.Path 
  • needsCompaction

    -
    public boolean needsCompaction()
    +
    public boolean needsCompaction()
    Description copied from interface: Store
    See if there's too much store files in this store
    @@ -3609,7 +3605,7 @@ public static org.apache.hadoop.fs.Path 
  • getCacheConfig

    -
    public CacheConfig getCacheConfig()
    +
    public CacheConfig getCacheConfig()
    Used for tests.
    Returns:
    @@ -3623,7 +3619,7 @@ public static org.apache.hadoop.fs.Path 
  • heapSize

    -
    public long heapSize()
    +
    public long heapSize()
    Specified by:
    heapSize in interface HeapSize
    @@ -3639,7 +3635,7 @@ public static org.apache.hadoop.fs.Path 
  • getComparator

    -
    public CellComparator getComparator()
    +
    public CellComparator getComparator()
    Specified by:
    getComparator in interface Store
    @@ -3652,7 +3648,7 @@ public static org.apache.hadoop.fs.Path 
  • getScanInfo

    -
    public ScanInfo getScanInfo()
    +
    public ScanInfo getScanInfo()
  • @@ -3661,7 +3657,7 @@ public static org.apache.hadoop.fs.Path 
  • setScanInfo

    -
    void setScanInfo(ScanInfo scanInfo)
    +
    void setScanInfo(ScanInfo scanInfo)
    Set scan info, used by test
    Parameters:
    @@ -3675,7 +3671,7 @@ public static org.apache.hadoop.fs.Path 
  • hasTooManyStoreFiles

    -
    public boolean hasTooManyStoreFiles()
    +
    public boolean hasTooManyStoreFiles()
    Specified by:
    hasTooManyStoreFiles in interface Store
    @@ -3690,7 +3686,7 @@ public static org.apache.hadoop.fs.Path 
  • getFlushedCellsCount

    -
    public long getFlushedCellsCount()
    +
    public long getFlushedCellsCount()
    Specified by:
    getFlushedCellsCount in interface Store
    @@ -3705,7 +3701,7 @@ public static org.apache.hadoop.fs.Path 
  • getFlushedCellsSize

    -
    public long getFlushedCellsSize()
    +
    public long getFlushedCellsSize()
    Specified by:
    getFlushedCellsSize in interface Store
    @@ -3720,7 +3716,7 @@ public static org.apache.hadoop.fs.Path 
  • getFlushedOutputFileSize

    -
    public long getFlushedOutputFileSize()
    +
    public long getFlushedOutputFileSize()
    Specified by:
    getFlushedOutputFileSize in interface Store
    @@ -3735,7 +3731,7 @@ public static org.apache.hadoop.fs.Path 
  • getCompactedCellsCount

    -
    public long getCompactedCellsCount()
    +
    public long getCompactedCellsCount()
    Specified by:
    getCompactedCellsCount in interface Store
    @@ -3750,7 +3746,7 @@ public static org.apache.hadoop.fs.Path 
  • getCompactedCellsSize

    -
    public long getCompactedCellsSize()
    +
    public long getCompactedCellsSize()
    Specified by:
    getCompactedCellsSize in interface Store
    @@ -3765,7 +3761,7 @@ public static org.apache.hadoop.fs.Path 
  • getMajorCompactedCellsCount

    -
    public long getMajorCompactedCellsCount()
    +
    public long getMajorCompactedCellsCount()
    Specified by:
    getMajorCompactedCellsCount in interface Store
    @@ -3780,7 +3776,7 @@ public static org.apache.hadoop.fs.Path 
  • getMajorCompactedCellsSize

    -
    public long getMajorCompactedCellsSize()
    +
    public long getMajorCompactedCellsSize()
    Specified by:
    getMajorCompactedCellsSize in interface Store
    @@ -3795,7 +3791,7 @@ public static org.apache.hadoop.fs.Path 
  • getStoreEngine

    -
    public StoreEngine<?,?,?,?> getStoreEngine()
    +
    public StoreEngine<?,?,?,?> getStoreEngine()
    Returns the StoreEngine that is backing this concrete implementation of Store.
    Returns:
    @@ -3809,7 +3805,7 @@ public static org.apache.hadoop.fs.Path 
  • getOffPeakHours

    -
    protected OffPeakHours getOffPeakHours()
    +
    protected OffPeakHours getOffPeakHours()
  • @@ -3818,7 +3814,7 @@ public static org.apache.hadoop.fs.Path 
  • onConfigurationChange

    -
    public void onConfigurationChange(org.apache.hadoop.conf.Configuration conf)
    +
    public void onConfigurationChange(org.apache.hadoop.conf.Configuration conf)
    This method would be called by the ConfigurationManager object when the Configuration object is reloaded from disk.
    @@ -3833,7 +3829,7 @@ public static org.apache.hadoop.fs.Path 
  • registerChildren

    -
    public void registerChildren(ConfigurationManager manager)
    +
    public void registerChildren(ConfigurationManager manager)
    Needs to be called to register the children to the manager.
    Specified by:
    @@ -3849,7 +3845,7 @@ public static org.apache.hadoop.fs.Path 
  • deregisterChildren

    -
    public void deregisterChildren(ConfigurationManager manager)
    +
    public void deregisterChildren(ConfigurationManager manager)
    Needs to be called to deregister the children from the manager.
    Specified by:
    @@ -3865,7 +3861,7 @@ public static org.apache.hadoop.fs.Path 
  • getCompactionPressure

    -
    public double getCompactionPressure()
    +
    public double getCompactionPressure()
    Description copied from interface: Store
    This value can represent the degree of emergency of compaction for this store. It should be greater than or equal to 0.0, any value greater than 1.0 means we have too many store files. @@ -3892,7 +3888,7 @@ public static org.apache.hadoop.fs.Path 
  • isPrimaryReplicaStore

    -
    public boolean isPrimaryReplicaStore()
    +
    public boolean isPrimaryReplicaStore()
    Specified by:
    isPrimaryReplicaStore in interface Store
    @@ -3905,7 +3901,7 @@ public static org.apache.hadoop.fs.Path 
  • preSnapshotOperation

    -
    public void preSnapshotOperation()
    +
    public void preSnapshotOperation()
    Sets the store up for a region level snapshot operation.
    See Also:
    @@ -3919,7 +3915,7 @@ public static org.apache.hadoop.fs.Path 
  • postSnapshotOperation

    -
    public void postSnapshotOperation()
    +
    public void postSnapshotOperation()
    Perform tasks needed after the completion of snapshot operation.
    See Also:
    @@ -3933,7 +3929,7 @@ public static org.apache.hadoop.fs.Path 
  • closeAndArchiveCompactedFiles

    -
    public void closeAndArchiveCompactedFiles()
    +
    public void closeAndArchiveCompactedFiles()
                                        throws IOException
    Closes and archives the compacted files under this store
    @@ -3948,7 +3944,7 @@ public static org.apache.hadoop.fs.Path 
  • removeCompactedfiles

    -
    private void removeCompactedfiles(Collection<HStoreFile> compactedfiles)
    +
    private void removeCompactedfiles(Collection<HStoreFile> compactedfiles)
                                throws IOException
    Archives and removes the compacted files
    @@ -3965,7 +3961,7 @@ public static org.apache.hadoop.fs.Path 
  • preFlushSeqIDEstimation

    -
    public Long preFlushSeqIDEstimation()
    +
    public Long preFlushSeqIDEstimation()
  • @@ -3974,7 +3970,7 @@ public static org.apache.hadoop.fs.Path 
  • isSloppyMemStore

    -
    public boolean isSloppyMemStore()
    +
    public boolean isSloppyMemStore()
    Specified by:
    isSloppyMemStore in interface Store
    @@ -3989,7 +3985,7 @@ public static org.apache.hadoop.fs.Path 
  • clearCompactedfiles

    -
    private void clearCompactedfiles(List<HStoreFile> filesToRemove)
    +
    private void clearCompactedfiles(List<HStoreFile> filesToRemove)
                               throws IOException
    Throws:
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/5a2158f2/devapidocs/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html b/devapidocs/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html index e140f69..6bdf84b 100644 --- a/devapidocs/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html +++ b/devapidocs/org/apache/hadoop/hbase/regionserver/ImmutableSegment.html @@ -18,7 +18,7 @@ catch(err) { } //--> -var methods = {"i0":6,"i1":10,"i2":10,"i3":10,"i4":10}; +var methods = {"i0":6,"i1":10,"i2":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; @@ -145,13 +145,6 @@ extends static long DEEP_OVERHEAD  - -private TimeRange -timeRange -
    This is an immutable segment so use the read-only TimeRange rather than the heavy-weight - TimeRangeTracker with all its synchronization when doing time range stuff.
    - - @@ -386,7 +332,7 @@ extends
  • getAllSegments

    -
    public List<SegmentgetAllSegments()
    +
    public List<SegmentgetAllSegments()
  • http://git-wip-us.apache.org/repos/asf/hbase-site/blob/5a2158f2/devapidocs/org/apache/hadoop/hbase/regionserver/MutableSegment.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/MutableSegment.html b/devapidocs/org/apache/hadoop/hbase/regionserver/MutableSegment.html index f5a3bf4..69de99d 100644 --- a/devapidocs/org/apache/hadoop/hbase/regionserver/MutableSegment.html +++ b/devapidocs/org/apache/hadoop/hbase/regionserver/MutableSegment.html @@ -18,7 +18,7 @@ catch(err) { } //--> -var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10}; +var methods = {"i0":10,"i1":10,"i2":10,"i3":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; @@ -198,19 +198,10 @@ extends -long -getMinTimestamp()  - - protected long indexEntrySize()  - -boolean -shouldSeek(TimeRange tr, - long oldestUnexpiredTS)  - - + void upsert(Cell cell, long readpoint, @@ -222,7 +213,7 @@ extends Segment -close, compare, compareRows, decScannerCount, dump, getCellLength, getCellsCount, getCell Set, getComparator, getFirstAfter, getMemStoreLAB, getMinSequenceId, getScanner, getScanner, getScanners, getTimeRangeTracker, headSet, heapSize, heapSizeChange, incScannerCount, incSize, internalAdd, isEmpty, isTagsPresent, iterator, keySize, last, maybeCloneWithAllocator, setCellSet, tailSet, toString, updateMetaInfo, updateMetaInfo
  • +close, compare, compareRows, decScannerCount, dump, getCellLength, getCellsCount, getCell Set, getComparator, getFirstAfter, getMemStoreLAB, getMinSequenceId, getScanner, getScanner, getScanners, getTimeRangeTracker, headSet, heapSize, heapSizeChange, incScannerCount, incSize, internalAdd, isEmpty, isTagsPresent, iterator, keySize, last, maybeCloneWithAllocator, setCellSet, shouldSeek, tailSet, toString, updateMetaInfo, updateMetaInfo
    • values

      -
      public static Region.Operation[] values()
      +
      public static Region.Operation[] values()
      Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: @@ -402,7 +402,7 @@ for (Region.Operation c : Region.Operation.values())
      • valueOf

        -
        public static Region.Operation valueOf(String name)
        +
        public static Region.Operation valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are