[2/2] hbase git commit: HBASE-17141 Introduce a more user-friendly implementation of AsyncTable

2016-11-21 Thread zhangduo
HBASE-17141 Introduce a more user-friendly implementation of AsyncTable


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/6ff19f94
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/6ff19f94
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/6ff19f94

Branch: refs/heads/master
Commit: 6ff19f94fe70f5815214c0d228c748a56468e8b9
Parents: b297f2d
Author: zhangduo 
Authored: Tue Nov 22 11:56:28 2016 +0800
Committer: zhangduo 
Committed: Tue Nov 22 14:44:51 2016 +0800

--
 .../hbase/client/AbstractClientScanner.java |  76 
 .../client/AllowPartialScanResultCache.java |  26 +-
 .../hadoop/hbase/client/AsyncConnection.java|  16 +-
 .../hbase/client/AsyncConnectionImpl.java   |  10 +-
 .../hadoop/hbase/client/AsyncRegionLocator.java |   4 +-
 .../apache/hadoop/hbase/client/AsyncTable.java  | 352 +---
 .../hadoop/hbase/client/AsyncTableBase.java | 354 
 .../hadoop/hbase/client/AsyncTableImpl.java | 357 +++-
 .../client/ClientAsyncPrefetchScanner.java  |  12 +-
 .../hadoop/hbase/client/ClientScanner.java  |  11 +-
 .../hadoop/hbase/client/ConnectionUtils.java|  34 ++
 .../hadoop/hbase/client/RawAsyncTable.java  |  61 +++
 .../hadoop/hbase/client/RawAsyncTableImpl.java  | 408 +++
 .../hadoop/hbase/client/ResultScanner.java  |  72 +++-
 .../client/AbstractTestAsyncTableScan.java  |  33 +-
 .../hbase/client/TestAsyncGetMultiThread.java   |   7 +-
 ...TestAsyncSingleRequestRpcRetryingCaller.java |   4 +-
 .../hadoop/hbase/client/TestAsyncTable.java |  62 ++-
 .../hbase/client/TestAsyncTableNoncedRetry.java |   4 +-
 .../hadoop/hbase/client/TestAsyncTableScan.java |   8 +-
 .../hbase/client/TestAsyncTableSmallScan.java   |  42 +-
 21 files changed, 1122 insertions(+), 831 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/6ff19f94/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractClientScanner.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractClientScanner.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractClientScanner.java
index 7658faf..87304c3 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractClientScanner.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractClientScanner.java
@@ -17,10 +17,6 @@
  */
 package org.apache.hadoop.hbase.client;
 
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.Iterator;
-
 import org.apache.hadoop.hbase.classification.InterfaceAudience;
 import org.apache.hadoop.hbase.client.metrics.ScanMetrics;
 
@@ -52,76 +48,4 @@ public abstract class AbstractClientScanner implements 
ResultScanner {
   public ScanMetrics getScanMetrics() {
 return scanMetrics;
   }
-
-  /**
-   * Get nbRows rows.
-   * How many RPCs are made is determined by the {@link Scan#setCaching(int)}
-   * setting (or hbase.client.scanner.caching in hbase-site.xml).
-   * @param nbRows number of rows to return
-   * @return Between zero and nbRows rowResults.  Scan is done
-   * if returned array is of zero-length (We never return null).
-   * @throws IOException
-   */
-  @Override
-  public Result [] next(int nbRows) throws IOException {
-// Collect values to be returned here
-ArrayList resultSets = new ArrayList(nbRows);
-for(int i = 0; i < nbRows; i++) {
-  Result next = next();
-  if (next != null) {
-resultSets.add(next);
-  } else {
-break;
-  }
-}
-return resultSets.toArray(new Result[resultSets.size()]);
-  }
-
-  @Override
-  public Iterator iterator() {
-return new Iterator() {
-  // The next RowResult, possibly pre-read
-  Result next = null;
-
-  // return true if there is another item pending, false if there isn't.
-  // this method is where the actual advancing takes place, but you need
-  // to call next() to consume it. hasNext() will only advance if there
-  // isn't a pending next().
-  @Override
-  public boolean hasNext() {
-if (next == null) {
-  try {
-next = AbstractClientScanner.this.next();
-return next != null;
-  } catch (IOException e) {
-throw new RuntimeException(e);
-  }
-}
-return true;
-  }
-
-  // get the pending next item and advance the iterator. returns null if
-  // there is no next item.
-  @Override
-  public Result next() {
-// since hasNext() does the real advancing, we call this to determine
-// if there is a next before proceeding.
-if (!hasNext()) {
-  return null;
-}
-
-// if we 

[1/2] hbase git commit: HBASE-17141 Introduce a more user-friendly implementation of AsyncTable

2016-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/master b297f2dae -> 6ff19f94f


http://git-wip-us.apache.org/repos/asf/hbase/blob/6ff19f94/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
new file mode 100644
index 000..bf9a3f2
--- /dev/null
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RawAsyncTableImpl.java
@@ -0,0 +1,408 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase.client;
+
+import static org.apache.hadoop.hbase.client.ConnectionUtils.checkHasFamilies;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.TimeUnit;
+import java.util.function.Function;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.HRegionLocation;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.classification.InterfaceAudience;
+import 
org.apache.hadoop.hbase.client.AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder;
+import org.apache.hadoop.hbase.filter.BinaryComparator;
+import org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
+import org.apache.hadoop.hbase.ipc.HBaseRpcController;
+import org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallback;
+import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
+import org.apache.hadoop.hbase.shaded.protobuf.ResponseConverter;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.GetRequest;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.GetResponse;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiResponse;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutateRequest;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutateResponse;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.RegionAction;
+import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.CompareType;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.hadoop.hbase.util.ReflectionUtils;
+
+/**
+ * The implementation of RawAsyncTable.
+ */
+@InterfaceAudience.Private
+class RawAsyncTableImpl implements RawAsyncTable {
+
+  private static final Log LOG = LogFactory.getLog(RawAsyncTableImpl.class);
+
+  private final AsyncConnectionImpl conn;
+
+  private final TableName tableName;
+
+  private final int defaultScannerCaching;
+
+  private final long defaultScannerMaxResultSize;
+
+  private long readRpcTimeoutNs;
+
+  private long writeRpcTimeoutNs;
+
+  private long operationTimeoutNs;
+
+  private long scanTimeoutNs;
+
+  public RawAsyncTableImpl(AsyncConnectionImpl conn, TableName tableName) {
+this.conn = conn;
+this.tableName = tableName;
+this.readRpcTimeoutNs = conn.connConf.getReadRpcTimeoutNs();
+this.writeRpcTimeoutNs = conn.connConf.getWriteRpcTimeoutNs();
+this.operationTimeoutNs = tableName.isSystemTable() ? 
conn.connConf.getMetaOperationTimeoutNs()
+: conn.connConf.getOperationTimeoutNs();
+this.defaultScannerCaching = conn.connConf.getScannerCaching();
+this.defaultScannerMaxResultSize = conn.connConf.getScannerMaxResultSize();
+this.scanTimeoutNs = conn.connConf.getScanTimeoutNs();
+  }
+
+  @Override
+  public TableName getName() {
+return tableName;
+  }
+
+  @Override
+  public Configuration getConfiguration() {
+return conn.getConfiguration();
+  }
+
+  @FunctionalInterface
+  private interface Converter {
+D convert(I info, S src) throws IOException;
+  }
+
+  @FunctionalInterface
+  private interface RpcCall {
+

hbase git commit: HBASE-17095 The ClientSimpleScanner keeps retrying if the hfile is corrupt or cannot found

2016-11-21 Thread jingchengdu
Repository: hbase
Updated Branches:
  refs/heads/branch-1 2da5ed098 -> fb1ace490


HBASE-17095 The ClientSimpleScanner keeps retrying if the hfile is corrupt or 
cannot found


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/fb1ace49
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fb1ace49
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fb1ace49

Branch: refs/heads/branch-1
Commit: fb1ace490cf5c8ecaae78280530b6a1f391afb5b
Parents: 2da5ed0
Author: Jingcheng Du 
Authored: Tue Nov 22 11:26:57 2016 +0800
Committer: Jingcheng Du 
Committed: Tue Nov 22 11:26:57 2016 +0800

--
 .../hbase/regionserver/RSRpcServices.java   |   8 ++
 .../TestScannerWithCorruptHFile.java| 112 +++
 2 files changed, 120 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/fb1ace49/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
index 57566b6..b92dd28 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
@@ -18,6 +18,7 @@
  */
 package org.apache.hadoop.hbase.regionserver;
 
+import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.io.InterruptedIOException;
 import java.net.BindException;
@@ -79,6 +80,7 @@ import 
org.apache.hadoop.hbase.exceptions.OutOfOrderScannerNextException;
 import org.apache.hadoop.hbase.exceptions.ScannerResetException;
 import org.apache.hadoop.hbase.filter.ByteArrayComparable;
 import org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
+import org.apache.hadoop.hbase.io.hfile.CorruptHFileException;
 import org.apache.hadoop.hbase.ipc.HBaseRPCErrorHandler;
 import org.apache.hadoop.hbase.ipc.PayloadCarryingRpcController;
 import org.apache.hadoop.hbase.ipc.PriorityFunction;
@@ -2750,6 +2752,12 @@ public class RSRpcServices implements 
HBaseRPCErrorHandler,
   // row that the client has last seen.
   closeScanner(region, scanner, scannerName);
 
+  // If it is a CorruptHFileException or a FileNotFoundException, 
throw the
+  // DoNotRetryIOException. This can avoid the retry in ClientScanner.
+  if (e instanceof CorruptHFileException || e instanceof 
FileNotFoundException) {
+throw new DoNotRetryIOException(e);
+  }
+
   // We closed the scanner already. Instead of throwing the 
IOException, and client
   // retrying with the same scannerId only to get USE on the next RPC, 
we directly throw
   // a special exception to save an RPC.

http://git-wip-us.apache.org/repos/asf/hbase/blob/fb1ace49/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
new file mode 100644
index 000..a1719fc
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
@@ -0,0 +1,112 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase.regionserver;
+
+import java.io.IOException;
+import java.util.List;
+
+import org.apache.hadoop.hbase.DoNotRetryIOException;
+import org.apache.hadoop.hbase.HBaseTestingUtility;
+import org.apache.hadoop.hbase.HColumnDescriptor;
+import org.apache.hadoop.hbase.HTableDescriptor;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.client.Durability;
+import org.apache.hadoop.hbase.client.Put;
+import org.apache.hadoop.h

hbase git commit: HBASE-17095 The ClientSimpleScanner keeps retrying if the hfile is corrupt or cannot found

2016-11-21 Thread jingchengdu
Repository: hbase
Updated Branches:
  refs/heads/master 3e9d1a19e -> b297f2dae


HBASE-17095 The ClientSimpleScanner keeps retrying if the hfile is corrupt or 
cannot found


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b297f2da
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b297f2da
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b297f2da

Branch: refs/heads/master
Commit: b297f2dae1cf1ef9a6c0aef30977ff1dcc3db9ee
Parents: 3e9d1a1
Author: Jingcheng Du 
Authored: Tue Nov 22 11:18:00 2016 +0800
Committer: Jingcheng Du 
Committed: Tue Nov 22 11:18:00 2016 +0800

--
 .../hbase/regionserver/RSRpcServices.java   |   7 ++
 .../TestScannerWithCorruptHFile.java| 112 +++
 2 files changed, 119 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/b297f2da/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
index f3f24b9..554b29a 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
@@ -20,6 +20,7 @@ package org.apache.hadoop.hbase.regionserver;
 
 import com.google.common.annotations.VisibleForTesting;
 
+import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.io.InterruptedIOException;
 import java.net.BindException;
@@ -81,6 +82,7 @@ import 
org.apache.hadoop.hbase.exceptions.OutOfOrderScannerNextException;
 import org.apache.hadoop.hbase.exceptions.ScannerResetException;
 import org.apache.hadoop.hbase.filter.ByteArrayComparable;
 import org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
+import org.apache.hadoop.hbase.io.hfile.CorruptHFileException;
 import org.apache.hadoop.hbase.ipc.HBaseRPCErrorHandler;
 import org.apache.hadoop.hbase.ipc.HBaseRpcController;
 import org.apache.hadoop.hbase.ipc.PriorityFunction;
@@ -2997,6 +2999,11 @@ public class RSRpcServices implements 
HBaseRPCErrorHandler,
   // scanner is closed here
   scannerClosed = true;
 
+  // If it is a CorruptHFileException or a FileNotFoundException, 
throw the
+  // DoNotRetryIOException. This can avoid the retry in ClientScanner.
+  if (e instanceof CorruptHFileException || e instanceof 
FileNotFoundException) {
+throw new DoNotRetryIOException(e);
+  }
   // We closed the scanner already. Instead of throwing the 
IOException, and client
   // retrying with the same scannerId only to get USE on the next RPC, 
we directly throw
   // a special exception to save an RPC.

http://git-wip-us.apache.org/repos/asf/hbase/blob/b297f2da/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
new file mode 100644
index 000..a1719fc
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestScannerWithCorruptHFile.java
@@ -0,0 +1,112 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase.regionserver;
+
+import java.io.IOException;
+import java.util.List;
+
+import org.apache.hadoop.hbase.DoNotRetryIOException;
+import org.apache.hadoop.hbase.HBaseTestingUtility;
+import org.apache.hadoop.hbase.HColumnDescriptor;
+import org.apache.hadoop.hbase.HTableDescriptor;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.client.Durability;
+import org.apache.hadoop.hbase.client.Put;
+import org.apache.hadoo

hbase git commit: HBASE-16995 Build client Java API and client protobuf messages - addendum fixes line lengths (Josh Elser)

2016-11-21 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/HBASE-16961 72699bff6 -> f7daf4f93


HBASE-16995 Build client Java API and client protobuf messages - addendum fixes 
line lengths (Josh Elser)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f7daf4f9
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f7daf4f9
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f7daf4f9

Branch: refs/heads/HBASE-16961
Commit: f7daf4f9337ceef8760c44b14f4507edf4563a04
Parents: 72699bf
Author: tedyu 
Authored: Mon Nov 21 13:00:27 2016 -0800
Committer: tedyu 
Committed: Mon Nov 21 13:00:27 2016 -0800

--
 .../hbase/quotas/QuotaSettingsFactory.java  | 20 
 .../hadoop/hbase/quotas/SpaceLimitSettings.java |  8 
 .../hbase/shaded/protobuf/ProtobufUtil.java |  9 +
 3 files changed, 21 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/f7daf4f9/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettingsFactory.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettingsFactory.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettingsFactory.java
index b8e99b8..f436cf2 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettingsFactory.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettingsFactory.java
@@ -130,7 +130,8 @@ public class QuotaSettingsFactory {
 
   static QuotaSettings fromSpace(TableName table, String namespace, SpaceQuota 
protoQuota) {
 if ((null == table && null == namespace) || (null != table && null != 
namespace)) {
-  throw new IllegalArgumentException("Can only construct 
SpaceLimitSettings for a table or namespace.");
+  throw new IllegalArgumentException(
+  "Can only construct SpaceLimitSettings for a table or namespace.");
 }
 if (null != table) {
   return SpaceLimitSettings.fromSpaceQuota(table, protoQuota);
@@ -302,29 +303,32 @@ public class QuotaSettingsFactory {
*/
 
   /**
-   * Creates a {@link QuotaSettings} object to limit the FileSystem space 
usage for the given table to the given size in bytes.
-   * When the space usage is exceeded by the table, the provided {@link 
SpaceViolationPolicy} is enacted on the table.
+   * Creates a {@link QuotaSettings} object to limit the FileSystem space 
usage for the given table
+   * to the given size in bytes. When the space usage is exceeded by the 
table, the provided
+   * {@link SpaceViolationPolicy} is enacted on the table.
*
* @param tableName The name of the table on which the quota should be 
applied.
* @param sizeLimit The limit of a table's size in bytes.
* @param violationPolicy The action to take when the quota is exceeded.
* @return An {@link QuotaSettings} object.
*/
-  public static QuotaSettings limitTableSpace(final TableName tableName, long 
sizeLimit, final SpaceViolationPolicy violationPolicy) {
+  public static QuotaSettings limitTableSpace(
+  final TableName tableName, long sizeLimit, final SpaceViolationPolicy 
violationPolicy) {
 return new SpaceLimitSettings(tableName, sizeLimit, violationPolicy);
   }
 
   /**
-   * Creates a {@link QuotaSettings} object to limit the FileSystem space 
usage for the given namespace to the given size in bytes.
-   * When the space usage is exceeded by all tables in the namespace, the 
provided {@link SpaceViolationPolicy} is enacted on
-   * all tables in the namespace.
+   * Creates a {@link QuotaSettings} object to limit the FileSystem space 
usage for the given
+   * namespace to the given size in bytes. When the space usage is exceeded by 
all tables in the
+   * namespace, the provided {@link SpaceViolationPolicy} is enacted on all 
tables in the namespace.
*
* @param namespace The namespace on which the quota should be applied.
* @param sizeLimit The limit of the namespace's size in bytes.
* @param violationPolicy The action to take when the the quota is exceeded.
* @return An {@link QuotaSettings} object.
*/
-  public static QuotaSettings limitNamespaceSpace(final String namespace, long 
sizeLimit, final SpaceViolationPolicy violationPolicy) {
+  public static QuotaSettings limitNamespaceSpace(
+  final String namespace, long sizeLimit, final SpaceViolationPolicy 
violationPolicy) {
 return new SpaceLimitSettings(namespace, sizeLimit, violationPolicy);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/f7daf4f9/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/SpaceLimitSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/h

hbase git commit: HBASE-17129 Removed public from methods in DataType interface

2016-11-21 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/master 7ff7b88db -> 3e9d1a19e


HBASE-17129 Removed public from methods in DataType interface

Signed-off-by: Sean Busbey 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/3e9d1a19
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/3e9d1a19
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/3e9d1a19

Branch: refs/heads/master
Commit: 3e9d1a19e25e3e9a2eba87869682cf1cb9023626
Parents: 7ff7b88
Author: Jan Hentschel 
Authored: Fri Nov 18 20:51:40 2016 +0100
Committer: Sean Busbey 
Committed: Mon Nov 21 14:34:43 2016 -0600

--
 .../org/apache/hadoop/hbase/types/DataType.java   | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/3e9d1a19/hbase-common/src/main/java/org/apache/hadoop/hbase/types/DataType.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/types/DataType.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/types/DataType.java
index 2f98ebf..cd43448 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/types/DataType.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/types/DataType.java
@@ -61,14 +61,14 @@ public interface DataType {
* @return {@code true} when natural order is preserved,
* {@code false} otherwise.
*/
-  public boolean isOrderPreserving();
+  boolean isOrderPreserving();
 
   /**
* Retrieve the sort {@link Order} imposed by this data type, or null when
* natural ordering is not preserved. Value is either ascending or
* descending. Default is assumed to be {@link Order#ASCENDING}.
*/
-  public Order getOrder();
+  Order getOrder();
 
   /**
* Indicates whether this instance supports encoding null values. This
@@ -77,40 +77,40 @@ public interface DataType {
* less than any non-null value for default sort ordering purposes.
* @return {@code true} when null is supported, {@code false} otherwise.
*/
-  public boolean isNullable();
+  boolean isNullable();
 
   /**
* Indicates whether this instance is able to skip over it's encoded value.
* {@code DataType}s that are not skippable can only be used as the
* right-most field of a {@link Struct}.
*/
-  public boolean isSkippable();
+  boolean isSkippable();
 
   /**
* Inform consumers how long the encoded {@code byte[]} will be.
* @param val The value to check.
* @return the number of bytes required to encode {@code val}.a
*/
-  public int encodedLength(T val);
+  int encodedLength(T val);
 
   /**
* Inform consumers over what type this {@code DataType} operates. Useful
* when working with bare {@code DataType} instances.
*/
-  public Class encodedClass();
+  Class encodedClass();
 
   /**
* Skip {@code src}'s position forward over one encoded value.
* @param src the buffer containing the encoded value.
* @return number of bytes skipped.
*/
-  public int skip(PositionedByteRange src);
+  int skip(PositionedByteRange src);
 
   /**
* Read an instance of {@code T} from the buffer {@code src}.
* @param src the buffer containing the encoded value.
*/
-  public T decode(PositionedByteRange src);
+  T decode(PositionedByteRange src);
 
   /**
* Write instance {@code val} into buffer {@code dst}.
@@ -118,5 +118,5 @@ public interface DataType {
* @param val the value to encode onto {@code dst}.
* @return number of bytes written.
*/
-  public int encode(PositionedByteRange dst, T val);
+  int encode(PositionedByteRange dst, T val);
 }



[05/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/BitComparator.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/BitComparator.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/BitComparator.html
index eb4cdaa..d616670 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/BitComparator.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/BitComparator.html
@@ -163,6 +163,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
index d5cc950..497b025 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
@@ -851,6 +851,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnCountGetFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnCountGetFilter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnCountGetFilter.html
index c65853f..03af0d4 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnCountGetFilter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnCountGetFilter.html
@@ -163,6 +163,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPaginationFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPaginationFilter.html
 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPaginationFilter.html
index 0b5595d..029815a 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPaginationFilter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPaginationFilter.html
@@ -163,6 +163,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPrefixFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPrefixFilter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPrefixFilter.html
index a81c2ec..4c4a0f3 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPrefixFilter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnPrefixFilter.html
@@ -163,6 +163,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnRangeFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnRangeFilter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnRangeFilter.html
index c51fbf9..edf2559 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnRangeFilter.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/ColumnRangeFilter.html
@@ -163,6 +163,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/filter/class-use/CompareFi

[37/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/Base64.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/Base64.html 
b/apidocs/org/apache/hadoop/hbase/util/Base64.html
index c3bfcb5..d249445 100644
--- a/apidocs/org/apache/hadoop/hbase/util/Base64.html
+++ b/apidocs/org/apache/hadoop/hbase/util/Base64.html
@@ -1214,6 +1214,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/ByteBufferUtils.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/ByteBufferUtils.html 
b/apidocs/org/apache/hadoop/hbase/util/ByteBufferUtils.html
index d70c0ee..2ebd7ae 100644
--- a/apidocs/org/apache/hadoop/hbase/util/ByteBufferUtils.html
+++ b/apidocs/org/apache/hadoop/hbase/util/ByteBufferUtils.html
@@ -1554,6 +1554,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/ByteRange.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/ByteRange.html 
b/apidocs/org/apache/hadoop/hbase/util/ByteRange.html
index 755b93f..d96ba1e 100644
--- a/apidocs/org/apache/hadoop/hbase/util/ByteRange.html
+++ b/apidocs/org/apache/hadoop/hbase/util/ByteRange.html
@@ -980,6 +980,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.h
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/ByteRangeUtils.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/ByteRangeUtils.html 
b/apidocs/org/apache/hadoop/hbase/util/ByteRangeUtils.html
index bb2fb90..03b1454 100644
--- a/apidocs/org/apache/hadoop/hbase/util/ByteRangeUtils.html
+++ b/apidocs/org/apache/hadoop/hbase/util/ByteRangeUtils.html
@@ -342,6 +342,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/Bytes.ByteArrayComparator.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/util/Bytes.ByteArrayComparator.html 
b/apidocs/org/apache/hadoop/hbase/util/Bytes.ByteArrayComparator.html
index 491ef2f..fd0c60a 100644
--- a/apidocs/org/apache/hadoop/hbase/util/Bytes.ByteArrayComparator.html
+++ b/apidocs/org/apache/hadoop/hbase/util/Bytes.ByteArrayComparator.html
@@ -326,6 +326,6 @@ implements 
org.apache.hadoop.io.RawComparator
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/Bytes.RowEndKeyComparator.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/util/Bytes.RowEndKeyComparator.html 
b/apidocs/org/apache/hadoop/hbase/util/Bytes.RowEndKeyComparator.html
index bd8fd86..4bc0ef3 100644
--- a/apidocs/org/apache/hadoop/hbase/util/Bytes.RowEndKeyComparator.html
+++ b/apidocs/org/apache/hadoop/hbase/util/Bytes.RowEndKeyComparator.html
@@ -328,6 +328,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/util/Bytes.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/Bytes.html 
b/apidocs/org/apache/hadoop/hbase/util/Bytes.html
index a2152d9..b3039

[48/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apache_hbase_reference_guide.pdfmarks
--
diff --git a/apache_hbase_reference_guide.pdfmarks 
b/apache_hbase_reference_guide.pdfmarks
index 011d2ff..f04d076 100644
--- a/apache_hbase_reference_guide.pdfmarks
+++ b/apache_hbase_reference_guide.pdfmarks
@@ -2,8 +2,8 @@
   /Author (Apache HBase Team)
   /Subject ()
   /Keywords ()
-  /ModDate (D:20161115143715)
-  /CreationDate (D:20161115143715)
+  /ModDate (D:20161120143120)
+  /CreationDate (D:20161120143120)
   /Creator (Asciidoctor PDF 1.5.0.alpha.6, based on Prawn 1.2.1)
   /Producer ()
   /DOCINFO pdfmark

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/com/google/protobuf/package-summary.html
--
diff --git a/apidocs/com/google/protobuf/package-summary.html 
b/apidocs/com/google/protobuf/package-summary.html
index deaf5d9..af2bb5b 100644
--- a/apidocs/com/google/protobuf/package-summary.html
+++ b/apidocs/com/google/protobuf/package-summary.html
@@ -119,6 +119,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/com/google/protobuf/package-tree.html
--
diff --git a/apidocs/com/google/protobuf/package-tree.html 
b/apidocs/com/google/protobuf/package-tree.html
index 75217b6..e62486b 100644
--- a/apidocs/com/google/protobuf/package-tree.html
+++ b/apidocs/com/google/protobuf/package-tree.html
@@ -123,6 +123,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/com/google/protobuf/package-use.html
--
diff --git a/apidocs/com/google/protobuf/package-use.html 
b/apidocs/com/google/protobuf/package-use.html
index 696a308..9b3a24c 100644
--- a/apidocs/com/google/protobuf/package-use.html
+++ b/apidocs/com/google/protobuf/package-use.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/constant-values.html
--
diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html
index 2258aae..ff21a74 100644
--- a/apidocs/constant-values.html
+++ b/apidocs/constant-values.html
@@ -5014,6 +5014,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/deprecated-list.html
--
diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html
index 66c82e0..b1c1b47 100644
--- a/apidocs/deprecated-list.html
+++ b/apidocs/deprecated-list.html
@@ -624,6 +624,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/help-doc.html
--
diff --git a/apidocs/help-doc.html b/apidocs/help-doc.html
index 64eeed6..a4fad2a 100644
--- a/apidocs/help-doc.html
+++ b/apidocs/help-doc.html
@@ -225,6 +225,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/index-all.html
--
diff --git a/apidocs/index-all.html b/apidocs/index-all.html
index 2f6bb15..634ce1d 100644
--- a/apidocs/index-all.html
+++ b/apidocs/index-all.html
@@ -5879,6 +5879,14 @@
  
 getRegionInfo()
 - Method in class org.apache.hadoop.hbase.HRegionLocation
  
+getRegionLoad(ServerName)
 - Method in interface org.apache.hadoop.hbase.client.Admin
+
+Get RegionLoad of all 
regions hosted on a regionserver.
+
+getRegionLoad(ServerName,
 TableName) - Method in interface org.ap

[08/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionObserver.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionObserver.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionObserver.html
index 900a3d7..97e071c 100644
--- a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionObserver.html
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionObserver.html
@@ -1991,11 +1991,13 @@ void 
 
 postBatchMutate
-void postBatchMutate(ObserverContext c,
+void postBatchMutate(ObserverContext c,
  MiniBatchOperationInProgress miniBatchOp)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 This will be called after applying a batch of Mutations on 
a region. The Mutations are added to
- memstore and WAL.
+ memstore and WAL. The difference of this one with postPut(ObserverContext,
 Put, WALEdit, Durability)
+ and postDelete(ObserverContext,
 Delete, WALEdit, Durability) is
+ this hook will be executed before the mvcc transaction completion.
  
  Note: Do not retain references to any Cells in Mutations beyond the life of 
this invocation.
  If need a Cell reference for later use, copy the cell and use that.
@@ -2014,7 +2016,7 @@ void 
 
 postStartRegionOperation
-void postStartRegionOperation(ObserverContext ctx,
+void postStartRegionOperation(ObserverContext ctx,
   Region.Operation operation)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 This will be called for region operations where read lock 
is acquired in
@@ -2034,7 +2036,7 @@ void 
 
 postCloseRegionOperation
-void postCloseRegionOperation(ObserverContext ctx,
+void postCloseRegionOperation(ObserverContext ctx,
   Region.Operation operation)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Called after releasing read lock in Region.closeRegionOperation().
@@ -2053,7 +2055,7 @@ void 
 
 postBatchMutateIndispensably
-void postBatchMutateIndispensably(ObserverContext ctx,
+void postBatchMutateIndispensably(ObserverContext ctx,
   MiniBatchOperationInProgress miniBatchOp,
   boolean success)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
@@ -2078,7 +2080,7 @@ void 
 
 preCheckAndPut
-boolean preCheckAndPut(ObserverContext c,
+boolean preCheckAndPut(ObserverContext c,
byte[] row,
byte[] family,
byte[] qualifier,
@@ -2120,7 +2122,7 @@ void 
 
 preCheckAndPutAfterRowLock
-boolean preCheckAndPutAfterRowLock(ObserverContext c,
+boolean preCheckAndPutAfterRowLock(ObserverContext c,
byte[] row,
byte[] family,
byte[] qualifier,
@@ -2166,7 +2168,7 @@ void 
 
 postCheckAndPut
-boolean postCheckAndPut(ObserverContext c,
+boolean postCheckAndPut(ObserverContext c,
 byte[] row,
 byte[] family,
 byte[] qualifier,
@@ -2205,7 +2207,7 @@ void 
 
 preCheckAndDelete
-boolean preCheckAndDelete(ObserverContext c,
+boolean preCheckAndDelete(ObserverContext c,
   byte[] row,
   byte[] family,
   byte[] qualifier,
@@ -2246,7 +2248,7 @@ void 
 
 preCheckAndDeleteAfterRowLock
-boolean preCheckAndDeleteAfterRowLock(ObserverContext c,
+boolean preCheckAndDeleteAfterRowLock(ObserverContext c,
   byte[] row,
   byte[] family,
   byte[] qualifier,
@@ -2291,7 +2293,7 @@ void 
 
 postCheckAndDelete
-boolean postCheckAndDelete(ObserverContext c,
+boolean postCheckAndDelete(ObserverContext c,
 

[23/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
index 9dd42dd..00bc432 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -918,6 +918,28 @@
 HBaseAdmin.getOnlineRegions(ServerName sn) 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+Admin.getRegionLoad(ServerName sn)
+Get RegionLoad of all regions hosted on a 
regionserver.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+HBaseAdmin.getRegionLoad(ServerName sn) 
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+Admin.getRegionLoad(ServerName sn,
+ TableName tableName)
+Get RegionLoad of all regions hosted on a 
regionserver for a table.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+HBaseAdmin.getRegionLoad(ServerName sn,
+ TableName tableName) 
+
+
 (package private) 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.Interface
 AsyncConnectionImpl.getRegionServerStub(ServerName serverName) 
 
@@ -2933,9 +2955,9 @@
 ClusterLoadState.clusterState 
 
 
-private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
+private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 FavoredNodesPlan.favoredNodesMap
-the map between each region and its favored region server 
list
+the map between each region name and its favored region 
server list
 
 
 
@@ -3038,7 +3060,7 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 FavoredNodesPlan.getAssignmentMap() 
 
 
@@ -3437,26 +3459,19 @@
 
 
 void
-FavoredNodesPlan.updateAssignmentPlan(HRegionInfo region,
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
-Add an assignment to the plan
-
-
-
-void
 FavoredNodesPlan.updateFavoredNodesMap(HRegionInfo region,
  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
-Add an assignment to the plan
+Update an assignment to the plan
 
 
-
+
 static void
 FavoredNodeAssignmentHelper.updateMetaWithFavoredNodesInfo(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> regionToFavoredNodes,
   
org.apache.hadoop.conf.Configuration conf)
 Update meta table with favored nodes info
 
 
-
+
 static void
 FavoredNodeAssignmentHelper.updateMetaWithFavoredNodesInfo(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> regionToFavoredNodes,
   Connection connection)
@@ -4478,6 +4493,19 @@
 
 
 
+Methods in org.apache.hadoop.hbase.util
 that return types with arguments of type ServerName

[16/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HRegionLocator.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/HRegionLocator.html 
b/devapidocs/org/apache/hadoop/hbase/client/HRegionLocator.html
index 513c239..5a646d7 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HRegionLocator.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HRegionLocator.html
@@ -571,6 +571,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HTable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/HTable.html 
b/devapidocs/org/apache/hadoop/hbase/client/HTable.html
index 2fb09ef..a63300c 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HTable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HTable.html
@@ -2443,6 +2443,6 @@ public void Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HTableInterface.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/HTableInterface.html 
b/devapidocs/org/apache/hadoop/hbase/client/HTableInterface.html
index add4188..e282ced 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HTableInterface.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HTableInterface.html
@@ -445,6 +445,6 @@ void Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.AtomicAverageCounter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.AtomicAverageCounter.html
 
b/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.AtomicAverageCounter.html
index 95b1ff6..0b2c201 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.AtomicAverageCounter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.AtomicAverageCounter.html
@@ -373,6 +373,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.FlushWorker.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.FlushWorker.html 
b/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.FlushWorker.html
index eeb8721..e7eec6e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.FlushWorker.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.FlushWorker.html
@@ -660,6 +660,6 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.HTableMultiplexerStatus.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.HTableMultiplexerStatus.html
 
b/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.HTableMultiplexerStatus.html
index c7fa5f8..2cb3a11 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.HTableMultiplexerStatus.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.HTableMultiplexerStatus.html
@@ -507,6 +507,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos

[10/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/column/package-use.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/column/package-use.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/column/package-use.html
index 70105cc..3778966 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/column/package-use.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/column/package-use.html
@@ -184,6 +184,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/CellTypeEncoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/CellTypeEncoder.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/CellTypeEncoder.html
index 9949a8c..dc2e703 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/CellTypeEncoder.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/CellTypeEncoder.html
@@ -384,6 +384,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/ColumnNodeType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/ColumnNodeType.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/ColumnNodeType.html
index 463d485..0b394e8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/ColumnNodeType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/ColumnNodeType.html
@@ -351,6 +351,6 @@ not permitted.)
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/LongEncoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/LongEncoder.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/LongEncoder.html
index 5879a32..6c8b6df 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/LongEncoder.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/LongEncoder.html
@@ -616,6 +616,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/CellTypeEncoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/CellTypeEncoder.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/CellTypeEncoder.html
index 6b983f4..cfbc442 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/CellTypeEncoder.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/CellTypeEncoder.html
@@ -160,6 +160,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/ColumnNodeType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/ColumnNodeType.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/prefixtree/encode/other/class-use/ColumnNodeType.html
index 4d99b4d..1ef3ffd 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/code

[03/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.LeaseManager.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.LeaseManager.html
 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.LeaseManager.html
index 8eb8981..9cd2d0d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.LeaseManager.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.LeaseManager.html
@@ -238,6 +238,6 @@ var activeTableTab = "activeTableTab";
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.NameNodeException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.NameNodeException.html
 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.NameNodeException.html
index 3f6bfe2..4faa2bf 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.NameNodeException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.NameNodeException.html
@@ -308,6 +308,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PBHelper.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PBHelper.html
 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PBHelper.html
index 9b429e0..82fd83b 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PBHelper.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PBHelper.html
@@ -234,6 +234,6 @@ var activeTableTab = "activeTableTab";
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PipelineAckStatusGetter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PipelineAckStatusGetter.html
 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PipelineAckStatusGetter.html
index 98cf152..c73ae81 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PipelineAckStatusGetter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.PipelineAckStatusGetter.html
@@ -221,6 +221,6 @@ var activeTableTab = "activeTableTab";
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.StorageTypeSetter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.StorageTypeSetter.html
 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.StorageTypeSetter.html
index df96d0c..0aeee88 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.StorageTypeSetter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.StorageTypeSetter.html
@@ -223,6 +223,6 @@ var activeTableTab = "activeTableTab";
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-s

[27/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html 
b/devapidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
index 2043287..828cddc 100644
--- a/devapidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
@@ -477,6 +477,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/KeyValueUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/KeyValueUtil.html 
b/devapidocs/org/apache/hadoop/hbase/KeyValueUtil.html
index 7076ece..969215c 100644
--- a/devapidocs/org/apache/hadoop/hbase/KeyValueUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/KeyValueUtil.html
@@ -1230,6 +1230,6 @@ public static http://docs.oracle.com/javase/8/docs/api/java/util/L
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html 
b/devapidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
index 22f9c59..3fdfeac 100644
--- a/devapidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
+++ b/devapidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
@@ -999,6 +999,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/MasterNotRunningException.html 
b/devapidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
index b2eae69..bbd4887 100644
--- a/devapidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
+++ b/devapidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
@@ -361,6 +361,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/MetaMutationAnnotation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/MetaMutationAnnotation.html 
b/devapidocs/org/apache/hadoop/hbase/MetaMutationAnnotation.html
index 2e47bad..ae4f2fe 100644
--- a/devapidocs/org/apache/hadoop/hbase/MetaMutationAnnotation.html
+++ b/devapidocs/org/apache/hadoop/hbase/MetaMutationAnnotation.html
@@ -165,6 +165,6 @@ public @interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.CloseableVisitor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.CloseableVisitor.html 
b/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.CloseableVisitor.html
index 7592197..ffbc357 100644
--- a/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.CloseableVisitor.html
+++ b/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.CloseableVisitor.html
@@ -201,6 +201,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.CollectAllVisitor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/MetaTab

[17/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
index e2cd067..87a3f14 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":42,"i4":10,"i5":10,"i6":10,"i7":10,"i8":9,"i9":10,"i10":10,"i11":41,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":9,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":42,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":9,"i68":10,"i69":10,"i70":9,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":10,"i94":10,"i95":9,"i96":10,"i97":10,"i98":10,"i99":10,"i100":10,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109":
 
10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":42,"i143":10,"i144":10,"i145":42,"i146":10,"i147":10,"i148":10,"i149":10,"i150":10,"i151":10,"i152":10,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":42,"i161":10,"i162":10,"i163":10,"i164":10,"i165":10,"i166":10,"i167":10,"i168":10,"i169":10,"i170":10,"i171":10,"i172":10,"i173":10,"i174":10,"i175":10,"i176":10,"i177":10,"i178":10,"i179":10,"i180":10,"i181":10,"i182":10,"i183":10,"i184":10,"i185":10,"i186":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":42,"i4":10,"i5":10,"i6":10,"i7":10,"i8":9,"i9":10,"i10":10,"i11":41,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":9,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":42,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":9,"i68":10,"i69":10,"i70":9,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":10,"i94":10,"i95":10,"i96":10,"i97":9,"i98":10,"i99":10,"i100":10,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109":
 
10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":10,"i144":42,"i145":10,"i146":10,"i147":42,"i148":10,"i149":10,"i150":10,"i151":10,"i152":10,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":10,"i161":10,"i162":42,"i163":10,"i164":10,"i165":10,"i166":10,"i167":10,"i168":10,"i169":10,"i170":10,"i171":10,"i172":10,"i173":10,"i174":10,"i175":10,"i176":10,"i177":10,"i178":10,"i179":10,"i180":10,"i181":10,"i182":10,"i183":10,"i184":10,"i185":10,"i186":10,"i187":10,"i188":10};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -115,7 +115,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Private
  @InterfaceStability.Evolving
-public class HBaseAdmin
+public class HBaseAdmin
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements Admin
 HBaseAdmin is no longer a client API. It is marked 
InterfaceAudience.Private indicating that
@@ -902,28 +902,41 @@ implements getRegion(byte[] regionName) 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+getRegionLoad(ServerName sn)
+Get RegionLoad 

[12/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Call.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Call.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Call.html
index 3586e0f..b2dea87 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Call.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Call.html
@@ -256,6 +256,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
index bdfcb76..0a71160 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
@@ -445,6 +445,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.html 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.html
index 5a988fb..863da45 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/BigDecimalColumnInterpreter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/BigDecimalColumnInterpreter.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/BigDecimalColumnInterpreter.html
index de9d04c..328df46 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/BigDecimalColumnInterpreter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/BigDecimalColumnInterpreter.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/DoubleColumnInterpreter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/DoubleColumnInterpreter.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/DoubleColumnInterpreter.html
index 7dc72f0..a41ad6c 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/DoubleColumnInterpreter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/DoubleColumnInterpreter.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/LongColumnInterpreter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/LongColumnInterpreter.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/LongColumnInterpreter.html
index 7ad76d2..678d8f8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/LongColumnInterpreter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/LongColumnInterpreter.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2

[43/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/FilterList.Operator.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/FilterList.Operator.html 
b/apidocs/org/apache/hadoop/hbase/filter/FilterList.Operator.html
index 0542b3a..73e50f5 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/FilterList.Operator.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/FilterList.Operator.html
@@ -350,6 +350,6 @@ not permitted.)
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/FilterList.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/FilterList.html 
b/apidocs/org/apache/hadoop/hbase/filter/FilterList.html
index 2a50d5b..07529cf 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/FilterList.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/FilterList.html
@@ -1003,6 +1003,6 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/FirstKeyOnlyFilter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/FirstKeyOnlyFilter.html 
b/apidocs/org/apache/hadoop/hbase/filter/FirstKeyOnlyFilter.html
index d3cd133..98d656a 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/FirstKeyOnlyFilter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/FirstKeyOnlyFilter.html
@@ -513,6 +513,6 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/FirstKeyValueMatchingQualifiersFilter.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/filter/FirstKeyValueMatchingQualifiersFilter.html
 
b/apidocs/org/apache/hadoop/hbase/filter/FirstKeyValueMatchingQualifiersFilter.html
index ed25188..8a45b5e 100644
--- 
a/apidocs/org/apache/hadoop/hbase/filter/FirstKeyValueMatchingQualifiersFilter.html
+++ 
b/apidocs/org/apache/hadoop/hbase/filter/FirstKeyValueMatchingQualifiersFilter.html
@@ -439,6 +439,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/FuzzyRowFilter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/FuzzyRowFilter.html 
b/apidocs/org/apache/hadoop/hbase/filter/FuzzyRowFilter.html
index e0d79d9..6fac76b 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/FuzzyRowFilter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/FuzzyRowFilter.html
@@ -497,6 +497,6 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html 
b/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html
index c21c6cc..de2f6ac 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html
@@ -509,6 +509,6 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/filter/IncompatibleFilterException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/filter/Incompa

[20/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AllowPartialScanResultCache.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/AllowPartialScanResultCache.html 
b/devapidocs/org/apache/hadoop/hbase/client/AllowPartialScanResultCache.html
index 2b2b741..64ea883 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AllowPartialScanResultCache.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AllowPartialScanResultCache.html
@@ -386,6 +386,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Append.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Append.html 
b/devapidocs/org/apache/hadoop/hbase/client/Append.html
index d693977..c2688bf 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Append.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Append.html
@@ -683,6 +683,6 @@ extends 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.OpenScannerResponse.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.OpenScannerResponse.html
 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.OpenScannerResponse.html
index fcedf61..e81d13e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.OpenScannerResponse.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.OpenScannerResponse.html
@@ -303,6 +303,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.html
index 71c22cc..534bb5d 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AsyncClientScanner.html
@@ -460,6 +460,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/AsyncConnection.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
index 1508a38..d0c6068 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
@@ -293,6 +293,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AsyncConnectionConfiguration.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/AsyncConnectionConfiguration.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncConnectionConfiguration.html
index e9fd056..5c99475 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/AsyncConnectionConfiguration.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncConnectionConfiguration.html
@@ -542,6 +542,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.

[40/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CellCreator.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CellCreator.html 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CellCreator.html
index 92b5933..b4ab19b 100644
--- a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CellCreator.html
+++ b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CellCreator.html
@@ -163,6 +163,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CopyTable.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CopyTable.html 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CopyTable.html
index 089a0a1..96530f8 100644
--- a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CopyTable.html
+++ b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/CopyTable.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/Export.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/Export.html 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/Export.html
index edecb27..42d886c 100644
--- a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/Export.html
+++ b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/Export.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/GroupingTableMapper.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/GroupingTableMapper.html 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/GroupingTableMapper.html
index 4eade2e..3216336 100644
--- 
a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/GroupingTableMapper.html
+++ 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/GroupingTableMapper.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HFileOutputFormat2.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HFileOutputFormat2.html 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HFileOutputFormat2.html
index 84f966c..a07a7b5 100644
--- 
a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HFileOutputFormat2.html
+++ 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HFileOutputFormat2.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HLogInputFormat.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HLogInputFormat.html 
b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HLogInputFormat.html
index 371d48a..89fd14c 100644
--- a/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HLogInputFormat.html
+++ b/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HLogInputFormat.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/mapreduce/class-use/HRegionPartitioner.html
--
d

[46/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Admin.html 
b/apidocs/org/apache/hadoop/hbase/client/Admin.html
index 0171d60..49cf4a3 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Admin.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Admin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":38,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":38,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":38,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":38,"i119":6,"i120":3
 
8,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":6,"i147":6,"i148":6,"i149":6,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":6,"i156":6,"i157":6,"i158":6};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":38,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":38,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":38,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i120":38
 
,"i121":6,"i122":38,"i123":6,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":6,"i147":6,"i148":6,"i149":6,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":6,"i156":6,"i157":6,"i158":6,"i159":6,"i160":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -107,7 +107,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
  @InterfaceStability.Evolving
-public interface Admin
+public interface Admin
 extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 The administrative API for HBase. Obtain an instance from 
an Connection.getAdmin()
 and
  call close()
 afterwards.
@@ -640,66 +640,79 @@ extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javas
 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+getRegionLoad(ServerName sn)
+Get RegionLoad of all regions hosted on a 
regionserver.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+getRegionLoad(ServerName sn,
+ TableName tableName)
+Get RegionLoad of all regions hosted on a 
regionserver for a table.
+
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 getSecurityCapabilities()
 Return the set of supported security capabilities.
 
 
-
+
 HTableDescriptor
 getTableDescriptor(TableName tableName)
 Method for getting the tableDescriptor
 
 
-
+
 HTableDescriptor[]
 getTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List

[34/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 5dbdab9..8ee3e6f 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Checkstyle Results
 
@@ -155,12 +155,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -307,7 +301,7 @@
 2052
 0
 0
-13920
+13943
 
 Files
 
@@ -572,1615 +566,1625 @@
 0
 1
 
-org/apache/hadoop/hbase/ZKNamespaceManager.java
+org/apache/hadoop/hbase/TagUtil.java
 0
 0
 2
 
+org/apache/hadoop/hbase/ZKNamespaceManager.java
+0
+0
+2
+
 org/apache/hadoop/hbase/ZNodeClearer.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/FailedArchiveException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/HFileArchiver.java
 0
 0
 21
-
+
 org/apache/hadoop/hbase/backup/example/HFileArchiveManager.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/backup/example/LongTermArchivingHFileCleaner.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/backup/example/TableHFileArchiveTracker.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/backup/example/ZKTableArchiveClient.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/classification/tools/ExcludePrivateAnnotationsStandardDoclet.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/classification/tools/IncludePublicAnnotationsStandardDoclet.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/classification/tools/StabilityOptions.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/AbstractClientScanner.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/AbstractResponse.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/Action.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/Admin.java
 0
 0
 59
-
+
 org/apache/hadoop/hbase/client/Append.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/AsyncClientScanner.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/AsyncProcess.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/client/AsyncRegionLocator.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/client/AsyncRequestFuture.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.java
 0
 0
 22
-
+
 org/apache/hadoop/hbase/client/AsyncSmallScanRpcRetryingCaller.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncTableImpl.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/BatchErrors.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/BufferedMutator.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/BufferedMutatorImpl.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/CancellableRegionServerCallable.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/ClientAsyncPrefetchScanner.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ClientIdGenerator.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ClientScanner.java
 0
 0
 162
-
+
 org/apache/hadoop/hbase/client/ClientServiceCallable.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ClientSimpleScanner.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ClientSmallReversedScanner.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/ClientSmallScanner.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/client/ClusterStatusListener.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/CompactType.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ConnectionConfiguration.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ConnectionFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ConnectionImplementation.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/CoprocessorHConnection.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/DelayingRunner.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/Delete.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/client/Get.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/HBaseAdmin.java
 0
 0
-75
-
+76
+
 org/apache/hadoop/hbase/client/HRegionLocator.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/HTable.java
 0
 0
 18
-
+
 org/apache/hadoop/hbase/client/HTableInterface.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/HTableMultiplexer.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/HTableWrapper.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client/Increment.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/MasterCallable.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/MetaCache.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client/MetricsConnection.java
 0
 0
 44
-
+
 org/apache/hadoop/hbase/client/MultiAction.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/MultiResponse.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/MultiServerCallable.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/client/Mutation.java
 0
 0
 21
-
+
 org/apache/hadoop/hbase/client/Operation.java
 0
 0
 1
-
+
 org/

[15/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/StatisticTrackable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/StatisticTrackable.html 
b/devapidocs/org/apache/hadoop/hbase/client/StatisticTrackable.html
index fb925f9..91fd29a 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/StatisticTrackable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/StatisticTrackable.html
@@ -230,6 +230,6 @@ public interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/SyncCoprocessorRpcChannel.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/SyncCoprocessorRpcChannel.html 
b/devapidocs/org/apache/hadoop/hbase/client/SyncCoprocessorRpcChannel.html
index ebdf509..c156146 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/SyncCoprocessorRpcChannel.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/SyncCoprocessorRpcChannel.html
@@ -382,6 +382,6 @@ public com.google.protobuf.Message Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Table.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Table.html 
b/devapidocs/org/apache/hadoop/hbase/client/Table.html
index c5c5315..ec1b036 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Table.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Table.html
@@ -1573,6 +1573,6 @@ void Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/TableSnapshotScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/TableSnapshotScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/TableSnapshotScanner.html
index cbc64ca..98dbbd1 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/TableSnapshotScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/TableSnapshotScanner.html
@@ -618,6 +618,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/TableState.State.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/TableState.State.html 
b/devapidocs/org/apache/hadoop/hbase/client/TableState.State.html
index f7cca54..e6e3a9f 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/TableState.State.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/TableState.State.html
@@ -409,6 +409,6 @@ not permitted.)
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/TableState.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/TableState.html 
b/devapidocs/org/apache/hadoop/hbase/client/TableState.html
index e6462e7..962d19a 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/TableState.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/TableState.html
@@ -556,6 +556,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/UnmodifyableHRegionInfo.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/UnmodifyableHRegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/client/UnmodifyableHRegionInfo.html
index 3e8dca7..9d140a

[31/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/Abortable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/Abortable.html 
b/devapidocs/org/apache/hadoop/hbase/Abortable.html
index 411d627..fb12d4c 100644
--- a/devapidocs/org/apache/hadoop/hbase/Abortable.html
+++ b/devapidocs/org/apache/hadoop/hbase/Abortable.html
@@ -263,6 +263,6 @@ public interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/ArrayBackedTag.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ArrayBackedTag.html 
b/devapidocs/org/apache/hadoop/hbase/ArrayBackedTag.html
index 322e1b6..cf5b7c0 100644
--- a/devapidocs/org/apache/hadoop/hbase/ArrayBackedTag.html
+++ b/devapidocs/org/apache/hadoop/hbase/ArrayBackedTag.html
@@ -572,6 +572,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/AsyncConsoleAppender.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/AsyncConsoleAppender.html 
b/devapidocs/org/apache/hadoop/hbase/AsyncConsoleAppender.html
index 9704ddc..364a040 100644
--- a/devapidocs/org/apache/hadoop/hbase/AsyncConsoleAppender.html
+++ b/devapidocs/org/apache/hadoop/hbase/AsyncConsoleAppender.html
@@ -366,6 +366,6 @@ extends org.apache.log4j.AsyncAppender
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/AuthUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/AuthUtil.html 
b/devapidocs/org/apache/hadoop/hbase/AuthUtil.html
index 33c0d76..67f0c78 100644
--- a/devapidocs/org/apache/hadoop/hbase/AuthUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/AuthUtil.html
@@ -429,6 +429,6 @@ public static http://docs.oracle.com/javase/8/docs/api/java/lang/S
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html 
b/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
index e176a2b..4806ba8 100644
--- a/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
+++ b/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
@@ -338,6 +338,6 @@ implements org.apache.hadoop.conf.Configurable
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/ByteBufferedCell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ByteBufferedCell.html 
b/devapidocs/org/apache/hadoop/hbase/ByteBufferedCell.html
index a1bd0d3..542551d 100644
--- a/devapidocs/org/apache/hadoop/hbase/ByteBufferedCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/ByteBufferedCell.html
@@ -462,6 +462,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/ByteBufferedKeyOnlyKeyValue.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ByteBufferedKeyOnlyKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/ByteBufferedKeyOnlyKeyValue.html
index aa21fa7..1ae5f35 100644
--- a/devapidocs/org/apache/hadoop/hbase/ByteBufferedKeyOnlyKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/ByteBufferedKeyOnlyKeyValue.html
@@ -986,6 +986,6 @@ extends 
 
 
-Copyright © 2007–2016 http://www.apache.o

[02/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.ResetableGZIPOutputStream.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.ResetableGZIPOutputStream.html
 
b/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.ResetableGZIPOutputStream.html
index 2d30e4b..c0b1313 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.ResetableGZIPOutputStream.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.ResetableGZIPOutputStream.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.html
 
b/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.html
index fe9ef5d..754728b 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.ReusableGzipOutputStream.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.html
 
b/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.html
index 22135f1..fa55eac 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/compress/class-use/ReusableStreamGzipCodec.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/compress/package-summary.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/compress/package-summary.html 
b/devapidocs/org/apache/hadoop/hbase/io/compress/package-summary.html
index 6b77b66..1ed5783 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/compress/package-summary.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/compress/package-summary.html
@@ -179,6 +179,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/compress/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/compress/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/io/compress/package-tree.html
index e9a9102..dc40acc 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/compress/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/compress/package-tree.html
@@ -181,6 +181,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/compress/package-use.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/compress/package-use.html 
b/devapidocs/org/apache/hadoop/hbase/io/compress/package-use.html
index 9dee846..8eea6a2 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/compress/package-use.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/compress/package-us

[26/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Err.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Err.html 
b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Err.html
index d67d8e0..07b1695 100644
--- a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Err.html
+++ b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Err.html
@@ -266,6 +266,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html 
b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
index 26180af..5022419 100644
--- a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
+++ b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
@@ -266,6 +266,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html 
b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html
index 2bb9354..b9d4d4f 100644
--- a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html
+++ b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html
@@ -266,6 +266,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Unassigned.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Unassigned.html 
b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Unassigned.html
index db8dd78..a682e86 100644
--- a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Unassigned.html
+++ b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.Unassigned.html
@@ -266,6 +266,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SplitLogTask.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.html 
b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.html
index fa55357..79965fc 100644
--- a/devapidocs/org/apache/hadoop/hbase/SplitLogTask.html
+++ b/devapidocs/org/apache/hadoop/hbase/SplitLogTask.html
@@ -626,6 +626,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html 
b/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html
index 1badb2c..628ef68 100644
--- a/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html
+++ b/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html
@@ -299,6 +299,6 @@ extends http://docs.oracle.com/javase/8/docs/api/javax/rmi/ssl/SslRMICl
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html 
b/devapidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html
index 465a1ae..08d8a8d 100644
--- a/devapidocs/org/apache/hadoop/hbase/Ss

[45/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/Append.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Append.html 
b/apidocs/org/apache/hadoop/hbase/client/Append.html
index 5c919d8..d5953c8 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Append.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Append.html
@@ -679,6 +679,6 @@ extends 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncConnection.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
index 69a2244..4c9bd96 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncConnection.html
@@ -289,6 +289,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
index a16afbf..2807331 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
@@ -971,6 +971,6 @@ public interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/AsyncTableRegionLocator.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/AsyncTableRegionLocator.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncTableRegionLocator.html
index f1e7ec3..0d03577 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncTableRegionLocator.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncTableRegionLocator.html
@@ -273,6 +273,6 @@ public interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/Attributes.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Attributes.html 
b/apidocs/org/apache/hadoop/hbase/client/Attributes.html
index e54e08d..15300cc 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Attributes.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Attributes.html
@@ -277,6 +277,6 @@ public interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.ExceptionListener.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.ExceptionListener.html 
b/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.ExceptionListener.html
index a62cfb7..6c72733 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.ExceptionListener.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.ExceptionListener.html
@@ -231,6 +231,6 @@ public static interface Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.html 
b/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.html
index 42188cd..e6773f0 100644
--- a/apidocs/org/apache/hadoop/hbase/client/BufferedMutator.html
+++ b/apidocs/org/apache/hadoop/h

[33/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/coc.html
--
diff --git a/coc.html b/coc.html
index db27a86..8e5e689 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – 
   Code of Conduct Policy
@@ -157,12 +157,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -352,10 +346,10 @@ For flagrant violations requiring a firm response the PMC 
may opt to skip early
 
   
   Copyright ©
2007–2016
-http://www.apache.org/";>The Apache Software 
Foundation.
+https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2016-11-15
+  Last Published: 
2016-11-20
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/cygwin.html
--
diff --git a/cygwin.html b/cygwin.html
index 205abe2..fd21f9c 100644
--- a/cygwin.html
+++ b/cygwin.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Installing Apache HBase (TM) on Windows using 
Cygwin
 
@@ -155,12 +155,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -694,10 +688,10 @@ Now your HBase server is running, start 
coding and build that next
 
   
   Copyright ©
2007–2016
-http://www.apache.org/";>The Apache Software 
Foundation.
+https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2016-11-15
+  Last Published: 
2016-11-20
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/dependencies.html
--
diff --git a/dependencies.html b/dependencies.html
index ef36b43..801b1b0 100644
--- a/dependencies.html
+++ b/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Project Dependencies
 
@@ -155,12 +155,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -539,10 +533,10 @@
 
   
   Copyright ©
2007–2016
-http://www.apache.org/";>The Apache Software 
Foundation.
+https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2016-11-15
+  Last Published: 
2016-11-20
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/dependency-convergence.html
--
diff --git a/dependency-convergence.html b/dependency-convergence.html
index 7ced0b5..2833ace 100644
--- a/dependency-convergence.html
+++ b/dependency-convergence.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Reactor Dependency Convergence
 
@@ -155,12 +155,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -1857,10 +1851,10 @@
 
   
   Copyright ©
2007–2016
-http://www.apache.org/";>The Apache Software 
Foundation.
+https://www.apache.org/";>The Apache Sof

[41/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCompressionCodecException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCompressionCodecException.html
 
b/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCompressionCodecException.html
index c208d03..c9feb3b 100644
--- 
a/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCompressionCodecException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCompressionCodecException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCryptoException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCryptoException.html 
b/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCryptoException.html
index ab70149..0ec8a8f 100644
--- 
a/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCryptoException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/ipc/class-use/UnsupportedCryptoException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/ipc/class-use/WrongVersionException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/ipc/class-use/WrongVersionException.html 
b/apidocs/org/apache/hadoop/hbase/ipc/class-use/WrongVersionException.html
index 27b891b..844c9b4 100644
--- a/apidocs/org/apache/hadoop/hbase/ipc/class-use/WrongVersionException.html
+++ b/apidocs/org/apache/hadoop/hbase/ipc/class-use/WrongVersionException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/ipc/package-summary.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ipc/package-summary.html 
b/apidocs/org/apache/hadoop/hbase/ipc/package-summary.html
index 1637559..c078d22 100644
--- a/apidocs/org/apache/hadoop/hbase/ipc/package-summary.html
+++ b/apidocs/org/apache/hadoop/hbase/ipc/package-summary.html
@@ -263,6 +263,6 @@ This is the hadoop copied local so can fix bugs and make 
hbase-specific optimiza
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/ipc/package-tree.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ipc/package-tree.html 
b/apidocs/org/apache/hadoop/hbase/ipc/package-tree.html
index 565a9cd..40e986b 100644
--- a/apidocs/org/apache/hadoop/hbase/ipc/package-tree.html
+++ b/apidocs/org/apache/hadoop/hbase/ipc/package-tree.html
@@ -189,6 +189,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/ipc/package-use.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ipc/package-use.html 
b/apidocs/org/apache/hadoop/hbase/ipc/package-use.html
index bfb3fff..64d6d2c 100644
--- a/apidocs/org/apache/hadoop/hbase/ipc/package-use.html
+++ b/apidocs/org/apache/hadoop/hbase/ipc/package-use.html
@@ -203,6 +203,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/jetty/package-summary.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/jetty/package-summary.html 
b/apidocs/org/apache/hadoop/hbase/jetty/package-summa

[39/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/regionserver/LeaseException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/regionserver/LeaseException.html 
b/apidocs/org/apache/hadoop/hbase/regionserver/LeaseException.html
index d92dbfe..466c84e 100644
--- a/apidocs/org/apache/hadoop/hbase/regionserver/LeaseException.html
+++ b/apidocs/org/apache/hadoop/hbase/regionserver/LeaseException.html
@@ -295,6 +295,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/regionserver/NoSuchColumnFamilyException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/regionserver/NoSuchColumnFamilyException.html 
b/apidocs/org/apache/hadoop/hbase/regionserver/NoSuchColumnFamilyException.html
index 8377e6e..d431703 100644
--- 
a/apidocs/org/apache/hadoop/hbase/regionserver/NoSuchColumnFamilyException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/regionserver/NoSuchColumnFamilyException.html
@@ -295,6 +295,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerAbortedException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerAbortedException.html
 
b/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerAbortedException.html
index f1f1fc4..cd70ac7 100644
--- 
a/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerAbortedException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerAbortedException.html
@@ -271,6 +271,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerRunningException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerRunningException.html
 
b/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerRunningException.html
index 7910d01..341d8ef 100644
--- 
a/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerRunningException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerRunningException.html
@@ -289,6 +289,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerStoppedException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerStoppedException.html
 
b/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerStoppedException.html
index 1e79113..e1725ac 100644
--- 
a/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerStoppedException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/regionserver/RegionServerStoppedException.html
@@ -271,6 +271,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/regionserver/RowTooBigException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/regionserver/RowTooBigException.html 
b/apidocs/org/apache/hadoop/hbase/regionserver/RowTooBigException.html
index 80f7dd6..c19009d 100644
--- a/apidocs/org/apache/hadoop/hbase/regionserver/RowTooBigException.html
+++ b/apidocs/org/apache/hadoop/hbase/regionserver/RowTooBigException.html
@@ -294,6 +294,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-u

[30/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/KeyValue.KVComparator.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/KeyValue.KVComparator.html 
b/devapidocs/org/apache/hadoop/hbase/KeyValue.KVComparator.html
index 0c98321..2fac067 100644
--- a/devapidocs/org/apache/hadoop/hbase/KeyValue.KVComparator.html
+++ b/devapidocs/org/apache/hadoop/hbase/KeyValue.KVComparator.html
@@ -125,7 +125,7 @@ var activeTableTab = "activeTableTab";
 
 
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static class KeyValue.KVComparator
+public static class KeyValue.KVComparator
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements org.apache.hadoop.io.RawComparator, KeyValue.SamePrefixComparator
 Compare KeyValues.  When we compare KeyValues, we only 
compare the Key
@@ -446,7 +446,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 KVComparator
-public KVComparator()
+public KVComparator()
 Deprecated. 
 
 
@@ -464,7 +464,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 getLegacyKeyComparatorName
-public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getLegacyKeyComparatorName()
+public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getLegacyKeyComparatorName()
 Deprecated. 
 The HFileV2 file format's trailer contains this class name. 
 We reinterpret this and
  instantiate the appropriate comparator.
@@ -481,7 +481,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compare
-public int compare(byte[] l,
+public int compare(byte[] l,
int loff,
int llen,
byte[] r,
@@ -500,7 +500,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareRowKey
-protected int compareRowKey(Cell left,
+protected int compareRowKey(Cell left,
 Cell right)
 Deprecated. 
 Compares the only the user specified portion of a Key.  
This is overridden by MetaComparator.
@@ -519,7 +519,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareFlatKey
-public int compareFlatKey(byte[] left,
+public int compareFlatKey(byte[] left,
   int loffset,
   int llength,
   byte[] right,
@@ -547,7 +547,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareFlatKey
-public int compareFlatKey(byte[] left,
+public int compareFlatKey(byte[] left,
   byte[] right)
 Deprecated. 
 
@@ -558,7 +558,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareKey
-public int compareKey(Cell cell,
+public int compareKey(Cell cell,
   byte[] row,
   int roff,
   int rlen,
@@ -579,7 +579,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareOnlyKeyPortion
-public int compareOnlyKeyPortion(Cell left,
+public int compareOnlyKeyPortion(Cell left,
  Cell right)
 Deprecated. 
 
@@ -590,7 +590,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compare
-public int compare(Cell left,
+public int compare(Cell left,
Cell right)
 Deprecated. 
 Compares the Key of a cell -- with fields being more 
significant in this order:
@@ -607,7 +607,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareTimestamps
-public int compareTimestamps(Cell left,
+public int compareTimestamps(Cell left,
  Cell right)
 Deprecated. 
 
@@ -618,7 +618,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareRows
-public int compareRows(Cell left,
+public int compareRows(Cell left,
Cell right)
 Deprecated. 
 
@@ -636,7 +636,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareRows
-public int compareRows(byte[] left,
+public int compareRows(byte[] left,
int loffset,
int llength,
byte[] right,
@@ -663,7 +663,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareColumns
-int compareColumns(Cell left,
+int compareColumns(Cell left,
short lrowlength,
Cell right,
short rrowlength)
@@ -676,7 +676,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareColumns
-protected int compareColumns(byte[] left,
+protected int compareColumns(byte[] left,
  int loffset,
  int llength,
  int lfamilylength,
@@ -693,7 +693,7 @@ implements org.apache.hadoop.io.RawComparator<
 
 compareTimestamps
-static int compareT

[35/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/book.html
--
diff --git a/book.html b/book.html
index 5854552..bfc166d 100644
--- a/book.html
+++ b/book.html
@@ -13719,7 +13719,7 @@ This group is the last one considered during 
evictions.
 
 
 
-For more information, see the http://hbase.apache.org/xref/org/apache/hadoop/hbase/io/hfile/LruBlockCache.html";>LruBlockCache
 source
+For more information, see the LruBlockCache source
 
 
 
@@ -15103,7 +15103,7 @@ will be flushed out to disk to reduce the number of 
logs in the WAL.
 Matteo Bertozzi has also put up a helpful description, http://th30z.blogspot.com/2011/02/hbase-io-hfile.html?spref=tw";>HBase 
I/O: HFile.
 
 
-For more information, see the http://hbase.apache.org/xref/org/apache/hadoop/hbase/io/hfile/HFile.html";>HFile
 source code.
+For more information, see the HFile source code.
 Also see HBase file format with inline blocks (version 
2) for information about the HFile v2 format that was included in 0.92.
 
 
@@ -15149,7 +15149,7 @@ The blocksize is configured on a per-ColumnFamily 
basis.
 For more information on compression, see Compression 
and Data Block Encoding In HBase.
 
 
-For more information on blocks, see the http://hbase.apache.org/xref/org/apache/hadoop/hbase/io/hfile/HFileBlock.html";>HFileBlock
 source code.
+For more information on blocks, see the HFileBlock source code.
 
 
 
@@ -15208,7 +15208,7 @@ KeyValue wraps a byte array and takes offsets and 
lengths into the passed array
 
 KeyValue instances are not split across blocks.
 For example, if there is an 8 MB KeyValue, even if the block-size is 64kb this 
KeyValue will be read in as a coherent block.
-For more information, see the http://hbase.apache.org/xref/org/apache/hadoop/hbase/KeyValue.html";>KeyValue
 source code.
+For more information, see the KeyValue source code.
 
 
 Example
@@ -15412,7 +15412,7 @@ With the ExploringCompactionPolicy, major compactions 
happen much less frequentl
 You can also use ExploringCompactionPolicy along with Experimental: Stripe Compactions.
 
 
-The logic of this policy can be examined in http://hbase.apache.org/xref/org/apache/hadoop/hbase/regionserver/compactions/ExploringCompactionPolicy.html";>hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/ExploringCompactionPolicy.java.
+The logic of this policy can be examined in 
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/ExploringCompactionPolicy.java.
 The following is a walk-through of the logic of the 
ExploringCompactionPolicy.
 
 
@@ -15743,7 +15743,7 @@ You can still use this behavior if you enable 
-To understand the core algorithm for StoreFile selection, there is some 
ASCII-art in the http://hbase.apache.org/xref/org/apache/hadoop/hbase/regionserver/Store.html#836";>Store
 source code that will serve as useful reference.
+To understand the core algorithm for StoreFile selection, there is some 
ASCII-art in the Store source code that will serve as useful reference.
 
 
 It has been copied below:
@@ -20222,10 +20222,7 @@ admin.enableTable(tableName);
 90. Examples
 
 
-HBase ships examples for Observer Coprocessor in
-http://hbase.apache.org/xref/org/apache/hadoop/hbase/coprocessor/example/ZooKeeperScanPolicyObserver.html";>ZooKeeperScanPolicyObserver
-and for Endpoint Coprocessor in
-http://hbase.apache.org/xref/org/apache/hadoop/hbase/coprocessor/example/RowCountEndpoint.html";>RowCountEndpoint
+HBase ships examples for Observer Coprocessor.
 
 
 A more detailed example is given below.
@@ -31240,7 +31237,7 @@ artifacts using mvn clean site site:stage, 
check out the asf-
 Remove previously-generated content using the following command:
 
 
-rm -rf rm -rf *apidocs* *xref* *book* *.html *.pdf* css js
+rm -rf rm -rf *apidocs* *book* *.html *.pdf* css js
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/bulk-loads.html
--
diff --git a/bulk-loads.html b/bulk-loads.html
index 5d0e7dc..4333d7e 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase –  
   Bulk Loads in Apache HBase (TM)
@@ -157,12 +157,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -326,10 +320,10 @@ under the License. -->
 
   
   Copyright ©
2007–2016
-http://www.apache.org/";>The Apache Software 
Foundation.
+https://www.apache.org/";>The Apache Software 
Foundation.

[47/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/class-use/RegionLoad.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/RegionLoad.html 
b/apidocs/org/apache/hadoop/hbase/class-use/RegionLoad.html
index 90a9cca..08182f6 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/RegionLoad.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/RegionLoad.html
@@ -86,6 +86,12 @@
 org.apache.hadoop.hbase
  
 
+
+org.apache.hadoop.hbase.client
+
+Provides HBase Client
+
+
 
 
 
@@ -109,6 +115,33 @@
 
 
 
+
+
+
+Uses of RegionLoad in org.apache.hadoop.hbase.client
+
+Methods in org.apache.hadoop.hbase.client
 that return types with arguments of type RegionLoad 
+
+Modifier and Type
+Method and Description
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+Admin.getRegionLoad(ServerName sn)
+Get RegionLoad of all regions hosted on a 
regionserver.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+Admin.getRegionLoad(ServerName sn,
+ TableName tableName)
+Get RegionLoad of all regions hosted on a 
regionserver for a table.
+
+
+
+
+
 
 
 
@@ -160,6 +193,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/class-use/RegionTooBusyException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/class-use/RegionTooBusyException.html 
b/apidocs/org/apache/hadoop/hbase/class-use/RegionTooBusyException.html
index 121c91d..2ed7920 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/RegionTooBusyException.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/RegionTooBusyException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/class-use/RetryImmediatelyException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/class-use/RetryImmediatelyException.html 
b/apidocs/org/apache/hadoop/hbase/class-use/RetryImmediatelyException.html
index e6b4706..8730127 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/RetryImmediatelyException.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/RetryImmediatelyException.html
@@ -162,6 +162,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html
index a9f65b4..7344e94 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html
@@ -196,6 +196,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/class-use/ServerLoad.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ServerLoad.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ServerLoad.html
index ae1848d..0b631c7 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ServerLoad.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ServerLoad.html
@@ -192,6 +192,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
index bbf9a96..9ba715b

[42/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/ByteBufferOutputStream.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/ByteBufferOutputStream.html 
b/apidocs/org/apache/hadoop/hbase/io/ByteBufferOutputStream.html
index 77fba4d..66df2f4 100644
--- a/apidocs/org/apache/hadoop/hbase/io/ByteBufferOutputStream.html
+++ b/apidocs/org/apache/hadoop/hbase/io/ByteBufferOutputStream.html
@@ -596,6 +596,6 @@ implements org.apache.hadoop.hbase.io.ByteBufferWriter
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.Comparator.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.Comparator.html 
b/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.Comparator.html
index 2d5d4a7..e45e6d9 100644
--- a/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.Comparator.html
+++ b/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.Comparator.html
@@ -318,6 +318,6 @@ extends org.apache.hadoop.io.WritableComparator
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.html 
b/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.html
index f9c313c..6c3d79f 100644
--- a/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.html
+++ b/apidocs/org/apache/hadoop/hbase/io/ImmutableBytesWritable.html
@@ -652,6 +652,6 @@ public int Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/TimeRange.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/TimeRange.html 
b/apidocs/org/apache/hadoop/hbase/io/TimeRange.html
index a70c6dc..82ba027 100644
--- a/apidocs/org/apache/hadoop/hbase/io/TimeRange.html
+++ b/apidocs/org/apache/hadoop/hbase/io/TimeRange.html
@@ -621,6 +621,6 @@ public Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-summary.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-summary.html 
b/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-summary.html
index 81dbcc1..26de0fd 100644
--- a/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-summary.html
+++ b/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-summary.html
@@ -119,6 +119,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-tree.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-tree.html 
b/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-tree.html
index 6b99a33..0a72dc4 100644
--- a/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-tree.html
+++ b/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-tree.html
@@ -123,6 +123,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-use.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-use.html 
b/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-use.html
index 73f8835..4a34607 100644
--- a/apidocs/org/apache/hadoop/hbase/io/asyncfs/package-use.html
+++ b/apidocs/o

[14/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientAsyncPrefetchScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientAsyncPrefetchScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientAsyncPrefetchScanner.html
index 4658417..b832bcb 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientAsyncPrefetchScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientAsyncPrefetchScanner.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientIdGenerator.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientIdGenerator.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientIdGenerator.html
index 82c40c5..236391a 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientIdGenerator.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientIdGenerator.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientScanner.html
index b1a84a1..8b5d13b 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientScanner.html
@@ -189,6 +189,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientServiceCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientServiceCallable.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientServiceCallable.html
index 1c20e1d..12d8c3e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientServiceCallable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientServiceCallable.html
@@ -229,6 +229,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSideRegionScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSideRegionScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSideRegionScanner.html
index a790da1..0ca419c 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSideRegionScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSideRegionScanner.html
@@ -200,6 +200,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSimpleScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSimpleScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSimpleScanner.html
index ca3a420..a632b77 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSimpleScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ClientSimpleScanner.html
@@ -177,6 +177,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

[09/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.html
 
b/devapidocs/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.html
index 2d134fb..4b34023 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.html
@@ -1063,6 +1063,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coordination/class-use/BaseCoordinatedStateManager.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/BaseCoordinatedStateManager.html
 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/BaseCoordinatedStateManager.html
index 81e2bea..0edd9a6 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/BaseCoordinatedStateManager.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/BaseCoordinatedStateManager.html
@@ -219,6 +219,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.SplitLogManagerDetails.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.SplitLogManagerDetails.html
 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.SplitLogManagerDetails.html
index 428a64e..188c655 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.SplitLogManagerDetails.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.SplitLogManagerDetails.html
@@ -198,6 +198,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.html
 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.html
index 21a5eb1..c11a0f9 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogManagerCoordination.html
@@ -217,6 +217,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.SplitTaskDetails.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.SplitTaskDetails.html
 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.SplitTaskDetails.html
index 84b4a6d..50933ca 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.SplitTaskDetails.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.SplitTaskDetails.html
@@ -228,6 +228,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWorkerCoordination.html
 
b/devapidocs/org/apache/hadoop/hbase/coordination/class-use/SplitLogWork

[13/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiResponse.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiResponse.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiResponse.html
index 7ba4d81..44c0a23 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiResponse.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiResponse.html
@@ -180,6 +180,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiServerCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiServerCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiServerCallable.html
index 7080b0a..4c85596 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiServerCallable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/MultiServerCallable.html
@@ -166,6 +166,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
index 39581b9..223e4da 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
@@ -1280,6 +1280,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryableCallerInterceptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryableCallerInterceptor.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryableCallerInterceptor.html
index 70b7db8..f5557c3 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryableCallerInterceptor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryableCallerInterceptor.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryingInterceptorContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryingInterceptorContext.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryingInterceptorContext.html
index 1100ea1..ed9e5fc 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryingInterceptorContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NoOpRetryingInterceptorContext.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/class-use/NoServerForRegionException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NoServerForRegionException.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NoServerForRegionException.html
index 63a2012..791d009 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NoServerForRegionException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NoServerForRegionException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software F

[06/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/TimeoutIOException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/TimeoutIOException.html
 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/TimeoutIOException.html
index 8df0532..945852f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/TimeoutIOException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/TimeoutIOException.html
@@ -129,7 +129,7 @@
 
 
 (package private) long
-SyncFuture.get(long timeout) 
+SyncFuture.get(long timeoutNs) 
 
 
 
@@ -185,6 +185,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnexpectedStateException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnexpectedStateException.html
 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnexpectedStateException.html
index 9bb0c53..e6f3ced 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnexpectedStateException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnexpectedStateException.html
@@ -168,6 +168,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnknownProtocolException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnknownProtocolException.html
 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnknownProtocolException.html
index 5256651..6dad490 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnknownProtocolException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/UnknownProtocolException.html
@@ -163,6 +163,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/exceptions/package-summary.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/exceptions/package-summary.html 
b/devapidocs/org/apache/hadoop/hbase/exceptions/package-summary.html
index 12a24a0..935989d 100644
--- a/devapidocs/org/apache/hadoop/hbase/exceptions/package-summary.html
+++ b/devapidocs/org/apache/hadoop/hbase/exceptions/package-summary.html
@@ -258,6 +258,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/exceptions/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/exceptions/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/exceptions/package-tree.html
index 8387c75..d6a9d20 100644
--- a/devapidocs/org/apache/hadoop/hbase/exceptions/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/exceptions/package-tree.html
@@ -190,6 +190,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/exceptions/package-use.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/exceptions/package-use.html 
b/devapidocs/org/apache/hadoop/hbase/exceptions/package-use.html
index 89c8755..e09ac99 100644
--- a/devapidocs/org/apache/hadoop/hbase/exceptions/package-use.html
+++ b/devapidocs/org/apache/hadoop/hbase/exceptions/package-use.html
@@ -508,6 +508,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/d

[22/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/classification/tools/package-tree.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/classification/tools/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/classification/tools/package-tree.html
index a64d35d..3647210 100644
--- a/devapidocs/org/apache/hadoop/hbase/classification/tools/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/classification/tools/package-tree.html
@@ -137,6 +137,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/classification/tools/package-use.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/classification/tools/package-use.html 
b/devapidocs/org/apache/hadoop/hbase/classification/tools/package-use.html
index c26e236..3bdfa17 100644
--- a/devapidocs/org/apache/hadoop/hbase/classification/tools/package-use.html
+++ b/devapidocs/org/apache/hadoop/hbase/classification/tools/package-use.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AbstractClientScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/AbstractClientScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/AbstractClientScanner.html
index 8dd3481..7b41341 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AbstractClientScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AbstractClientScanner.html
@@ -403,6 +403,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.ResponseType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.ResponseType.html 
b/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.ResponseType.html
index aa98682..9b51f72 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.ResponseType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.ResponseType.html
@@ -341,6 +341,6 @@ not permitted.)
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.html 
b/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.html
index ddf9073..ef5abcd 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AbstractResponse.html
@@ -292,6 +292,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Action.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Action.html 
b/devapidocs/org/apache/hadoop/hbase/client/Action.html
index 0c816d2..34e04e1 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Action.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Action.html
@@ -491,6 +491,6 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Comparabl
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 



[36/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
index 9454555..56d4616 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
@@ -42,1763 +42,1783 @@
 034import 
org.apache.hadoop.hbase.NamespaceDescriptor;
 035import 
org.apache.hadoop.hbase.NamespaceNotFoundException;
 036import 
org.apache.hadoop.hbase.ProcedureInfo;
-037import 
org.apache.hadoop.hbase.ServerName;
-038import 
org.apache.hadoop.hbase.TableExistsException;
-039import 
org.apache.hadoop.hbase.TableName;
-040import 
org.apache.hadoop.hbase.TableNotFoundException;
-041import 
org.apache.hadoop.hbase.classification.InterfaceAudience;
-042import 
org.apache.hadoop.hbase.classification.InterfaceStability;
-043import 
org.apache.hadoop.hbase.client.security.SecurityCapability;
-044import 
org.apache.hadoop.hbase.ipc.CoprocessorRpcChannel;
-045import 
org.apache.hadoop.hbase.quotas.QuotaFilter;
-046import 
org.apache.hadoop.hbase.quotas.QuotaRetriever;
-047import 
org.apache.hadoop.hbase.quotas.QuotaSettings;
-048import 
org.apache.hadoop.hbase.regionserver.wal.FailedLogCloseException;
-049import 
org.apache.hadoop.hbase.snapshot.HBaseSnapshotException;
-050import 
org.apache.hadoop.hbase.snapshot.RestoreSnapshotException;
-051import 
org.apache.hadoop.hbase.snapshot.SnapshotCreationException;
-052import 
org.apache.hadoop.hbase.snapshot.UnknownSnapshotException;
-053import 
org.apache.hadoop.hbase.util.Pair;
-054
-055/**
-056 * The administrative API for HBase. 
Obtain an instance from an {@link Connection#getAdmin()} and
-057 * call {@link #close()} afterwards.
-058 * 

Admin can be used to create, drop, list, enable and disable tables, add and drop table -059 * column families and other administrative operations. -060 * -061 * @see ConnectionFactory -062 * @see Connection -063 * @see Table -064 * @since 0.99.0 -065 */ -066@InterfaceAudience.Public -067@InterfaceStability.Evolving -068public interface Admin extends Abortable, Closeable { -069 int getOperationTimeout(); -070 -071 @Override -072 void abort(String why, Throwable e); -073 -074 @Override -075 boolean isAborted(); -076 -077 /** -078 * @return Connection used by this object. -079 */ -080 Connection getConnection(); -081 -082 /** -083 * @param tableName Table to check. -084 * @return True if table exists already. -085 * @throws IOException -086 */ -087 boolean tableExists(final TableName tableName) throws IOException; -088 -089 /** -090 * List all the userspace tables. -091 * -092 * @return - returns an array of HTableDescriptors -093 * @throws IOException if a remote or network exception occurs -094 */ -095 HTableDescriptor[] listTables() throws IOException; -096 -097 /** -098 * List all the userspace tables matching the given pattern. -099 * -100 * @param pattern The compiled regular expression to match against -101 * @return - returns an array of HTableDescriptors -102 * @throws IOException if a remote or network exception occurs -103 * @see #listTables() -104 */ -105 HTableDescriptor[] listTables(Pattern pattern) throws IOException; -106 -107 /** -108 * List all the userspace tables matching the given regular expression. -109 * -110 * @param regex The regular expression to match against -111 * @return - returns an array of HTableDescriptors -112 * @throws IOException if a remote or network exception occurs -113 * @see #listTables(java.util.regex.Pattern) -114 */ -115 HTableDescriptor[] listTables(String regex) throws IOException; -116 -117 /** -118 * List all the tables matching the given pattern. -119 * -120 * @param pattern The compiled regular expression to match against -121 * @param includeSysTables False to match only against userspace tables -122 * @return - returns an array of HTableDescriptors -123 * @throws IOException if a remote or network exception occurs -124 * @see #listTables() -125 */ -126 HTableDescriptor[] listTables(Pattern pattern, boolean includeSysTables) -127 throws IOException; -128 -129 /** -130 * List all the tables matching the given pattern. -131 * -132 * @param regex The regular expression to match against -133 * @param includeSysTables False to match only against userspace tables -134 * @return - returns an array of HTableDescriptors -135 * @throws IOException if a remote or network exception occurs -136 * @see #listTables(java.util.regex.Pattern, boolean) -137 */ -138 HTableDescriptor[] listTables(String regex, boolean includeSysTables) -139 throws IOException; -140 -141 /** -142 * List all of the names of userspace tables. -143 * -144 * @return


[29/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/KeyValue.Type.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/KeyValue.Type.html 
b/devapidocs/org/apache/hadoop/hbase/KeyValue.Type.html
index 76775eb..ad12687 100644
--- a/devapidocs/org/apache/hadoop/hbase/KeyValue.Type.html
+++ b/devapidocs/org/apache/hadoop/hbase/KeyValue.Type.html
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-public static enum KeyValue.Type
+public static enum KeyValue.Type
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
 Key type.
  Has space for other key types to be added later.  Cannot rely on
@@ -261,7 +261,7 @@ the order they are declared.
 
 
 Minimum
-public static final KeyValue.Type Minimum
+public static final KeyValue.Type Minimum
 
 
 
@@ -270,7 +270,7 @@ the order they are declared.
 
 
 Put
-public static final KeyValue.Type Put
+public static final KeyValue.Type Put
 
 
 
@@ -279,7 +279,7 @@ the order they are declared.
 
 
 Delete
-public static final KeyValue.Type Delete
+public static final KeyValue.Type Delete
 
 
 
@@ -288,7 +288,7 @@ the order they are declared.
 
 
 DeleteFamilyVersion
-public static final KeyValue.Type DeleteFamilyVersion
+public static final KeyValue.Type DeleteFamilyVersion
 
 
 
@@ -297,7 +297,7 @@ the order they are declared.
 
 
 DeleteColumn
-public static final KeyValue.Type DeleteColumn
+public static final KeyValue.Type DeleteColumn
 
 
 
@@ -306,7 +306,7 @@ the order they are declared.
 
 
 DeleteFamily
-public static final KeyValue.Type DeleteFamily
+public static final KeyValue.Type DeleteFamily
 
 
 
@@ -315,7 +315,7 @@ the order they are declared.
 
 
 Maximum
-public static final KeyValue.Type Maximum
+public static final KeyValue.Type Maximum
 
 
 
@@ -332,7 +332,7 @@ the order they are declared.
 
 
 code
-private final byte code
+private final byte code
 
 
 
@@ -341,7 +341,7 @@ the order they are declared.
 
 
 codeArray
-private static KeyValue.Type[] codeArray
+private static KeyValue.Type[] codeArray
 
 
 
@@ -358,7 +358,7 @@ the order they are declared.
 
 
 values
-public static KeyValue.Type[] values()
+public static KeyValue.Type[] 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:
@@ -378,7 +378,7 @@ for (KeyValue.Type c : KeyValue.Type.values())
 
 
 valueOf
-public static KeyValue.Type valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public static KeyValue.Type valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">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 
@@ -400,7 +400,7 @@ not permitted.)
 
 
 getCode
-public byte getCode()
+public byte getCode()
 
 
 
@@ -409,7 +409,7 @@ not permitted.)
 
 
 codeToType
-public static KeyValue.Type codeToType(byte b)
+public static KeyValue.Type codeToType(byte b)
 Cannot rely on enum ordinals . They change if item is 
removed or moved.
  Do our own codes.
 
@@ -489,6 +489,6 @@ not permitted.)
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 



[49/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apache_hbase_reference_guide.pdf
--
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index f0f63ed..e9bb9e2 100644
--- a/apache_hbase_reference_guide.pdf
+++ b/apache_hbase_reference_guide.pdf
@@ -5,16 +5,16 @@
 /Author (Apache HBase Team)
 /Creator (Asciidoctor PDF 1.5.0.alpha.6, based on Prawn 1.2.1)
 /Producer (Apache HBase Team)
-/CreationDate (D:20161115143527+00'00')
-/ModDate (D:20161115143527+00'00')
+/CreationDate (D:20161120142955+00'00')
+/ModDate (D:20161120142955+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 25 0 R
-/Outlines 4060 0 R
-/PageLabels 4267 0 R
+/Outlines 4049 0 R
+/PageLabels 4256 0 R
 /PageMode /UseOutlines
 /ViewerPreferences [/FitWindow]
 >>
@@ -22,7 +22,7 @@ endobj
 3 0 obj
 << /Type /Pages
 /Count 675
-/Kids [7 0 R 13 0 R 15 0 R 17 0 R 19 0 R 21 0 R 23 0 R 39 0 R 43 0 R 47 0 R 58 
0 R 62 0 R 64 0 R 66 0 R 68 0 R 75 0 R 78 0 R 80 0 R 85 0 R 88 0 R 90 0 R 92 0 
R 101 0 R 107 0 R 112 0 R 114 0 R 135 0 R 141 0 R 148 0 R 150 0 R 154 0 R 157 0 
R 167 0 R 175 0 R 191 0 R 195 0 R 199 0 R 201 0 R 205 0 R 211 0 R 213 0 R 215 0 
R 217 0 R 219 0 R 222 0 R 228 0 R 231 0 R 233 0 R 235 0 R 237 0 R 239 0 R 241 0 
R 244 0 R 247 0 R 251 0 R 253 0 R 255 0 R 257 0 R 259 0 R 261 0 R 263 0 R 265 0 
R 272 0 R 274 0 R 276 0 R 278 0 R 280 0 R 285 0 R 290 0 R 295 0 R 298 0 R 302 0 
R 317 0 R 327 0 R 333 0 R 344 0 R 354 0 R 359 0 R 361 0 R 363 0 R 374 0 R 379 0 
R 383 0 R 388 0 R 392 0 R 403 0 R 415 0 R 429 0 R 439 0 R 441 0 R 443 0 R 448 0 
R 458 0 R 471 0 R 481 0 R 485 0 R 488 0 R 492 0 R 496 0 R 499 0 R 502 0 R 504 0 
R 507 0 R 511 0 R 513 0 R 517 0 R 521 0 R 527 0 R 531 0 R 533 0 R 539 0 R 541 0 
R 545 0 R 553 0 R 555 0 R 558 0 R 562 0 R 565 0 R 568 0 R 583 0 R 590 0 R 597 0 
R 608 0 R 615 0 R 623 0 R 631 0 R 634 0
  R 638 0 R 641 0 R 652 0 R 660 0 R 666 0 R 671 0 R 675 0 R 677 0 R 691 0 R 703 
0 R 709 0 R 715 0 R 718 0 R 727 0 R 735 0 R 739 0 R 744 0 R 750 0 R 752 0 R 754 
0 R 756 0 R 764 0 R 773 0 R 777 0 R 785 0 R 793 0 R 799 0 R 803 0 R 809 0 R 813 
0 R 819 0 R 827 0 R 829 0 R 833 0 R 838 0 R 845 0 R 848 0 R 855 0 R 864 0 R 869 
0 R 871 0 R 874 0 R 878 0 R 883 0 R 886 0 R 898 0 R 902 0 R 907 0 R 915 0 R 920 
0 R 924 0 R 928 0 R 930 0 R 934 0 R 936 0 R 940 0 R 942 0 R 945 0 R 949 0 R 953 
0 R 958 0 R 963 0 R 966 0 R 968 0 R 975 0 R 979 0 R 984 0 R 997 0 R 1001 0 R 
1005 0 R 1010 0 R 1012 0 R 1021 0 R 1024 0 R 1029 0 R 1032 0 R 1041 0 R 1044 0 
R 1050 0 R 1057 0 R 1060 0 R 1062 0 R 1071 0 R 1073 0 R 1075 0 R 1078 0 R 1080 
0 R 1082 0 R 1084 0 R 1086 0 R 1088 0 R 1091 0 R 1094 0 R 1099 0 R 1102 0 R 
1104 0 R 1106 0 R 1108 0 R 1113 0 R 1122 0 R 1125 0 R 1127 0 R 1129 0 R 1134 0 
R 1136 0 R 1139 0 R 1141 0 R 1143 0 R 1145 0 R 1148 0 R 1153 0 R 1159 0 R 1166 
0 R 1171 0 R 1185 0 R 1196 0 R 1200 0 R 1215 0 R 
 1224 0 R 1238 0 R 1242 0 R 1252 0 R 1265 0 R 1269 0 R 1281 0 R 1290 0 R 1298 0 
R 1302 0 R 1311 0 R 1316 0 R 1320 0 R 1326 0 R 1332 0 R 1339 0 R 1347 0 R 1349 
0 R 1361 0 R 1363 0 R 1368 0 R 1372 0 R 1377 0 R 1387 0 R 1393 0 R 1399 0 R 
1401 0 R 1403 0 R 1415 0 R 1422 0 R 1432 0 R 1437 0 R 1451 0 R 1459 0 R 1463 0 
R 1472 0 R 1481 0 R 1489 0 R 1495 0 R 1499 0 R 1502 0 R 1504 0 R 1513 0 R 1516 
0 R 1523 0 R 1527 0 R 1530 0 R 1539 0 R 1543 0 R 1546 0 R 1548 0 R 1557 0 R 
1564 0 R 1570 0 R 1575 0 R 1579 0 R 1582 0 R 1588 0 R 1593 0 R 1598 0 R 1600 0 
R 1602 0 R 1605 0 R 1607 0 R 1615 0 R 1618 0 R 1624 0 R 1631 0 R 1635 0 R 1640 
0 R 1643 0 R 1645 0 R 1650 0 R 1653 0 R 1655 0 R 1657 0 R 1659 0 R 1665 0 R 
1675 0 R 1677 0 R 1679 0 R 1681 0 R 1683 0 R 1686 0 R 1688 0 R 1690 0 R 1692 0 
R 1695 0 R 1697 0 R 1699 0 R 1701 0 R 1705 0 R 1709 0 R 1718 0 R 1720 0 R 1722 
0 R 1724 0 R 1726 0 R 1732 0 R 1734 0 R 1739 0 R 1741 0 R 1743 0 R 1750 0 R 
1755 0 R 1759 0 R 1763 0 R 1766 0 R 1769 0 R 1774 0 R 1776 0 
 R 1779 0 R 1781 0 R 1783 0 R 1785 0 R 1789 0 R 1791 0 R 1795 0 R 1797 0 R 1799 
0 R 1801 0 R 1803 0 R 1810 0 R 1813 0 R 1818 0 R 1820 0 R 1822 0 R 1824 0 R 
1826 0 R 1834 0 R 1844 0 R 1847 0 R 1863 0 R 1878 0 R 1882 0 R 1887 0 R 1892 0 
R 1895 0 R 1900 0 R 1902 0 R 1909 0 R 1911 0 R 1914 0 R 1916 0 R 1918 0 R 1920 
0 R 1922 0 R 1926 0 R 1928 0 R 1936 0 R 1944 0 R 1950 0 R 1961 0 R 1975 0 R 
1988 0 R 2005 0 R 2009 0 R 2011 0 R 2015 0 R 2032 0 R 2040 0 R 2047 0 R 2056 0 
R 2061 0 R 2070 0 R 2081 0 R 2087 0 R 2096 0 R 2109 0 R 2126 0 R 2138 0 R 2141 
0 R 2150 0 R 2165 0 R 2172 0 R 2175 0 R 2180 0 R 2185 0 R 2195 0 R 2203 0 R 
2206 0 R 2208 0 R 2212 0 R 2227 0 R 2236 0 R 2241 0 R 2245 0 R 2248 0 R 2250 0 
R 2252 0 R 2254 0 R 2256 0 R 2261 0 R 2263 0 R 2273 0 R 2283 0 R 2290 0 R 2302 
0 R 2307 0 R 2311 0 R 2324 0 R 2331 0 R 2337 0 R 2339 0 R 2350 0 R 2357 0 R 
2368 0 R 2372 0 R 2381 0 R 2387 0 R 2397 0 R 2406 0 R 2414 0 R 2420 0 R 2425 0 
R 2430 0 R 2433 0 R 2435 0 R 2441 0 R 2445 0 R 2449 0 R 2455 
 0 R 2462 0 R 2467 0 R 24

[25/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
index 8569dc5..e02faca 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
@@ -305,87 +305,64 @@
 
 
 
-BalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+BalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
 int handlerCount,
-int numQueues,
+int maxQueueLength,
+PriorityFunction priority,
 org.apache.hadoop.conf.Configuration conf,
-Abortable abortable,
-http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">ClassBlockingQueue> queueClass,
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in 
java.lang">Object... initargs) 
+Abortable abortable) 
 
 
-BalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+BalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
 int handlerCount,
-int numQueues,
+http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String callQueueType,
 int maxQueueLength,
+PriorityFunction priority,
 org.apache.hadoop.conf.Configuration conf,
 Abortable abortable) 
 
 
-FastPathBalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+FastPathBalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
 int handlerCount,
-int numCallQueues,
+int maxQueueLength,
+PriorityFunction priority,
 org.apache.hadoop.conf.Configuration conf,
-Abortable abortable,
-http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">ClassBlockingQueue> queueClass,
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in 
java.lang">Object... args) 
+Abortable abortable) 
 
 
-FastPathBalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+FastPathBalancedQueueRpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
 int handlerCount,
-int numQueues,
+http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String callQueueType,
 int maxQueueLength,
+PriorityFunction priority,
 org.apache.hadoop.conf.Configuration conf,
 Abortable abortable) 
 
 
-RpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+RpcExecutor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
int handlerCount,
+   int maxQueueLength,
+   

[52/52] hbase-site git commit: Empty commit

2016-11-21 Thread stack
Empty commit


Project: http://git-wip-us.apache.org/repos/asf/hbase-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase-site/commit/614a1599
Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/614a1599
Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/614a1599

Branch: refs/heads/asf-site
Commit: 614a1599a9e010780ce0ee5efda709a695039c37
Parents: d023c66
Author: Michael Stack 
Authored: Mon Nov 21 09:53:16 2016 -0800
Committer: Michael Stack 
Committed: Mon Nov 21 09:53:16 2016 -0800

--

--




[01/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 7b6041471 -> 614a1599a


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/io/encoding/RowIndexSeekerV1.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/RowIndexSeekerV1.html 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/RowIndexSeekerV1.html
index 006282a..a86a299 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/encoding/RowIndexSeekerV1.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/encoding/RowIndexSeekerV1.html
@@ -693,6 +693,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 



[50/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/acid-semantics.html
--
diff --git a/acid-semantics.html b/acid-semantics.html
index 8181335..6f763d2 100644
--- a/acid-semantics.html
+++ b/acid-semantics.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase –  
   Apache HBase (TM) ACID Properties
@@ -157,12 +157,6 @@
 Developer API (Test)
 
   
-X-Ref
-
-  
-X-Ref (Test)
-
-  
 http://abloz.com/hbase/book.html";  
target="_blank" 
title="中文参考指南(单页)">中文参考指南(单页)
 
   
@@ -621,10 +615,10 @@ under the License. -->
 
   
   Copyright ©
2007–2016
-http://www.apache.org/";>The Apache Software 
Foundation.
+https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2016-11-15
+  Last Published: 
2016-11-20
 
 
 



[07/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.EnvironmentPriorityComparator.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.EnvironmentPriorityComparator.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.EnvironmentPriorityComparator.html
index 8691c06..4f80cd9 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.EnvironmentPriorityComparator.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.EnvironmentPriorityComparator.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.html
index 8c039a4..d89a3aa 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorHost.html
@@ -217,6 +217,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorService.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorService.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorService.html
index dc6da1f..7243f5e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorService.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/CoprocessorService.html
@@ -314,6 +314,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/EndpointObserver.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/EndpointObserver.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/EndpointObserver.html
index b01d5fb..b77424d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/EndpointObserver.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/EndpointObserver.html
@@ -186,6 +186,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
index eec5759..f4d04e2 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
@@ -4234,6 +4234,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterObserver.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterObserver.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterObserver.html
index f3ecf02..1d58407 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterObserver.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterObserver.html
@@ -261,6 +261,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.

[21/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

2016-11-21 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Admin.html 
b/devapidocs/org/apache/hadoop/hbase/client/Admin.html
index 5884ea8..b4384e1 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Admin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Admin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":38,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":38,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":38,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":38,"i119":6,"i120":3
 
8,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":6,"i147":6,"i148":6,"i149":6,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":6,"i156":6,"i157":6,"i158":6};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":38,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":38,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":38,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i120":38
 
,"i121":6,"i122":38,"i123":6,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":6,"i147":6,"i148":6,"i149":6,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":6,"i156":6,"i157":6,"i158":6,"i159":6,"i160":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
  @InterfaceStability.Evolving
-public interface Admin
+public interface Admin
 extends Abortable, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 The administrative API for HBase. Obtain an instance from 
an Connection.getAdmin()
 and
  call close()
 afterwards.
@@ -644,66 +644,79 @@ extends 
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+getRegionLoad(ServerName sn)
+Get RegionLoad of all regions hosted on a 
regionserver.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+getRegionLoad(ServerName sn,
+ TableName tableName)
+Get RegionLoad of all regions hosted on a 
regionserver for a table.
+
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 getSecurityCapabilities()
 Return the set of supported security capabilities.
 
 
-
+
 HTableDescriptor
 getTableDescriptor(TableName tableName)
 Method for getting the tableDescriptor
 
 
-
+
 HTableDescriptor[]
 getTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List[04/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/AdminAuthorizedServlet.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/AdminAuthorizedServlet.html 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/AdminAuthorizedServlet.html
index c7727ca..21048af 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/AdminAuthorizedServlet.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/AdminAuthorizedServlet.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/ClickjackingPreventionFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/ClickjackingPreventionFilter.html
 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/ClickjackingPreventionFilter.html
index ded601d..1ee1a0f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/ClickjackingPreventionFilter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/ClickjackingPreventionFilter.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterContainer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterContainer.html 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterContainer.html
index 4ea68a4..915f410 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterContainer.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterContainer.html
@@ -209,6 +209,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterInitializer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterInitializer.html 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterInitializer.html
index d7e2341..596d97d 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterInitializer.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/class-use/FilterInitializer.html
@@ -195,6 +195,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/HtmlQuoting.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/http/class-use/HtmlQuoting.html 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/HtmlQuoting.html
index fb9fd3b..556acb9 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/class-use/HtmlQuoting.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/class-use/HtmlQuoting.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/HttpConfig.Policy.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/class-use/HttpConfig.Policy.html 
b/devapidocs/org/apache/hadoop/hbase/http/class-use/HttpConfig.Policy.html
index 58c2849..2705685 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/class-use/HttpConfig.Policy.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/class-use/HttpConfig.Policy.html
@@ -207,6 +207,6 @@ the order they are declared.
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/http/class-use/HttpConfig.html
--

[11/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/class-use/CellCodecWithTags.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/CellCodecWithTags.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/CellCodecWithTags.html
index c1ecf87..f682e9e 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/CellCodecWithTags.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/CellCodecWithTags.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
index b2bd92e..346e93a 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
@@ -327,6 +327,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
index 0274885..d1cebe0 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
@@ -275,6 +275,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.html
index 68f9403..ce67d2c 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.html
@@ -353,6 +353,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/class-use/CodecException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/CodecException.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/CodecException.html
index d7ef10f..17d4fca 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/CodecException.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/CodecException.html
@@ -160,6 +160,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/codec/class-use/KeyValueCodec.ByteBuffKeyValueDecoder.ShareableMemoryKeyValue.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/KeyValueCodec.ByteBuffKeyValueDecoder.ShareableMemoryKeyValue.html
 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/KeyValueCodec.ByteBuffKeyValueDecoder.ShareableMemoryKeyValue.html
index ceb9de1..2cc156a 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/KeyValueCodec.ByteBuffKeyValueDecoder.ShareableMemoryKeyValue.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/KeyValueCodec.ByteBuffKeyValueDecoder.ShareableMemoryKeyValue.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop

[18/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
index f6ac3ef..f9782b4 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
@@ -123,7 +123,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Private
  @InterfaceStability.Evolving
-protected static class HBaseAdmin.ProcedureFuture
+protected static class HBaseAdmin.ProcedureFuture
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">Future
 Future that waits on a procedure result.
@@ -328,7 +328,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 exception
-private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutionException.html?is-external=true";
 title="class or interface in java.util.concurrent">ExecutionException exception
+private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutionException.html?is-external=true";
 title="class or interface in java.util.concurrent">ExecutionException exception
 
 
 
@@ -337,7 +337,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 procResultFound
-private boolean procResultFound
+private boolean procResultFound
 
 
 
@@ -346,7 +346,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 done
-private boolean done
+private boolean done
 
 
 
@@ -355,7 +355,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 cancelled
-private boolean cancelled
+private boolean cancelled
 
 
 
@@ -364,7 +364,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 result
-private V result
+private V result
 
 
 
@@ -373,7 +373,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 admin
-private final HBaseAdmin admin
+private final HBaseAdmin admin
 
 
 
@@ -382,7 +382,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 procId
-private final http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long procId
+private final http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long procId
 
 
 
@@ -399,7 +399,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 ProcedureFuture
-public ProcedureFuture(HBaseAdmin admin,
+public ProcedureFuture(HBaseAdmin admin,
http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long procId)
 
 
@@ -417,7 +417,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 cancel
-public boolean cancel(boolean mayInterruptIfRunning)
+public boolean cancel(boolean mayInterruptIfRunning)
 
 Specified by:
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true#cancel-boolean-";
 title="class or interface in java.util.concurrent">cancel in 
interface http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">Future
@@ -430,7 +430,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 isCancelled
-public boolean isCancelled()
+public boolean isCancelled()
 
 Specified by:
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true#isCancelled--";
 title="class or interface in 
java.util.concurrent">isCancelled in interface http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">Future
@@ -443,7 +443,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 abortProcedureResult
-protected org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse abortProcedureResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest request)
+protected org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse abortProcedureResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest request)

   throws http://docs.o

[38/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/snapshot/class-use/CorruptedSnapshotException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/CorruptedSnapshotException.html
 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/CorruptedSnapshotException.html
index b4ce8e9..1849d48 100644
--- 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/CorruptedSnapshotException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/CorruptedSnapshotException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshot.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshot.html 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshot.html
index 10f2dbf..ee3f96c 100644
--- a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshot.html
+++ b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshot.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshotException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshotException.html
 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshotException.html
index e9b6525..cfcc88a 100644
--- 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshotException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/ExportSnapshotException.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/snapshot/class-use/HBaseSnapshotException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/HBaseSnapshotException.html
 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/HBaseSnapshotException.html
index bc00e40..e48b5f3 100644
--- 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/HBaseSnapshotException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/HBaseSnapshotException.html
@@ -225,6 +225,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/snapshot/class-use/RestoreSnapshotException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/RestoreSnapshotException.html
 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/RestoreSnapshotException.html
index 1a294cb..8864737 100644
--- 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/RestoreSnapshotException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/RestoreSnapshotException.html
@@ -204,6 +204,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/snapshot/class-use/SnapshotCreationException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/SnapshotCreationException.html
 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/SnapshotCreationException.html
index 720d08d..15d86d9 100644
--- 
a/apidocs/org/apache/hadoop/hbase/snapshot/class-use/SnapshotCreationException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/snapshot/class-use/SnapshotCreationException.html
@@ -193,6 +193,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache

[19/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Consistency.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Consistency.html 
b/devapidocs/org/apache/hadoop/hbase/client/Consistency.html
index e730695..2fc07e4 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Consistency.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Consistency.html
@@ -359,6 +359,6 @@ not permitted.)
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/CoprocessorHConnection.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/CoprocessorHConnection.html 
b/devapidocs/org/apache/hadoop/hbase/client/CoprocessorHConnection.html
index b6b2afb..a744084 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/CoprocessorHConnection.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/CoprocessorHConnection.html
@@ -470,6 +470,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/DelayingRunner.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/DelayingRunner.html 
b/devapidocs/org/apache/hadoop/hbase/client/DelayingRunner.html
index d2d0ce8..29225e8 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/DelayingRunner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/DelayingRunner.html
@@ -468,6 +468,6 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html
index 2d4d027..11e4f7f 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/DelegatingRetryingCallable.html
@@ -435,6 +435,6 @@ implements Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Delete.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Delete.html 
b/devapidocs/org/apache/hadoop/hbase/client/Delete.html
index 7a5ed3a..70338ce 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Delete.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Delete.html
@@ -958,6 +958,6 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Comparabl
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html 
b/devapidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
index 9052e3a..87e7dc0 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
@@ -332,6 +332,6 @@ extends Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/client/Durability.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Durability.html 
b/devapidocs/org/apache/hadoop/

[44/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedException.html
 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedException.html
index 6ffd24a..915be0e 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedException.html
@@ -166,6 +166,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
index 83f326c..15e8765 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
@@ -177,6 +177,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html
index 84a0748..c40519f 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html
@@ -308,6 +308,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/RowMutations.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/RowMutations.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RowMutations.html
index 85a960e..7c4f4e8 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/RowMutations.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/RowMutations.html
@@ -233,6 +233,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/RowTooBigException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RowTooBigException.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RowTooBigException.html
index 3769305..fd0dbe9 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/RowTooBigException.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/RowTooBigException.html
@@ -164,6 +164,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCaller.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCaller.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCaller.html
index 0af4bb7..e55806f 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCaller.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCaller.html
@@ -120,6 +120,6 @@
 
 
 
-Copyright © 2007–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+Copyright © 2007–2016 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/apidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
--
diff --git a/api

[32/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 9b5140c..8647611 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -4328,13 +4328,9 @@
 An RpcExecutor that 
will balance requests evenly across all its queues, but still remains
  efficient with a single queue via an inlinable queue balancing 
mechanism.
 
-BalancedQueueRpcExecutor(String,
 int, int, int) - Constructor for class 
org.apache.hadoop.hbase.ipc.BalancedQueueRpcExecutor
+BalancedQueueRpcExecutor(String,
 int, int, PriorityFunction, Configuration, Abortable) - Constructor 
for class org.apache.hadoop.hbase.ipc.BalancedQueueRpcExecutor
  
-BalancedQueueRpcExecutor(String,
 int, int, int, Configuration, Abortable) - Constructor for class 
org.apache.hadoop.hbase.ipc.BalancedQueueRpcExecutor
- 
-BalancedQueueRpcExecutor(String,
 int, int, Class, Object...) - 
Constructor for class org.apache.hadoop.hbase.ipc.BalancedQueueRpcExecutor
- 
-BalancedQueueRpcExecutor(String,
 int, int, Configuration, Abortable, Class, 
Object...) - Constructor for class org.apache.hadoop.hbase.ipc.BalancedQueueRpcExecutor
+BalancedQueueRpcExecutor(String,
 int, String, int, PriorityFunction, Configuration, Abortable) - 
Constructor for class org.apache.hadoop.hbase.ipc.BalancedQueueRpcExecutor
  
 balanceFactor(TNode)
 - Static method in class org.apache.hadoop.hbase.util.AvlUtil.AvlTree
  
@@ -7432,39 +7428,39 @@
  
 CALL_DROPPED_EXCEPTION
 - Static variable in class org.apache.hadoop.hbase.ipc.CallRunner
  
-CALL_QUEUE_CODEL_DEFAULT_INTERVAL
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_CODEL_DEFAULT_INTERVAL
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_CODEL_DEFAULT_LIFO_THRESHOLD
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_CODEL_DEFAULT_LIFO_THRESHOLD
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_CODEL_DEFAULT_TARGET_DELAY
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_CODEL_DEFAULT_TARGET_DELAY
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_CODEL_INTERVAL
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_CODEL_INTERVAL
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_CODEL_LIFO_THRESHOLD
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_CODEL_LIFO_THRESHOLD
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_CODEL_TARGET_DELAY
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_CODEL_TARGET_DELAY
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_HANDLER_FACTOR_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_HANDLER_FACTOR_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
 CALL_QUEUE_LEN_KEY
 - Static variable in interface org.apache.hadoop.hbase.thrift.MetricsThriftServerSource
  
-CALL_QUEUE_READ_SHARE_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_READ_SHARE_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.RWQueueRpcExecutor
  
-CALL_QUEUE_SCAN_SHARE_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_SCAN_SHARE_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.RWQueueRpcExecutor
  
 CALL_QUEUE_TOO_BIG_EXCEPTION
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcServer
  
-CALL_QUEUE_TYPE_CODEL_CONF_VALUE
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_TYPE_CODEL_CONF_VALUE
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
 
 The default, 'fifo', has the least friction but is 
dumb.
 
-CALL_QUEUE_TYPE_CONF_DEFAULT
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_TYPE_CONF_DEFAULT
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_TYPE_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_TYPE_CONF_KEY
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_TYPE_DEADLINE_CONF_VALUE
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_TYPE_DEADLINE_CONF_VALUE
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
-CALL_QUEUE_TYPE_FIFO_CONF_VALUE
 - Static variable in class org.apache.hadoop.hbase.ipc.SimpleRpcScheduler
+CALL_QUEUE_TYPE_FIFO_CONF_VALUE
 - Static variable in class org.apache.hadoop.hbase.ipc.RpcExecutor
  
 callable
 

[24/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
index 4f92aaa..0a0db56 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
@@ -3138,20 +3138,14 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 BaseLoadBalancer.EMPTY_REGION_LIST 
 
 
-private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
-FavoredNodesPlan.favoredNodesMap
-the map between each region and its favored region server 
list
-
-
-
 private com.google.common.cache.CacheLoader
 RegionLocationFinder.loader 
 
-
+
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapInteger>
 BaseLoadBalancer.Cluster.regionsToIndex 
 
-
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList>
 ClusterLoadState.serversByLoad 
 
@@ -3178,41 +3172,37 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
-FavoredNodesPlan.getAssignmentMap() 
-
-
 (package private) 
com.google.common.cache.LoadingCache
 RegionLocationFinder.getCache() 
 
-
+
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
 ClusterLoadState.getClusterState() 
 
-
+
 protected http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
 BaseLoadBalancer.getRegionAssignmentsByServer(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection regions) 
 
-
+
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList>
 ClusterLoadState.getServersByLoad() 
 
-
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapSet>
 FavoredNodeAssignmentHelper.mapRSToPrimaries(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map primaryRSMap) 
 
-
+
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 FavoredNodeAssignmentHelper.placeSecondaryAndTertiaryRS(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map primaryRSMap) 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 FavoredNodeAssignmentHelper.placeSecondaryAndTertiaryWithRestrictions(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map primaryRSMap)
 For regions that share the primary, avoid placing the 
secondary and tertiary
  on a same RS.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/j

[28/52] [partial] hbase-site git commit: Published site at ec9c9e201a8fadcbdd08d67a20547f79bd105ac6.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d023c665/devapidocs/org/apache/hadoop/hbase/KeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/KeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/KeyValue.html
index 57619ea..b7cdc7b 100644
--- a/devapidocs/org/apache/hadoop/hbase/KeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/KeyValue.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":9,"i2":9,"i3":10,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":10,"i11":9,"i12":9,"i13":9,"i14":10,"i15":42,"i16":9,"i17":9,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":9,"i25":10,"i26":10,"i27":10,"i28":9,"i29":9,"i30":9,"i31":10,"i32":9,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":42,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":9,"i61":41,"i62":42,"i63":9,"i64":10,"i65":9,"i66":9,"i67":9,"i68":41,"i69":9,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":9,"i79":10,"i80":9};
+var methods = 
{"i0":10,"i1":9,"i2":10,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":10,"i10":9,"i11":9,"i12":9,"i13":10,"i14":42,"i15":9,"i16":9,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":9,"i24":10,"i25":10,"i26":10,"i27":9,"i28":9,"i29":9,"i30":10,"i31":9,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":42,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":9,"i60":41,"i61":42,"i62":9,"i63":10,"i64":9,"i65":9,"i66":9,"i67":41,"i68":9,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":9,"i78":10,"i79":9};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -303,10 +303,6 @@ implements 
 
 
-private static int
-MAX_TAGS_LENGTH 
-
-
 static KeyValue.KVComparator
 META_COMPARATOR
 Deprecated. 
@@ -314,51 +310,51 @@ implements 
 
 
-
+
 protected int
 offset 
 
-
+
 static KeyValue.KVComparator
 RAW_COMPARATOR
 Deprecated. 
 
 
-
+
 static int
 ROW_KEY_OFFSET 
 
-
+
 static int
 ROW_LENGTH_SIZE
 Size of the row length field in bytes
 
 
-
+
 static int
 ROW_OFFSET 
 
-
+
 private long
 seqId 
 
-
+
 static int
 TAGS_LENGTH_SIZE
 Size of the tags length field in bytes
 
 
-
+
 static int
 TIMESTAMP_SIZE
 Size of the timestamp field in bytes
 
 
-
+
 static int
 TIMESTAMP_TYPE_SIZE 
 
-
+
 static int
 TYPE_SIZE
 Size of the key type field in bytes
@@ -672,11 +668,7 @@ implements calculateHashForKey(Cell cell) 
 
 
-private static void
-checkForTagsLength(int tagsLength) 
-
-
-private static void
+(package private) static void
 checkParameters(byte[] row,
int rlength,
byte[] family,
@@ -686,31 +678,31 @@ implements Checks the parameters passed to a constructor.
 
 
-
+
 KeyValue
 clone()
 Clones a KeyValue.
 
 
-
+
 static KeyValue
 cloneAndAddTags(Cell c,
http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List newTags)
 Create a new KeyValue by copying existing cell and adding 
new tags
 
 
-
+
 static KeyValue
 create(http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in) 
 
-
+
 static KeyValue
 create(int length,
   http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in)
 Create a KeyValue reading length from 
in
 
 
-
+
 private static byte[]
 createByteArray(byte[] row,
int roffset,
@@ -732,7 +724,7 @@ implements Write KeyValue format into a byte array.
 
 
-
+
 private static byte[]
 createByteArray(byte[] row,
int roffset,
@@ -750,7 +742,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
 
-
+
 private static byte[]
 createEmptyByteArray(int rlength,
 int flength,
@@ -763,34 +755,34 @@ implements 
 
 
-
+
 KeyValue
 createKeyOnly(boolean lenAsVal)
 Creates a new KeyValue that only contains the key portion 
(the value is
  set to be null).
 
 
-
+
 static KeyValue
 createKeyValueFromKey(byte[] b) 
 
-
+
 static KeyValue
 createKeyValueFromKey(byte[] b,
  int o,
  int l) 
 
-
+
 static KeyValue
 createKeyValueFromKey(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer bb) 
 
-
+
 boolean
 equals(http://docs.oracle.com/javas

hbase git commit: HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()

Repository: hbase
Updated Branches:
  refs/heads/14123 2ca75eba4 -> ff8a9f80b


HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the 
hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/ff8a9f80
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/ff8a9f80
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/ff8a9f80

Branch: refs/heads/14123
Commit: ff8a9f80b4454143b63c168b6c852aca7031863a
Parents: 2ca75eb
Author: tedyu 
Authored: Mon Nov 21 09:02:59 2016 -0800
Committer: tedyu 
Committed: Mon Nov 21 09:02:59 2016 -0800

--
 .../org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/ff8a9f80/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
index e77..3442b64 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
@@ -514,7 +514,7 @@ public class BaseRegionObserver implements RegionObserver {
   public boolean 
postBulkLoadHFile(ObserverContext ctx,
 List> stagingFamilyPaths, Map> 
finalPaths,
 boolean hasLoaded) throws IOException {
-return hasLoaded;
+return postBulkLoadHFile(ctx, stagingFamilyPaths, hasLoaded);
   }
 
   @Override



hbase git commit: HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()

Repository: hbase
Updated Branches:
  refs/heads/master 549c8d835 -> 7ff7b88db


HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the 
hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7ff7b88d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7ff7b88d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7ff7b88d

Branch: refs/heads/master
Commit: 7ff7b88db591523d100e72ad8cb0d1e0fd2b99a7
Parents: 549c8d8
Author: tedyu 
Authored: Mon Nov 21 06:49:18 2016 -0800
Committer: tedyu 
Committed: Mon Nov 21 06:49:18 2016 -0800

--
 .../org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/7ff7b88d/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
index e77..3442b64 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
@@ -514,7 +514,7 @@ public class BaseRegionObserver implements RegionObserver {
   public boolean 
postBulkLoadHFile(ObserverContext ctx,
 List> stagingFamilyPaths, Map> 
finalPaths,
 boolean hasLoaded) throws IOException {
-return hasLoaded;
+return postBulkLoadHFile(ctx, stagingFamilyPaths, hasLoaded);
   }
 
   @Override



hbase git commit: HBASE-17118 StoreScanner leaked in KeyValueHeap (addendum)

Repository: hbase
Updated Branches:
  refs/heads/branch-1 e8f056935 -> 2da5ed098


HBASE-17118 StoreScanner leaked in KeyValueHeap (addendum)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2da5ed09
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2da5ed09
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2da5ed09

Branch: refs/heads/branch-1
Commit: 2da5ed098eff4b75629e014f4127901a4362bc99
Parents: e8f0569
Author: binlijin 
Authored: Mon Nov 21 20:55:52 2016 +0800
Committer: binlijin 
Committed: Mon Nov 21 20:55:52 2016 +0800

--
 .../java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2da5ed09/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
index 7125df3..30dc2c1 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
@@ -326,6 +326,7 @@ public class KeyValueHeap extends 
NonReversedNonLazyKeyValueScanner
   LOG.warn("close KeyValueScanner error", ce);
 }
   }
+  throw e;
 }
 
 // Heap is returning empty, scanner is done



hbase git commit: HBASE-17139 Remove sweep tool related configs from hbase-default.xml.

Repository: hbase
Updated Branches:
  refs/heads/master 5f7cf0bb7 -> 549c8d835


HBASE-17139 Remove sweep tool related configs from hbase-default.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/549c8d83
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/549c8d83
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/549c8d83

Branch: refs/heads/master
Commit: 549c8d835a4a715e231827ef7674bff5ba2646af
Parents: 5f7cf0b
Author: anoopsamjohn 
Authored: Mon Nov 21 15:54:31 2016 +0530
Committer: anoopsamjohn 
Committed: Mon Nov 21 15:54:31 2016 +0530

--
 .../src/main/resources/hbase-default.xml| 26 
 .../apache/hadoop/hbase/mob/MobConstants.java   | 17 -
 2 files changed, 43 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/549c8d83/hbase-common/src/main/resources/hbase-default.xml
--
diff --git a/hbase-common/src/main/resources/hbase-default.xml 
b/hbase-common/src/main/resources/hbase-default.xml
index bdbe239..3afe6e9 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -1626,32 +1626,6 @@ possible configurations would overwhelm and obscure the 
important.
 
   
   
-hbase.mob.sweep.tool.compaction.ratio
-0.5f
-
-  If there're too many cells deleted in a mob file, it's regarded
-  as an invalid file and needs to be merged.
-  If existingCellsSize/mobFileSize is less than ratio, it's regarded
-  as an invalid file. The default value is 0.5f.
-
-  
-  
-hbase.mob.sweep.tool.compaction.mergeable.size
-134217728
-
-  If the size of a mob file is less than this value, it's regarded as a 
small
-  file and needs to be merged. The default value is 128MB.
-
-  
-  
-hbase.mob.sweep.tool.compaction.memstore.flush.size
-134217728
-
-  The flush size for the memstore used by sweep job. Each sweep reducer 
owns such a memstore.
-  The default value is 128MB.
-
-  
-  
 hbase.master.mob.ttl.cleaner.period
 86400
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/549c8d83/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobConstants.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobConstants.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobConstants.java
index 82fc9cf..6f4658d 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobConstants.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobConstants.java
@@ -48,23 +48,6 @@ public final class MobConstants {
   public static final String MOB_CLEANER_PERIOD = 
"hbase.master.mob.ttl.cleaner.period";
   public static final int DEFAULT_MOB_CLEANER_PERIOD = 24 * 60 * 60; // one day
 
-  public static final String MOB_SWEEP_TOOL_COMPACTION_START_DATE =
-  "hbase.mob.sweep.tool.compaction.start.date";
-  public static final String MOB_SWEEP_TOOL_COMPACTION_RATIO =
-  "hbase.mob.sweep.tool.compaction.ratio";
-  public static final String MOB_SWEEP_TOOL_COMPACTION_MERGEABLE_SIZE =
-  "hbase.mob.sweep.tool.compaction.mergeable.size";
-
-  public static final float DEFAULT_SWEEP_TOOL_MOB_COMPACTION_RATIO = 0.5f;
-  public static final long DEFAULT_SWEEP_TOOL_MOB_COMPACTION_MERGEABLE_SIZE = 
128 * 1024 * 1024;
-
-  public static final String MOB_SWEEP_TOOL_COMPACTION_TEMP_DIR_NAME = 
"mobcompaction";
-
-  public static final String MOB_SWEEP_TOOL_COMPACTION_MEMSTORE_FLUSH_SIZE =
-  "hbase.mob.sweep.tool.compaction.memstore.flush.size";
-  public static final long 
DEFAULT_MOB_SWEEP_TOOL_COMPACTION_MEMSTORE_FLUSH_SIZE =
-  1024 * 1024 * 128; // 128M
-
   public static final String MOB_CACHE_EVICT_PERIOD = 
"hbase.mob.cache.evict.period";
   public static final String MOB_CACHE_EVICT_REMAIN_RATIO = 
"hbase.mob.cache.evict.remain.ratio";
   public static final Tag MOB_REF_TAG = new 
ArrayBackedTag(TagType.MOB_REFERENCE_TAG_TYPE,