hbase git commit: HBASE-17005 Improve log message in MobFileCache (huaxiang sun)

2016-11-07 Thread jingchengdu
Repository: hbase
Updated Branches:
  refs/heads/master a34a9adb2 -> 4ca668dd1


HBASE-17005 Improve log message in MobFileCache (huaxiang sun)


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

Branch: refs/heads/master
Commit: 4ca668dd11aee2a4b4d862ff30080dce2ac6a7ab
Parents: a34a9ad
Author: Jingcheng Du 
Authored: Mon Nov 7 16:38:14 2016 +0800
Committer: Jingcheng Du 
Committed: Mon Nov 7 16:38:14 2016 +0800

--
 .../main/java/org/apache/hadoop/hbase/mob/MobFileCache.java| 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4ca668dd/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCache.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCache.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCache.java
index de3439b..fd62340 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCache.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCache.java
@@ -117,8 +117,12 @@ public class MobFileCache {
   }
   this.scheduleThreadPool.scheduleAtFixedRate(new EvictionThread(this), 
period, period,
   TimeUnit.SECONDS);
+
+  LOG.info("MobFileCache enabled with cacheSize=" + mobFileMaxCacheSize +
+  ", evictPeriods=" +  period + "sec, evictRemainRatio=" + 
evictRemainRatio);
+} else {
+  LOG.info("MobFileCache disabled");
 }
-LOG.info("MobFileCache is initialized, and the cache size is " + 
mobFileMaxCacheSize);
   }
 
   /**



hbase git commit: HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

2016-11-07 Thread liyu
Repository: hbase
Updated Branches:
  refs/heads/master 4ca668dd1 -> 28de528c6


HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

Signed-off-by: Yu Li 


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

Branch: refs/heads/master
Commit: 28de528c6ea19c261213ee229381a18ed3b5ef94
Parents: 4ca668d
Author: Yu Li 
Authored: Mon Nov 7 21:32:55 2016 +0800
Committer: Yu Li 
Committed: Mon Nov 7 21:33:37 2016 +0800

--
 .../hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java | 2 +-
 .../querymatcher/MajorCompactionScanQueryMatcher.java   | 5 +++--
 .../querymatcher/MinorCompactionScanQueryMatcher.java   | 5 +++--
 .../regionserver/querymatcher/NormalUserScanQueryMatcher.java   | 5 +++--
 .../hbase/regionserver/querymatcher/RawScanQueryMatcher.java| 4 +++-
 .../querymatcher/StripeCompactionScanQueryMatcher.java  | 5 +++--
 .../hbase/regionserver/querymatcher/UserScanQueryMatcher.java   | 5 ++---
 7 files changed, 18 insertions(+), 13 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/28de528c/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
index ea4bd97..ac6aa03 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
@@ -171,7 +171,7 @@ public class LegacyScanQueryMatcher extends 
ScanQueryMatcher {
 long timestamp = cell.getTimestamp();
 byte typeByte = cell.getTypeByte();
 long mvccVersion = cell.getSequenceId();
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (keepDeletedCells == KeepDeletedCells.FALSE
   || (keepDeletedCells == KeepDeletedCells.TTL && timestamp < 
oldestUnexpiredTS)) {
 // first ignore delete markers if the scanner can do so, and the

http://git-wip-us.apache.org/repos/asf/hbase/blob/28de528c/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
index 6a2ed40..67e40ed 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
@@ -43,6 +43,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 long timestamp = cell.getTimestamp();
 long mvccVersion = cell.getSequenceId();
+byte typeByte = cell.getTypeByte();
 
 // The delete logic is pretty complicated now.
 // This is corroborated by the following:
@@ -56,7 +57,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 // 7. Delete marker need to be version counted together with puts
 // they affect
 //
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (mvccVersion > maxReadPointToTrackVersions) {
 // We can not drop this delete marker yet, and also we should not use 
this delete marker to
 // mask any cell yet.
@@ -74,7 +75,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
   }
 }
 // Skip checking column since we do not remove column during compaction.
-return columns.checkVersions(cell, timestamp, cell.getTypeByte(),
+return columns.checkVersions(cell, timestamp, typeByte,
   mvccVersion > maxReadPointToTrackVersions);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/28de528c/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompacti

hbase git commit: HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

2016-11-07 Thread liyu
Repository: hbase
Updated Branches:
  refs/heads/branch-1 3063943c7 -> 4d8611fa0


HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

Signed-off-by: Yu Li 


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

Branch: refs/heads/branch-1
Commit: 4d8611fa0ff475e21546fc10252ea740e4e6683a
Parents: 3063943
Author: Yu Li 
Authored: Mon Nov 7 21:32:55 2016 +0800
Committer: Yu Li 
Committed: Mon Nov 7 21:38:03 2016 +0800

--
 .../hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java | 2 +-
 .../querymatcher/MajorCompactionScanQueryMatcher.java   | 5 +++--
 .../querymatcher/MinorCompactionScanQueryMatcher.java   | 5 +++--
 .../regionserver/querymatcher/NormalUserScanQueryMatcher.java   | 5 +++--
 .../hbase/regionserver/querymatcher/RawScanQueryMatcher.java| 4 +++-
 .../querymatcher/StripeCompactionScanQueryMatcher.java  | 5 +++--
 .../hbase/regionserver/querymatcher/UserScanQueryMatcher.java   | 5 ++---
 7 files changed, 18 insertions(+), 13 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4d8611fa/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
index 46c29c5..6827c62 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
@@ -173,7 +173,7 @@ public class LegacyScanQueryMatcher extends 
ScanQueryMatcher {
 long mvccVersion = cell.getSequenceId();
 int qualifierOffset = cell.getQualifierOffset();
 int qualifierLength = cell.getQualifierLength();
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (keepDeletedCells == KeepDeletedCells.FALSE
   || (keepDeletedCells == KeepDeletedCells.TTL && timestamp < 
oldestUnexpiredTS)) {
 // first ignore delete markers if the scanner can do so, and the

http://git-wip-us.apache.org/repos/asf/hbase/blob/4d8611fa/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
index e3bc924..9830fae 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
@@ -43,6 +43,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 long timestamp = cell.getTimestamp();
 long mvccVersion = cell.getSequenceId();
+byte typeByte = cell.getTypeByte();
 
 // The delete logic is pretty complicated now.
 // This is corroborated by the following:
@@ -56,7 +57,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 // 7. Delete marker need to be version counted together with puts
 // they affect
 //
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (mvccVersion > maxReadPointToTrackVersions) {
 // We can not drop this delete marker yet, and also we should not use 
this delete marker to
 // mask any cell yet.
@@ -75,7 +76,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 // Skip checking column since we do not remove column during compaction.
 return columns.checkVersions(cell.getQualifierArray(), 
cell.getQualifierOffset(),
-  cell.getQualifierLength(), timestamp, cell.getTypeByte(),
+  cell.getQualifierLength(), timestamp, typeByte,
   mvccVersion > maxReadPointToTrackVersions);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/4d8611fa/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java

[1/2] hbase git commit: Revert "HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher" to update author

2016-11-07 Thread liyu
Repository: hbase
Updated Branches:
  refs/heads/master 28de528c6 -> e8e658ed3


Revert "HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher" to 
update author

This reverts commit 28de528c6ea19c261213ee229381a18ed3b5ef94.


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

Branch: refs/heads/master
Commit: e33fd427e4f217612807ebdc6199d23cccedb49f
Parents: 28de528
Author: Yu Li 
Authored: Mon Nov 7 22:27:44 2016 +0800
Committer: Yu Li 
Committed: Mon Nov 7 22:40:02 2016 +0800

--
 .../hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java | 2 +-
 .../querymatcher/MajorCompactionScanQueryMatcher.java   | 5 ++---
 .../querymatcher/MinorCompactionScanQueryMatcher.java   | 5 ++---
 .../regionserver/querymatcher/NormalUserScanQueryMatcher.java   | 5 ++---
 .../hbase/regionserver/querymatcher/RawScanQueryMatcher.java| 4 +---
 .../querymatcher/StripeCompactionScanQueryMatcher.java  | 5 ++---
 .../hbase/regionserver/querymatcher/UserScanQueryMatcher.java   | 5 +++--
 7 files changed, 13 insertions(+), 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e33fd427/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
index ac6aa03..ea4bd97 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
@@ -171,7 +171,7 @@ public class LegacyScanQueryMatcher extends 
ScanQueryMatcher {
 long timestamp = cell.getTimestamp();
 byte typeByte = cell.getTypeByte();
 long mvccVersion = cell.getSequenceId();
-if (CellUtil.isDelete(typeByte)) {
+if (CellUtil.isDelete(cell)) {
   if (keepDeletedCells == KeepDeletedCells.FALSE
   || (keepDeletedCells == KeepDeletedCells.TTL && timestamp < 
oldestUnexpiredTS)) {
 // first ignore delete markers if the scanner can do so, and the

http://git-wip-us.apache.org/repos/asf/hbase/blob/e33fd427/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
index 67e40ed..6a2ed40 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
@@ -43,7 +43,6 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 long timestamp = cell.getTimestamp();
 long mvccVersion = cell.getSequenceId();
-byte typeByte = cell.getTypeByte();
 
 // The delete logic is pretty complicated now.
 // This is corroborated by the following:
@@ -57,7 +56,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 // 7. Delete marker need to be version counted together with puts
 // they affect
 //
-if (CellUtil.isDelete(typeByte)) {
+if (CellUtil.isDelete(cell)) {
   if (mvccVersion > maxReadPointToTrackVersions) {
 // We can not drop this delete marker yet, and also we should not use 
this delete marker to
 // mask any cell yet.
@@ -75,7 +74,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
   }
 }
 // Skip checking column since we do not remove column during compaction.
-return columns.checkVersions(cell, timestamp, typeByte,
+return columns.checkVersions(cell, timestamp, cell.getTypeByte(),
   mvccVersion > maxReadPointToTrackVersions);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/e33fd427/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/j

[2/2] hbase git commit: HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

2016-11-07 Thread liyu
HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

Signed-off-by: Yu Li 


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

Branch: refs/heads/master
Commit: e8e658ed384a5eca5c221e5dd3ebe8bfb947cc59
Parents: e33fd42
Author: binlijin 
Authored: Mon Nov 7 21:32:55 2016 +0800
Committer: Yu Li 
Committed: Mon Nov 7 22:40:18 2016 +0800

--
 .../hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java | 2 +-
 .../querymatcher/MajorCompactionScanQueryMatcher.java   | 5 +++--
 .../querymatcher/MinorCompactionScanQueryMatcher.java   | 5 +++--
 .../regionserver/querymatcher/NormalUserScanQueryMatcher.java   | 5 +++--
 .../hbase/regionserver/querymatcher/RawScanQueryMatcher.java| 4 +++-
 .../querymatcher/StripeCompactionScanQueryMatcher.java  | 5 +++--
 .../hbase/regionserver/querymatcher/UserScanQueryMatcher.java   | 5 ++---
 7 files changed, 18 insertions(+), 13 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e8e658ed/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
index ea4bd97..ac6aa03 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
@@ -171,7 +171,7 @@ public class LegacyScanQueryMatcher extends 
ScanQueryMatcher {
 long timestamp = cell.getTimestamp();
 byte typeByte = cell.getTypeByte();
 long mvccVersion = cell.getSequenceId();
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (keepDeletedCells == KeepDeletedCells.FALSE
   || (keepDeletedCells == KeepDeletedCells.TTL && timestamp < 
oldestUnexpiredTS)) {
 // first ignore delete markers if the scanner can do so, and the

http://git-wip-us.apache.org/repos/asf/hbase/blob/e8e658ed/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
index 6a2ed40..67e40ed 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
@@ -43,6 +43,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 long timestamp = cell.getTimestamp();
 long mvccVersion = cell.getSequenceId();
+byte typeByte = cell.getTypeByte();
 
 // The delete logic is pretty complicated now.
 // This is corroborated by the following:
@@ -56,7 +57,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 // 7. Delete marker need to be version counted together with puts
 // they affect
 //
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (mvccVersion > maxReadPointToTrackVersions) {
 // We can not drop this delete marker yet, and also we should not use 
this delete marker to
 // mask any cell yet.
@@ -74,7 +75,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
   }
 }
 // Skip checking column since we do not remove column during compaction.
-return columns.checkVersions(cell, timestamp, cell.getTypeByte(),
+return columns.checkVersions(cell, timestamp, typeByte,
   mvccVersion > maxReadPointToTrackVersions);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/e8e658ed/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
index 3b6acde..cf36366 100644
--- 
a/hbase-server/src/

[2/2] hbase git commit: HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

2016-11-07 Thread liyu
HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher

Signed-off-by: Yu Li 


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

Branch: refs/heads/branch-1
Commit: c4132bbf30f8839b4c1e23edfacad94e6440a43b
Parents: a674812
Author: binlijin 
Authored: Mon Nov 7 21:32:55 2016 +0800
Committer: Yu Li 
Committed: Mon Nov 7 22:42:46 2016 +0800

--
 .../hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java | 2 +-
 .../querymatcher/MajorCompactionScanQueryMatcher.java   | 5 +++--
 .../querymatcher/MinorCompactionScanQueryMatcher.java   | 5 +++--
 .../regionserver/querymatcher/NormalUserScanQueryMatcher.java   | 5 +++--
 .../hbase/regionserver/querymatcher/RawScanQueryMatcher.java| 4 +++-
 .../querymatcher/StripeCompactionScanQueryMatcher.java  | 5 +++--
 .../hbase/regionserver/querymatcher/UserScanQueryMatcher.java   | 5 ++---
 7 files changed, 18 insertions(+), 13 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/c4132bbf/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
index 46c29c5..6827c62 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
@@ -173,7 +173,7 @@ public class LegacyScanQueryMatcher extends 
ScanQueryMatcher {
 long mvccVersion = cell.getSequenceId();
 int qualifierOffset = cell.getQualifierOffset();
 int qualifierLength = cell.getQualifierLength();
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (keepDeletedCells == KeepDeletedCells.FALSE
   || (keepDeletedCells == KeepDeletedCells.TTL && timestamp < 
oldestUnexpiredTS)) {
 // first ignore delete markers if the scanner can do so, and the

http://git-wip-us.apache.org/repos/asf/hbase/blob/c4132bbf/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
index e3bc924..9830fae 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
@@ -43,6 +43,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 long timestamp = cell.getTimestamp();
 long mvccVersion = cell.getSequenceId();
+byte typeByte = cell.getTypeByte();
 
 // The delete logic is pretty complicated now.
 // This is corroborated by the following:
@@ -56,7 +57,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 // 7. Delete marker need to be version counted together with puts
 // they affect
 //
-if (CellUtil.isDelete(cell)) {
+if (CellUtil.isDelete(typeByte)) {
   if (mvccVersion > maxReadPointToTrackVersions) {
 // We can not drop this delete marker yet, and also we should not use 
this delete marker to
 // mask any cell yet.
@@ -75,7 +76,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 // Skip checking column since we do not remove column during compaction.
 return columns.checkVersions(cell.getQualifierArray(), 
cell.getQualifierOffset(),
-  cell.getQualifierLength(), timestamp, cell.getTypeByte(),
+  cell.getQualifierLength(), timestamp, typeByte,
   mvccVersion > maxReadPointToTrackVersions);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/c4132bbf/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatche

[1/2] hbase git commit: Revert "HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher" to update author

2016-11-07 Thread liyu
Repository: hbase
Updated Branches:
  refs/heads/branch-1 4d8611fa0 -> c4132bbf3


Revert "HBASE-16840 Reuse cell's timestamp and type in ScanQueryMatcher" to 
update author

This reverts commit 4d8611fa0ff475e21546fc10252ea740e4e6683a.


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

Branch: refs/heads/branch-1
Commit: a67481209f5d315f06e3a6910fa44493e398210f
Parents: 4d8611f
Author: Yu Li 
Authored: Mon Nov 7 22:26:37 2016 +0800
Committer: Yu Li 
Committed: Mon Nov 7 22:42:38 2016 +0800

--
 .../hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java | 2 +-
 .../querymatcher/MajorCompactionScanQueryMatcher.java   | 5 ++---
 .../querymatcher/MinorCompactionScanQueryMatcher.java   | 5 ++---
 .../regionserver/querymatcher/NormalUserScanQueryMatcher.java   | 5 ++---
 .../hbase/regionserver/querymatcher/RawScanQueryMatcher.java| 4 +---
 .../querymatcher/StripeCompactionScanQueryMatcher.java  | 5 ++---
 .../hbase/regionserver/querymatcher/UserScanQueryMatcher.java   | 5 +++--
 7 files changed, 13 insertions(+), 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/a6748120/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
index 6827c62..46c29c5 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/LegacyScanQueryMatcher.java
@@ -173,7 +173,7 @@ public class LegacyScanQueryMatcher extends 
ScanQueryMatcher {
 long mvccVersion = cell.getSequenceId();
 int qualifierOffset = cell.getQualifierOffset();
 int qualifierLength = cell.getQualifierLength();
-if (CellUtil.isDelete(typeByte)) {
+if (CellUtil.isDelete(cell)) {
   if (keepDeletedCells == KeepDeletedCells.FALSE
   || (keepDeletedCells == KeepDeletedCells.TTL && timestamp < 
oldestUnexpiredTS)) {
 // first ignore delete markers if the scanner can do so, and the

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6748120/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
index 9830fae..e3bc924 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MajorCompactionScanQueryMatcher.java
@@ -43,7 +43,6 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 long timestamp = cell.getTimestamp();
 long mvccVersion = cell.getSequenceId();
-byte typeByte = cell.getTypeByte();
 
 // The delete logic is pretty complicated now.
 // This is corroborated by the following:
@@ -57,7 +56,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 // 7. Delete marker need to be version counted together with puts
 // they affect
 //
-if (CellUtil.isDelete(typeByte)) {
+if (CellUtil.isDelete(cell)) {
   if (mvccVersion > maxReadPointToTrackVersions) {
 // We can not drop this delete marker yet, and also we should not use 
this delete marker to
 // mask any cell yet.
@@ -76,7 +75,7 @@ public class MajorCompactionScanQueryMatcher extends 
DropDeletesCompactionScanQu
 }
 // Skip checking column since we do not remove column during compaction.
 return columns.checkVersions(cell.getQualifierArray(), 
cell.getQualifierOffset(),
-  cell.getQualifierLength(), timestamp, typeByte,
+  cell.getQualifierLength(), timestamp, cell.getTypeByte(),
   mvccVersion > maxReadPointToTrackVersions);
   }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6748120/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/querymatcher/MinorCompactionScanQueryMatcher.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/h

hbase git commit: HBASE-16748 update poms to 1.2.5-SNAPSHOT after passage of the 1.2.4 RC1 vote.

2016-11-07 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 aeef1661c -> eb64168ac


HBASE-16748 update poms to 1.2.5-SNAPSHOT after passage of the 1.2.4 RC1 vote.


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

Branch: refs/heads/branch-1.2
Commit: eb64168aca5eae0b1df4c8fed3f54a0e930a3932
Parents: aeef166
Author: Sean Busbey 
Authored: Mon Nov 7 09:15:08 2016 -0600
Committer: Sean Busbey 
Committed: Mon Nov 7 09:15:08 2016 -0600

--
 CHANGES.txt  | 2 +-
 hbase-annotations/pom.xml| 2 +-
 hbase-assembly/pom.xml   | 2 +-
 hbase-checkstyle/pom.xml | 4 ++--
 hbase-client/pom.xml | 2 +-
 hbase-common/pom.xml | 2 +-
 hbase-examples/pom.xml   | 2 +-
 hbase-external-blockcache/pom.xml| 2 +-
 hbase-hadoop-compat/pom.xml  | 2 +-
 hbase-hadoop2-compat/pom.xml | 2 +-
 hbase-it/pom.xml | 2 +-
 hbase-prefix-tree/pom.xml| 2 +-
 hbase-procedure/pom.xml  | 2 +-
 hbase-protocol/pom.xml   | 2 +-
 hbase-resource-bundle/pom.xml| 2 +-
 hbase-rest/pom.xml   | 2 +-
 hbase-server/pom.xml | 2 +-
 hbase-shaded/hbase-shaded-client/pom.xml | 2 +-
 hbase-shaded/hbase-shaded-server/pom.xml | 2 +-
 hbase-shaded/pom.xml | 2 +-
 hbase-shell/pom.xml  | 2 +-
 hbase-testing-util/pom.xml   | 2 +-
 hbase-thrift/pom.xml | 2 +-
 pom.xml  | 2 +-
 24 files changed, 25 insertions(+), 25 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/CHANGES.txt
--
diff --git a/CHANGES.txt b/CHANGES.txt
index d834930..0f186c3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,7 +1,7 @@
 HBase Change Log
 
 
-Release Notes - HBase - Version 1.2.4
+Release Notes - HBase - Version 1.2.4 11/07/2016
 
 ** Sub-task
 * [HBASE-14734] - BindException when setting up MiniKdc

http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/hbase-annotations/pom.xml
--
diff --git a/hbase-annotations/pom.xml b/hbase-annotations/pom.xml
index 446b95d..1718c05 100644
--- a/hbase-annotations/pom.xml
+++ b/hbase-annotations/pom.xml
@@ -23,7 +23,7 @@
   
 hbase
 org.apache.hbase
-1.2.4
+1.2.5-SNAPSHOT
 ..
   
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/hbase-assembly/pom.xml
--
diff --git a/hbase-assembly/pom.xml b/hbase-assembly/pom.xml
index f1e0433..21a9a23 100644
--- a/hbase-assembly/pom.xml
+++ b/hbase-assembly/pom.xml
@@ -23,7 +23,7 @@
   
 hbase
 org.apache.hbase
-1.2.4
+1.2.5-SNAPSHOT
 ..
   
   hbase-assembly

http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/hbase-checkstyle/pom.xml
--
diff --git a/hbase-checkstyle/pom.xml b/hbase-checkstyle/pom.xml
index bb7af9c..975c324 100644
--- a/hbase-checkstyle/pom.xml
+++ b/hbase-checkstyle/pom.xml
@@ -24,14 +24,14 @@
 4.0.0
 org.apache.hbase
 hbase-checkstyle
-1.2.4
+1.2.5-SNAPSHOT
 Apache HBase - Checkstyle
 Module to hold Checkstyle properties for HBase.
 
   
 hbase
 org.apache.hbase
-1.2.4
+1.2.5-SNAPSHOT
 ..
   
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/hbase-client/pom.xml
--
diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml
index 5f9dc9a..6682fb6 100644
--- a/hbase-client/pom.xml
+++ b/hbase-client/pom.xml
@@ -24,7 +24,7 @@
   
 hbase
 org.apache.hbase
-1.2.4
+1.2.5-SNAPSHOT
 ..
   
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/hbase-common/pom.xml
--
diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml
index e92dafc..af581f9 100644
--- a/hbase-common/pom.xml
+++ b/hbase-common/pom.xml
@@ -23,7 +23,7 @@
   
 hbase
 org.apache.hbase
-1.2.4
+1.2.5-SNAPSHOT
 ..
   
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/eb64168a/hbase-examples/pom.xml
--
diff --git a/hbase-examples/pom.xml b/hbase-examples/pom.xml
index 95f89c9..6865ddb 100644
--- a/hbase-examples/pom.xml
+++ b/hbase-examples/pom.xml
@@ -23,7 +23,7 @@
   
 hbase
 org

hbase git commit: HBASE-17026 VerifyReplication log should distinguish whether good row key is result of revalidation

2016-11-07 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/master e8e658ed3 -> f3bed5b0d


HBASE-17026 VerifyReplication log should distinguish whether good row key is 
result of revalidation


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

Branch: refs/heads/master
Commit: f3bed5b0d98b3cb895e81b20f5e3017081b74972
Parents: e8e658e
Author: tedyu 
Authored: Mon Nov 7 07:38:47 2016 -0800
Committer: tedyu 
Committed: Mon Nov 7 07:38:47 2016 -0800

--
 .../hadoop/hbase/mapreduce/replication/VerifyReplication.java | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/f3bed5b0/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
index 5f804dc..09d1cc8 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
@@ -211,18 +211,19 @@ public class VerifyReplication extends Configured 
implements Tool {
   if (!sourceResult.isEmpty()) {
 context.getCounter(Counters.GOODROWS).increment(1);
 if (verbose) {
-  LOG.info("Good row key: " + delimiter + 
Bytes.toString(row.getRow()) + delimiter);
+  LOG.info("Good row key (with recompare): " + delimiter + 
Bytes.toStringBinary(row.getRow())
+  + delimiter);
 }
   }
   return;
 } catch (Exception e) {
   LOG.error("recompare fail after sleep, rowkey=" + delimiter +
-  Bytes.toString(row.getRow()) + delimiter);
+  Bytes.toStringBinary(row.getRow()) + delimiter);
 }
   }
   context.getCounter(counter).increment(1);
   context.getCounter(Counters.BADROWS).increment(1);
-  LOG.error(counter.toString() + ", rowkey=" + delimiter + 
Bytes.toString(row.getRow()) +
+  LOG.error(counter.toString() + ", rowkey=" + delimiter + 
Bytes.toStringBinary(row.getRow()) +
   delimiter);
 }
 



hbase git commit: HBASE-17026 VerifyReplication log should distinguish whether good row key is result of revalidation

2016-11-07 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/branch-1 c4132bbf3 -> ecd4de938


HBASE-17026 VerifyReplication log should distinguish whether good row key is 
result of revalidation


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

Branch: refs/heads/branch-1
Commit: ecd4de938b44b8d1edeadbc2204678828ef18072
Parents: c4132bb
Author: tedyu 
Authored: Mon Nov 7 07:41:55 2016 -0800
Committer: tedyu 
Committed: Mon Nov 7 07:41:55 2016 -0800

--
 .../hadoop/hbase/mapreduce/replication/VerifyReplication.java | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/ecd4de93/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
index e4d266f..a6ab6d0 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
@@ -210,18 +210,19 @@ public class VerifyReplication extends Configured 
implements Tool {
   if (!sourceResult.isEmpty()) {
 context.getCounter(Counters.GOODROWS).increment(1);
 if (verbose) {
-  LOG.info("Good row key: " + delimiter + 
Bytes.toString(row.getRow()) + delimiter);
+  LOG.info("Good row key (with recompare): " + delimiter + 
Bytes.toStringBinary(row.getRow())
+  + delimiter);
 }
   }
   return;
 } catch (Exception e) {
   LOG.error("recompare fail after sleep, rowkey=" + delimiter +
-  Bytes.toString(row.getRow()) + delimiter);
+  Bytes.toStringBinary(row.getRow()) + delimiter);
 }
   }
   context.getCounter(counter).increment(1);
   context.getCounter(Counters.BADROWS).increment(1);
-  LOG.error(counter.toString() + ", rowkey=" + delimiter + 
Bytes.toString(row.getRow()) +
+  LOG.error(counter.toString() + ", rowkey=" + delimiter + 
Bytes.toStringBinary(row.getRow()) +
   delimiter);
 }
 



hbase git commit: Revert "HBASE-15513 hbase.hregion.memstore.chunkpool.maxsize is 0.0 by default (Vladimir Rodionov)"

2016-11-07 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master f3bed5b0d -> fd6b0b3db


Revert "HBASE-15513 hbase.hregion.memstore.chunkpool.maxsize is 0.0 by default 
(Vladimir Rodionov)"

This reverts commit 8b4bb34ec29317da0d7c75c8bb6af89f420d880c.


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

Branch: refs/heads/master
Commit: fd6b0b3dbfd232589b779325d4283082574cdd10
Parents: f3bed5b
Author: Michael Stack 
Authored: Mon Nov 7 09:07:02 2016 -0800
Committer: Michael Stack 
Committed: Mon Nov 7 09:07:02 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/fd6b0b3d/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
index 582eeba..b650d8c 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
@@ -57,7 +57,7 @@ public class MemStoreChunkPool implements 
HeapMemoryTuneObserver {
   private static final Log LOG = LogFactory.getLog(MemStoreChunkPool.class);
   final static String CHUNK_POOL_MAXSIZE_KEY = 
"hbase.hregion.memstore.chunkpool.maxsize";
   final static String CHUNK_POOL_INITIALSIZE_KEY = 
"hbase.hregion.memstore.chunkpool.initialsize";
-  final static float POOL_MAX_SIZE_DEFAULT = 1.0f;
+  final static float POOL_MAX_SIZE_DEFAULT = 0.0f;
   final static float POOL_INITIAL_SIZE_DEFAULT = 0.0f;
 
   // Static reference to the MemStoreChunkPool



[1/2] hbase git commit: Revert "Revert "HBASE-15513 hbase.hregion.memstore.chunkpool.maxsize is 0.0 by default (Vladimir Rodionov)"" This is a revert of a revert.

2016-11-07 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master fd6b0b3db -> e60a7f6e7


Revert "Revert "HBASE-15513 hbase.hregion.memstore.chunkpool.maxsize is 0.0 by 
default (Vladimir Rodionov)""
This is a revert of a revert.

This reverts commit fd6b0b3dbfd232589b779325d4283082574cdd10.


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

Branch: refs/heads/master
Commit: 97ce30d47eb1dc96eabda21bbe00639a0418a86c
Parents: fd6b0b3
Author: Michael Stack 
Authored: Mon Nov 7 09:31:44 2016 -0800
Committer: Michael Stack 
Committed: Mon Nov 7 09:31:44 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/97ce30d4/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
index b650d8c..582eeba 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreChunkPool.java
@@ -57,7 +57,7 @@ public class MemStoreChunkPool implements 
HeapMemoryTuneObserver {
   private static final Log LOG = LogFactory.getLog(MemStoreChunkPool.class);
   final static String CHUNK_POOL_MAXSIZE_KEY = 
"hbase.hregion.memstore.chunkpool.maxsize";
   final static String CHUNK_POOL_INITIALSIZE_KEY = 
"hbase.hregion.memstore.chunkpool.initialsize";
-  final static float POOL_MAX_SIZE_DEFAULT = 0.0f;
+  final static float POOL_MAX_SIZE_DEFAULT = 1.0f;
   final static float POOL_INITIAL_SIZE_DEFAULT = 0.0f;
 
   // Static reference to the MemStoreChunkPool



[2/2] hbase git commit: HBASE-15513 hbase.hregion.memstore.chunkpool.maxsize is 0.0 by default (Addendum by Anoop Sam John)

2016-11-07 Thread stack
HBASE-15513 hbase.hregion.memstore.chunkpool.maxsize is 0.0 by default 
(Addendum by Anoop Sam John)


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

Branch: refs/heads/master
Commit: e60a7f6e7d25f86adeed4f0e61d3cd25ec29b0ae
Parents: 97ce30d
Author: Michael Stack 
Authored: Mon Nov 7 09:33:01 2016 -0800
Committer: Michael Stack 
Committed: Mon Nov 7 09:33:01 2016 -0800

--
 .../org/apache/hadoop/hbase/regionserver/TestMemStoreLAB.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e60a7f6e/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestMemStoreLAB.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestMemStoreLAB.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestMemStoreLAB.java
index fdd6b2c..5194fc3 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestMemStoreLAB.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestMemStoreLAB.java
@@ -171,8 +171,8 @@ public class TestMemStoreLAB {
   @Test
   public void testLABChunkQueue() throws Exception {
 HeapMemStoreLAB mslab = new HeapMemStoreLAB();
-// by default setting, there should be no chunk queue initialized
-assertNull(mslab.getPooledChunks());
+// by default setting, there should be no chunks initialized in the pool
+assertTrue(mslab.getPooledChunks().isEmpty());
 // reset mslab with chunk pool
 Configuration conf = HBaseConfiguration.create();
 conf.setDouble(MemStoreChunkPool.CHUNK_POOL_MAXSIZE_KEY, 0.1);



hbase git commit: HBASE-16992 The usage of mutation from CP is weird. (ChiaPing Tsai)

2016-11-07 Thread anoopsamjohn
Repository: hbase
Updated Branches:
  refs/heads/master e60a7f6e7 -> 2182ca34a


HBASE-16992 The usage of mutation from CP is weird. (ChiaPing Tsai)


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

Branch: refs/heads/master
Commit: 2182ca34ac935edd126e7ed17eb3237772d9d18b
Parents: e60a7f6
Author: anoopsamjohn 
Authored: Mon Nov 7 23:24:34 2016 +0530
Committer: anoopsamjohn 
Committed: Mon Nov 7 23:24:34 2016 +0530

--
 .../hadoop/hbase/regionserver/HRegion.java  |  9 +--
 .../MiniBatchOperationInProgress.java   |  2 +-
 .../hadoop/hbase/regionserver/TestHRegion.java  | 72 
 3 files changed, 76 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2182ca34/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 7a9d4e2..3423473 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -3202,10 +3202,6 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
   // Acquire row locks. If not, the whole batch will fail.
   acquiredRowLocks.add(getRowLockInternal(cpMutation.getRow(), 
true));
 
-  if (cpMutation.getDurability() == Durability.SKIP_WAL) {
-recordMutationWithoutWal(cpFamilyMap);
-  }
-
   // Returned mutations from coprocessor correspond to the 
Mutation at index i. We can
   // directly add the cells from those mutations to the familyMaps 
of this mutation.
   mergeFamilyMaps(familyMaps[i], cpFamilyMap); // will get added 
to the memstore later
@@ -3227,6 +3223,7 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 if (tmpDur.ordinal() > durability.ordinal()) {
   durability = tmpDur;
 }
+// we use durability of the original mutation for the mutation passed 
by CP.
 if (tmpDur == Durability.SKIP_WAL) {
   recordMutationWithoutWal(m.getFamilyCellMap());
   continue;
@@ -3324,6 +3321,7 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 // We need to update the sequence id for following reasons.
 // 1) If the op is in replay mode, FSWALEntry#stampRegionSequenceId 
won't stamp sequence id.
 // 2) If no WAL, FSWALEntry won't be used
+// we use durability of the original mutation for the mutation passed 
by CP.
 boolean updateSeqId = replay || batchOp.getMutation(i).getDurability() 
== Durability.SKIP_WAL;
 if (updateSeqId) {
   this.updateSequenceId(familyMaps[i].values(),
@@ -7978,8 +7976,7 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
   int listSize = cells.size();
   for (int i=0; i < listSize; i++) {
 Cell cell = cells.get(i);
-// TODO we need include tags length also here.
-mutationSize += KeyValueUtil.keyLength(cell) + cell.getValueLength();
+mutationSize += KeyValueUtil.length(cell);
   }
 }
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/2182ca34/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
index cdbecac..1ab2ef5 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
@@ -110,7 +110,7 @@ public class MiniBatchOperationInProgress {
* Add more Mutations corresponding to the Mutation at the given index to be 
committed atomically
* in the same batch. These mutations are applied to the WAL and applied to 
the memstore as well.
* The timestamp of the cells in the given Mutations MUST be obtained from 
the original mutation.
-   *
+   * Note: The durability from CP will be replaced by the durability of 
corresponding mutation.
* @param index the index that corresponds to the original mutation index in 
the batch
*

hbase git commit: HBASE-16992 The usage of mutation from CP is weird. (ChiaPing Tsai)

2016-11-07 Thread anoopsamjohn
Repository: hbase
Updated Branches:
  refs/heads/branch-1 ecd4de938 -> 2fdba6521


HBASE-16992 The usage of mutation from CP is weird. (ChiaPing Tsai)


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

Branch: refs/heads/branch-1
Commit: 2fdba6521d420771fba5c624c5e9bea94f8ee5fa
Parents: ecd4de9
Author: anoopsamjohn 
Authored: Mon Nov 7 23:26:27 2016 +0530
Committer: anoopsamjohn 
Committed: Mon Nov 7 23:26:27 2016 +0530

--
 .../hadoop/hbase/regionserver/HRegion.java  | 10 ++-
 .../MiniBatchOperationInProgress.java   |  2 +-
 .../hadoop/hbase/regionserver/TestHRegion.java  | 72 
 3 files changed, 77 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2fdba652/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 43845ef..a93b54f 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -3227,10 +3227,6 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
   // Acquire row locks. If not, the whole batch will fail.
   acquiredRowLocks.add(getRowLockInternal(cpMutation.getRow(), 
true));
 
-  if (cpMutation.getDurability() == Durability.SKIP_WAL) {
-recordMutationWithoutWal(cpFamilyMap);
-  }
-
   // Returned mutations from coprocessor correspond to the 
Mutation at index i. We can
   // directly add the cells from those mutations to the familyMaps 
of this mutation.
   mergeFamilyMaps(familyMaps[i], cpFamilyMap); // will get added 
to the memstore later
@@ -3254,6 +3250,7 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 if (tmpDur.ordinal() > durability.ordinal()) {
   durability = tmpDur;
 }
+// we use durability of the original mutation for the mutation passed 
by CP.
 if (tmpDur == Durability.SKIP_WAL) {
   recordMutationWithoutWal(m.getFamilyCellMap());
   continue;
@@ -3366,7 +3363,8 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 // 2) If no WAL, FSWALEntry won't be used
 // 3) If mvcc preassigned, the asynchronous append may still hasn't 
run to
 // FSWALEntry#stampRegionSequenceId and the cell seqId will be 0. So 
we need to update
-// before apply to memstore to avoid scan return incorrect value
+// before apply to memstore to avoid scan return incorrect value.
+// we use durability of the original mutation for the mutation passed 
by CP.
 boolean updateSeqId = isInReplay
 || batchOp.getMutation(i).getDurability() == Durability.SKIP_WAL 
|| mvccPreAssign;
 if (updateSeqId) {
@@ -8410,7 +8408,7 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
   for (int i=0; i < listSize; i++) {
 Cell cell = cells.get(i);
 // TODO we need include tags length also here.
-mutationSize += KeyValueUtil.keyLength(cell) + cell.getValueLength();
+mutationSize += KeyValueUtil.length(cell);
   }
 }
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/2fdba652/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
index cdbecac..1ab2ef5 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
@@ -110,7 +110,7 @@ public class MiniBatchOperationInProgress {
* Add more Mutations corresponding to the Mutation at the given index to be 
committed atomically
* in the same batch. These mutations are applied to the WAL and applied to 
the memstore as well.
* The timestamp of the cells in the given Mutations MUST be obtained from 
the original mutation.
-   *
+   * Note: The durability from CP will be replaced by the durability of 
corresponding mu

hbase git commit: HBASE-15893 Get object (Sudeep Sunthankar)

2016-11-07 Thread enis
Repository: hbase
Updated Branches:
  refs/heads/HBASE-14850 0bb115b3e -> 57422675d


HBASE-15893 Get object (Sudeep Sunthankar)


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

Branch: refs/heads/HBASE-14850
Commit: 57422675d0280ef10b7c1f588bbaf69ddfd0935d
Parents: 0bb115b
Author: Enis Soztutar 
Authored: Thu Nov 3 15:15:16 2016 -0700
Committer: Enis Soztutar 
Committed: Thu Nov 3 15:15:16 2016 -0700

--
 .gitignore  |   2 +-
 hbase-native-client/core/BUCK   |  16 +++
 hbase-native-client/core/get-test.cc| 150 ++
 hbase-native-client/core/get.cc | 153 +++
 hbase-native-client/core/get.h  | 137 +++-
 hbase-native-client/core/time_range-test.cc |  50 
 hbase-native-client/core/time_range.cc  |  88 +
 hbase-native-client/core/time_range.h   |  55 
 8 files changed, 649 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/57422675/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 1b1e9d5..40ad9dd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,7 @@
 .project
 *.settings/
 .classpath
-/build
+*/build/
 /.idea/
 /logs
 *target/

http://git-wip-us.apache.org/repos/asf/hbase/blob/57422675/hbase-native-client/core/BUCK
--
diff --git a/hbase-native-client/core/BUCK b/hbase-native-client/core/BUCK
index c615426..7e9044a 100644
--- a/hbase-native-client/core/BUCK
+++ b/hbase-native-client/core/BUCK
@@ -27,12 +27,16 @@ cxx_library(
 # TODO: move this out of exported
 # Once meta lookup works
 "meta-utils.h",
+"get.h",
+"time_range.h",
 ],
 srcs=[
 "cell.cc",
 "client.cc",
 "location-cache.cc",
 "meta-utils.cc",
+"get.cc",
+"time_range.cc",
 ],
 deps=[
 "//connection:connection",
@@ -59,6 +63,18 @@ cxx_test(name="cell-test",
  ],
  deps=[":core", ],
  run_test_separately=True, )
+cxx_test(name="get-test",
+ srcs=[
+ "get-test.cc",
+ ],
+ deps=[":core", ],
+ run_test_separately=True, )
+cxx_test(name="time_range-test",
+ srcs=[
+ "time_range-test.cc",
+ ],
+ deps=[":core", ],
+ run_test_separately=True, )
 cxx_binary(name="simple-client",
srcs=["simple-client.cc", ],
deps=[":core", "//connection:connection"], )

http://git-wip-us.apache.org/repos/asf/hbase/blob/57422675/hbase-native-client/core/get-test.cc
--
diff --git a/hbase-native-client/core/get-test.cc 
b/hbase-native-client/core/get-test.cc
new file mode 100644
index 000..8ed5f2f
--- /dev/null
+++ b/hbase-native-client/core/get-test.cc
@@ -0,0 +1,150 @@
+/*
+ * 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.
+ *
+ */
+
+#include "core/get.h"
+
+#include 
+#include 
+
+using namespace hbase;
+const int NUMBER_OF_GETS = 5;
+
+TEST (Get, SingleGet) {
+
+  std::string row_str = "row-test";
+  ASSERT_NO_THROW(Get tmp = Get(row_str));
+  Get get = Get(row_str);
+
+  get.SetCacheBlocks(true);
+  get.SetConsistency(hbase::pb::Consistency::STRONG);
+  get.SetMaxResultsPerColumnFamily(1);
+
+  ASSERT_THROW(get.SetMaxVersions(0), std::runtime_error);
+  ASSERT_NO_THROW(get.SetMaxVersions(-10));
+  ASSERT_THROW(get.SetMaxVersions(std::numeric_limits::max() + 
1),
+   std::runtime_error);
+
+  ASSERT_THROW(get.SetTimeRange(-100, 2000), std::runtime_error);
+  ASSERT_THROW(get.SetTimeRange(100, -2000), std::runtime_error);
+  ASSERT_THROW(get.SetTimeRange(1000, 200), std::runtime_error);
+
+  ASSERT_NO_THROW(get.SetMaxVers

[hbase] Git Push Summary

2016-11-07 Thread enis
Repository: hbase
Updated Branches:
  refs/heads/hbase-14850 [deleted] 57422675d


hbase git commit: updated CHANGES.txt for 1.3.0 RC0

2016-11-07 Thread antonov
Repository: hbase
Updated Branches:
  refs/heads/branch-1.3 967076646 -> 60158c5d2


updated CHANGES.txt for 1.3.0 RC0


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

Branch: refs/heads/branch-1.3
Commit: 60158c5d2876108573160fb424dff6b360bad747
Parents: 9670766
Author: Mikhail Antonov 
Authored: Mon Nov 7 12:28:43 2016 -0800
Committer: Mikhail Antonov 
Committed: Mon Nov 7 12:28:43 2016 -0800

--
 CHANGES.txt | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/60158c5d/CHANGES.txt
--
diff --git a/CHANGES.txt b/CHANGES.txt
index 95a3700..5eb6c73 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -88,7 +88,7 @@ Release Notes - HBase - Version 1.3.0 10/24/2016
 * [HBASE-16452] - Procedure v2 - Make ProcedureWALPrettyPrinter extend Tool
 * [HBASE-16485] - Procedure V2 - Add support to addChildProcedure() as 
last "step" in StateMachineProcedure
 * [HBASE-16522] - Procedure v2 - Cache system user and avoid IOException
-* [HBASE-16570] - Compute region locality in parallel at startup
+* [HBASE-16970] - Clarify misleading Scan.java comment about caching
 
 ** Bug
 * [HBASE-11625] - Reading datablock throws "Invalid HFile block magic" and 
can not switch to hdfs checksum
@@ -304,8 +304,10 @@ Release Notes - HBase - Version 1.3.0 10/24/2016
 * [HBASE-16721] - Concurrency issue in WAL unflushed seqId tracking
 * [HBASE-16723] - RMI registry is not destroyed after stopping JMX 
Connector Server
 * [HBASE-16732] - Avoid possible NPE in MetaTableLocator
+* [HBASE-16743] - TestSimpleRpcScheduler#testCoDelScheduling is broke
 * [HBASE-16752] - Upgrading from 1.2 to 1.3 can lead to replication 
failures due to difference in RPC size limit
 * [HBASE-16754] - Regions failing compaction due to referencing 
non-existent store file
+* [HBASE-16765] - New SteppingRegionSplitPolicy, avoid too aggressive 
spread of regions for small tables.
 * [HBASE-16788] - Race in compacted file deletion between HStore close() 
and closeAndArchiveCompactedFiles()
 * [HBASE-16807] - RegionServer will fail to report new active Hmaster 
until HMaster/RegionServer failover
 * [HBASE-16810] - HBase Balancer throws ArrayIndexOutOfBoundsException 
when regionservers are in /hbase/draining znode and unloaded
@@ -313,6 +315,11 @@ Release Notes - HBase - Version 1.3.0 10/24/2016
 * [HBASE-16830] - RSRpcServices#openRegion() should handle the case where 
table descriptor is null
 * [HBASE-16853] - Regions are assigned to Region Servers in 
/hbase/draining after HBase Master failover
 * [HBASE-16889] - Proc-V2: verifyTables in the 
IntegrationTestDDLMasterFailover test after each table DDL is incorrect
+* [HBASE-16931] - Setting cell's seqId to zero in compaction flow might 
cause RS down.
+* [HBASE-16960] - RegionServer hang when aborting
+* [HBASE-16964] - Successfully archived files are not cleared from 
compacted store file list if archiving of any file fails
+* [HBASE-16980] - TestRowProcessorEndpoint failing consistently
+* [HBASE-17032] - CallQueueTooBigException and CallDroppedException should 
not be triggering PFFE
 
 ** Improvement
 * [HBASE-7972] - Add a configuration for the TCP backlog in the Thrift 
server
@@ -405,6 +412,8 @@ Release Notes - HBase - Version 1.3.0 10/24/2016
 * [HBASE-16657] - Expose per-region last major compaction timestamp in 
RegionServer UI
 * [HBASE-16661] - Add last major compaction age to per-region metrics
 * [HBASE-16667] - Building with JDK 8: ignoring option MaxPermSize=256m
+* [HBASE-17006] - Add names to threads for better debugability of thread 
dumps
+* [HBASE-17004] - Refactor IntegrationTestManyRegions to use @ClassRule 
for timing out
 
 ** New Feature
 * [HBASE-10358] - Shell changes for setting consistency per request



[hbase] Git Push Summary

2016-11-07 Thread antonov
Repository: hbase
Updated Tags:  refs/tags/1.3.0RC0 [deleted] cdf6f3938


[hbase] Git Push Summary

2016-11-07 Thread antonov
Repository: hbase
Updated Tags:  refs/tags/1.3.0RC0 [created] 78a060d3f


[2/2] hbase git commit: HBASE-17033 LogRoller makes a lot of allocations unnecessarily

2016-11-07 Thread enis
HBASE-17033 LogRoller makes a lot of allocations unnecessarily


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

Branch: refs/heads/branch-1
Commit: b99690ac6b258962e53bd36fba1b20df18fabc78
Parents: 2fdba65
Author: Enis Soztutar 
Authored: Mon Nov 7 14:18:00 2016 -0800
Committer: Enis Soztutar 
Committed: Mon Nov 7 14:31:30 2016 -0800

--
 .../java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java   | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/b99690ac/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
index dd665eb..c92996b 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
@@ -1242,6 +1242,7 @@ public class FSHLog implements WAL {
   && takeSyncFuture == null;
 }
 
+@Override
 public void run() {
   long currentSequence;
   while (!isInterrupted()) {
@@ -1666,7 +1667,9 @@ public class FSHLog implements WAL {
 SyncFuture waitSafePoint(final SyncFuture syncFuture)
 throws InterruptedException, FailedSyncBeforeLogCloseException {
   while (true) {
-if (this.safePointAttainedLatch.await(1, TimeUnit.NANOSECONDS)) break;
+if (this.safePointAttainedLatch.await(1, TimeUnit.MILLISECONDS)) {
+  break;
+}
 if (syncFuture.isThrowable()) {
   throw new 
FailedSyncBeforeLogCloseException(syncFuture.getThrowable());
 }



[1/2] hbase git commit: HBASE-17033 LogRoller makes a lot of allocations unnecessarily

2016-11-07 Thread enis
Repository: hbase
Updated Branches:
  refs/heads/branch-1 2fdba6521 -> b99690ac6
  refs/heads/master 2182ca34a -> 59d7b47e6


HBASE-17033 LogRoller makes a lot of allocations unnecessarily


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

Branch: refs/heads/master
Commit: 59d7b47e60da12e0de8da35f07921582ccdccd80
Parents: 2182ca3
Author: Enis Soztutar 
Authored: Mon Nov 7 14:18:00 2016 -0800
Committer: Enis Soztutar 
Committed: Mon Nov 7 14:18:00 2016 -0800

--
 .../java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java   | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/59d7b47e/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
index edf698e..94dcd4b 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
@@ -288,6 +288,7 @@ public class FSHLog extends AbstractFSWAL {
* methods like rollWriter().
* @return Writer instance
*/
+  @Override
   protected Writer createWriterInstance(final Path path) throws IOException {
 Writer writer = FSHLogProvider.createWriter(conf, fs, path, false);
 if (writer instanceof ProtobufLogWriter) {
@@ -598,6 +599,7 @@ public class FSHLog extends AbstractFSWAL {
   && takeSyncFuture == null;
 }
 
+@Override
 public void run() {
   long currentSequence;
   while (!isInterrupted()) {
@@ -771,6 +773,7 @@ public class FSHLog extends AbstractFSWAL {
* Therefore, if this function returns 0, it means you are not properly 
running with the HDFS-826
* patch.
*/
+  @Override
   @VisibleForTesting
   int getLogReplication() {
 try {
@@ -882,7 +885,7 @@ public class FSHLog extends AbstractFSWAL {
 SyncFuture waitSafePoint(final SyncFuture syncFuture) throws 
InterruptedException,
 FailedSyncBeforeLogCloseException {
   while (true) {
-if (this.safePointAttainedLatch.await(1, TimeUnit.NANOSECONDS)) {
+if (this.safePointAttainedLatch.await(1, TimeUnit.MILLISECONDS)) {
   break;
 }
 if (syncFuture.isThrowable()) {



hbase git commit: HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan Jiang)

2016-11-07 Thread syuanjiang
Repository: hbase
Updated Branches:
  refs/heads/master 59d7b47e6 -> 0512b4d01


HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan 
Jiang)


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

Branch: refs/heads/master
Commit: 0512b4d015623886dae8a351e3ae4685d6600577
Parents: 59d7b47
Author: Stephen Yuan Jiang 
Authored: Mon Nov 7 17:50:58 2016 -0800
Committer: Stephen Yuan Jiang 
Committed: Mon Nov 7 17:50:58 2016 -0800

--
 .../org/apache/hadoop/hbase/coprocessor/MasterObserver.java| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0512b4d0/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
index e347adf..e90f753 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
@@ -991,7 +991,7 @@ public interface MasterObserver extends Coprocessor {
* @param procId the Id of the procedure
* @throws IOException if something went wrong
*/
-  public void preAbortProcedure(
+  void preAbortProcedure(
   ObserverContext ctx,
   final ProcedureExecutor procEnv,
   final long procId) throws IOException;
@@ -1001,7 +1001,7 @@ public interface MasterObserver extends Coprocessor {
* @param ctx the environment to interact with the framework and master
* @throws IOException if something went wrong
*/
-  public void postAbortProcedure(ObserverContext 
ctx)
+  void postAbortProcedure(ObserverContext ctx)
   throws IOException;
 
   /**
@@ -1637,7 +1637,7 @@ public interface MasterObserver extends Coprocessor {
* @param regionB second region to be merged
* @throws IOException if an error occurred on the coprocessor
*/
-  public void preDispatchMerge(final 
ObserverContext ctx,
+  void preDispatchMerge(final ObserverContext 
ctx,
   HRegionInfo regionA, HRegionInfo regionB) throws IOException;
   
   /**



hbase git commit: HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan Jiang)

2016-11-07 Thread syuanjiang
Repository: hbase
Updated Branches:
  refs/heads/branch-1 b99690ac6 -> 874cf5128


HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan 
Jiang)


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

Branch: refs/heads/branch-1
Commit: 874cf5128f92fe70b96447b31174a579c1b7fbd4
Parents: b99690a
Author: Stephen Yuan Jiang 
Authored: Mon Nov 7 17:50:58 2016 -0800
Committer: Stephen Yuan Jiang 
Committed: Mon Nov 7 17:51:44 2016 -0800

--
 .../org/apache/hadoop/hbase/coprocessor/MasterObserver.java| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/874cf512/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
index 45888f1..24c62b2 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
@@ -465,7 +465,7 @@ public interface MasterObserver extends Coprocessor {
* @param ctx the environment to interact with the framework and master
* @throws IOException
*/
-  public void preAbortProcedure(
+  void preAbortProcedure(
   ObserverContext ctx,
   final ProcedureExecutor procEnv,
   final long procId) throws IOException;
@@ -474,7 +474,7 @@ public interface MasterObserver extends Coprocessor {
* Called after a abortProcedure request has been processed.
* @param ctx the environment to interact with the framework and master
*/
-  public void postAbortProcedure(ObserverContext 
ctx)
+  void postAbortProcedure(ObserverContext ctx)
   throws IOException;
 
   /**
@@ -1032,7 +1032,7 @@ public interface MasterObserver extends Coprocessor {
* @param regionB second region to be merged
* @throws IOException if an error occurred on the coprocessor
*/
-  public void preDispatchMerge(final 
ObserverContext ctx,
+  void preDispatchMerge(final ObserverContext 
ctx,
   HRegionInfo regionA, HRegionInfo regionB) throws IOException;
   
   /**



hbase git commit: HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan Jiang)

2016-11-07 Thread syuanjiang
Repository: hbase
Updated Branches:
  refs/heads/branch-1.3 60158c5d2 -> 07de16385


HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan 
Jiang)


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

Branch: refs/heads/branch-1.3
Commit: 07de163852f77398f809c4b8a32a66940881389e
Parents: 60158c5
Author: Stephen Yuan Jiang 
Authored: Mon Nov 7 17:50:58 2016 -0800
Committer: Stephen Yuan Jiang 
Committed: Mon Nov 7 17:54:05 2016 -0800

--
 .../org/apache/hadoop/hbase/coprocessor/MasterObserver.java| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/07de1638/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
index 45888f1..24c62b2 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
@@ -465,7 +465,7 @@ public interface MasterObserver extends Coprocessor {
* @param ctx the environment to interact with the framework and master
* @throws IOException
*/
-  public void preAbortProcedure(
+  void preAbortProcedure(
   ObserverContext ctx,
   final ProcedureExecutor procEnv,
   final long procId) throws IOException;
@@ -474,7 +474,7 @@ public interface MasterObserver extends Coprocessor {
* Called after a abortProcedure request has been processed.
* @param ctx the environment to interact with the framework and master
*/
-  public void postAbortProcedure(ObserverContext 
ctx)
+  void postAbortProcedure(ObserverContext ctx)
   throws IOException;
 
   /**
@@ -1032,7 +1032,7 @@ public interface MasterObserver extends Coprocessor {
* @param regionB second region to be merged
* @throws IOException if an error occurred on the coprocessor
*/
-  public void preDispatchMerge(final 
ObserverContext ctx,
+  void preDispatchMerge(final ObserverContext 
ctx,
   HRegionInfo regionA, HRegionInfo regionB) throws IOException;
   
   /**



hbase git commit: HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan Jiang)

2016-11-07 Thread syuanjiang
Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 eb64168ac -> a3d21ecb3


HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan 
Jiang)

Conflicts:

hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java


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

Branch: refs/heads/branch-1.2
Commit: a3d21ecb3ba19c21ab46ddad84d3a35518580a5a
Parents: eb64168
Author: Stephen Yuan Jiang 
Authored: Mon Nov 7 17:50:58 2016 -0800
Committer: Stephen Yuan Jiang 
Committed: Mon Nov 7 18:05:20 2016 -0800

--
 .../java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/a3d21ecb/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
index 4e373e7..ac73f50 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
@@ -464,7 +464,7 @@ public interface MasterObserver extends Coprocessor {
* @param ctx the environment to interact with the framework and master
* @throws IOException
*/
-  public void preAbortProcedure(
+  void preAbortProcedure(
   ObserverContext ctx,
   final ProcedureExecutor procEnv,
   final long procId) throws IOException;
@@ -473,7 +473,7 @@ public interface MasterObserver extends Coprocessor {
* Called after a abortProcedure request has been processed.
* @param ctx the environment to interact with the framework and master
*/
-  public void postAbortProcedure(ObserverContext 
ctx)
+  void postAbortProcedure(ObserverContext ctx)
   throws IOException;
 
   /**



hbase git commit: HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan Jiang)

2016-11-07 Thread syuanjiang
Repository: hbase
Updated Branches:
  refs/heads/branch-1.1 94c52d32d -> 9e90285e1


HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan 
Jiang)

Conflicts:

hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java


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

Branch: refs/heads/branch-1.1
Commit: 9e90285e1896c22d6f443b20aaa51a268c7d6094
Parents: 94c52d3
Author: Stephen Yuan Jiang 
Authored: Mon Nov 7 17:50:58 2016 -0800
Committer: Stephen Yuan Jiang 
Committed: Mon Nov 7 18:07:28 2016 -0800

--
 .../java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9e90285e/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
index 4e373e7..ac73f50 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterObserver.java
@@ -464,7 +464,7 @@ public interface MasterObserver extends Coprocessor {
* @param ctx the environment to interact with the framework and master
* @throws IOException
*/
-  public void preAbortProcedure(
+  void preAbortProcedure(
   ObserverContext ctx,
   final ProcedureExecutor procEnv,
   final long procId) throws IOException;
@@ -473,7 +473,7 @@ public interface MasterObserver extends Coprocessor {
* Called after a abortProcedure request has been processed.
* @param ctx the environment to interact with the framework and master
*/
-  public void postAbortProcedure(ObserverContext 
ctx)
+  void postAbortProcedure(ObserverContext ctx)
   throws IOException;
 
   /**



[02/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-tree.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-tree.html 
b/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-tree.html
new file mode 100644
index 000..f48af35
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-tree.html
@@ -0,0 +1,153 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+org.apache.hadoop.hbase.backup.example Class Hierarchy (Apache HBase 
1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Hierarchy For Package 
org.apache.hadoop.hbase.backup.example
+Package Hierarchies:
+
+All Packages
+
+
+
+Class Hierarchy
+
+java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+
+org.apache.hadoop.hbase.BaseConfigurable (implements 
org.apache.hadoop.conf.Configurable)
+
+org.apache.hadoop.hbase.master.cleaner.BaseFileCleanerDelegate (implements 
org.apache.hadoop.hbase.master.cleaner.FileCleanerDelegate)
+
+org.apache.hadoop.hbase.master.cleaner.BaseHFileCleanerDelegate
+
+org.apache.hadoop.hbase.backup.example.LongTermArchivingHFileCleaner
+
+
+
+
+
+
+org.apache.hadoop.conf.Configured (implements 
org.apache.hadoop.conf.Configurable)
+
+org.apache.hadoop.hbase.backup.example.ZKTableArchiveClient
+
+
+org.apache.hadoop.hbase.backup.example.HFileArchiveTableMonitor
+org.apache.hadoop.hbase.zookeeper.ZooKeeperListener
+
+org.apache.hadoop.hbase.backup.example.TableHFileArchiveTracker
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+Copyright © 2007-2016 http://www.apache.org/";>The Apache Software Foundation. All Rights 
Reserved.
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-use.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-use.html 
b/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-use.html
new file mode 100644
index 000..f7bf867
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/backup/example/package-use.html
@@ -0,0 +1,158 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Uses of Package org.apache.hadoop.hbase.backup.example (Apache HBase 
1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Uses of Packageorg.apache.hadoop.hbase.backup.example
+
+
+
+
+
+Packages that use org.apache.hadoop.hbase.backup.example 
+
+Package
+Description
+
+
+
+org.apache.hadoop.hbase.backup.example
+ 
+
+
+
+
+
+
+
+
+Classes in org.apache.hadoop.hbase.backup.example
 used by org.apache.hadoop.hbase.backup.example 
+
+Class and Description
+
+
+
+HFileArchiveTableMonitor
+Monitor the actual tables for which HFiles are archived for 
long-term retention (always kept
+ unless ZK state changes).
+
+
+
+TableHFileArchiveTracker
+Track HFile archiving state changes in ZooKeeper.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+Copyr

[37/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/CompoundConfiguration.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/CompoundConfiguration.html 
b/1.1/apidocs/org/apache/hadoop/hbase/CompoundConfiguration.html
new file mode 100644
index 000..ca2f11a
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/CompoundConfiguration.html
@@ -0,0 +1,612 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+CompoundConfiguration (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
CompoundConfiguration
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.conf.Configuration
+
+
+org.apache.hadoop.hbase.CompoundConfiguration
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">IterableMap.EntryString,http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>>, 
org.apache.hadoop.io.Writable
+
+
+
+@InterfaceAudience.Private
+public class CompoundConfiguration
+extends org.apache.hadoop.conf.Configuration
+Do a shallow merge of multiple KV configuration pools. This 
is a very useful
+ utility class to easily add per-object configurations in addition to wider
+ scope settings. This is different from Configuration.addResource()
+ functionality, which performs a deep merge and mutates the common data
+ structure.
+ 
+ The iterator on CompoundConfiguration is unmodifiable. Obtaining iterator is 
an expensive
+ operation.
+ 
+ For clarity: the shallow merge allows the user to mutate either of the
+ configuration objects and have changes reflected everywhere. In contrast to a
+ deep merge, that requires you to explicitly know all applicable copies to
+ propagate changes.
+ 
+ WARNING: The values set in the CompoundConfiguration are do not handle 
Property variable
+ substitution.  However, if they are set in the underlying configuration 
substitutions are
+ done.
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
class org.apache.hadoop.conf.Configuration
+org.apache.hadoop.conf.Configuration.DeprecationDelta, 
org.apache.hadoop.conf.Configuration.IntegerRanges
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+protected http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List
+configs 
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+CompoundConfiguration()
+Default Constructor.
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+CompoundConfiguration
+add(org.apache.hadoop.conf.Configuration conf)
+Add Hadoop Configuration object to config list.
+
+
+
+CompoundConfiguration
+addStringMap(http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String> map)
+Add String map to config list.
+
+
+
+CompoundConfiguration
+addWritableMap(http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map map)
+Add ImmutableBytesWritable map to config list.
+
+
+
+void
+clear()
+These methods are unsupported, and no code using 
CompoundConfiguration depend upon them.
+
+
+
+http://docs.oracle.com/javase/7/docs/api/ja

[47/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/com/google/protobuf/package-summary.html
--
diff --git a/1.1/apidocs/com/google/protobuf/package-summary.html 
b/1.1/apidocs/com/google/protobuf/package-summary.html
new file mode 100644
index 000..d640b02
--- /dev/null
+++ b/1.1/apidocs/com/google/protobuf/package-summary.html
@@ -0,0 +1,137 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+com.google.protobuf (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Package
+Next 
Package
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Package com.google.protobuf
+
+
+
+
+
+Class Summary 
+
+Class
+Description
+
+
+
+HBaseZeroCopyByteString
+
+Helper class to extract byte arrays from 
ByteString without copy.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Package
+Next 
Package
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+Copyright © 2007-2016 http://www.apache.org/";>The Apache Software Foundation. All Rights 
Reserved.
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/com/google/protobuf/package-tree.html
--
diff --git a/1.1/apidocs/com/google/protobuf/package-tree.html 
b/1.1/apidocs/com/google/protobuf/package-tree.html
new file mode 100644
index 000..c00dcd4
--- /dev/null
+++ b/1.1/apidocs/com/google/protobuf/package-tree.html
@@ -0,0 +1,134 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+com.google.protobuf Class Hierarchy (Apache HBase 1.1.8-SNAPSHOT 
API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Hierarchy For Package com.google.protobuf
+Package Hierarchies:
+
+All Packages
+
+
+
+Class Hierarchy
+
+java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+
+com.google.protobuf.ByteString (implements java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">Iterable)
+
+com.google.protobuf.HBaseZeroCopyByteString
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+Copyright © 2007-2016 http://www.apache.org/";>The Apache Software Foundation. All Rights 
Reserved.
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/com/google/protobuf/package-use.html
--
diff --git a/1.1/apidocs/com/google/protobuf/package-use.html 
b/1.1/apidocs/com/google/protobuf/package-use.html
new file mode 100644
index 000..c59120d
--- /dev/null
+++ b/1.1/apidocs/com/google/protobuf/package-use.html
@@ -0,0 +1,117 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Uses of Package com.google.protobuf (Apache HBase 1.1.8-SNAPSHOT 
API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
TableNotFoundException
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
+
+
+http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+
+
+org.apache.hadoop.hbase.HBaseIOException
+
+
+org.apache.hadoop.hbase.DoNotRetryIOException
+
+
+org.apache.hadoop.hbase.TableNotFoundException
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Stable
+public class TableNotFoundException
+extends DoNotRetryIOException
+Thrown when a table can not be located
+See Also:Serialized
 Form
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+TableNotFoundException()
+default constructor
+
+
+
+TableNotFoundException(byte[] tableName) 
+
+
+TableNotFoundException(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s) 
+
+
+TableNotFoundException(TableName tableName) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
+http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed(java.lang.Throwable)"
 title="class or interface in java.lang">addSuppressed, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace()"
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getCause()"
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage()"
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getMessage()"
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace()"
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed()"
 title="class or interface in java.lang">getSuppressed, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#initCause(java.lang.Throwable)"
 title="class or interface in java.lang">initCause, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace()"
 title="class or interface in java.lang">printStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintStream)"
 title="class or interface in java.lang">printStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintWriter)"
 title="class or interface in java.lang">printStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lan
 
g/Throwable.html

[04/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/backup/HFileArchiver.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/backup/HFileArchiver.html 
b/1.1/apidocs/org/apache/hadoop/hbase/backup/HFileArchiver.html
new file mode 100644
index 000..029f97c
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/backup/HFileArchiver.html
@@ -0,0 +1,360 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+HFileArchiver (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.backup
+Class HFileArchiver
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.backup.HFileArchiver
+
+
+
+
+
+
+
+
+public class HFileArchiver
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+Utility class to handle the removal of HFiles (or the 
respective StoreFiles)
+ for a HRegion from the FileSystem. The hfiles will be archived 
or deleted, depending on
+ the state of the system.
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static void
+archiveFamily(org.apache.hadoop.fs.FileSystem fs,
+ org.apache.hadoop.conf.Configuration conf,
+ HRegionInfo parent,
+ org.apache.hadoop.fs.Path tableDir,
+ byte[] family)
+Remove from the specified region the store files of the 
specified column family,
+ either by archiving them or outright deletion
+
+
+
+static void
+archiveRegion(org.apache.hadoop.conf.Configuration conf,
+ org.apache.hadoop.fs.FileSystem fs,
+ HRegionInfo info)
+Cleans up all the files for a HRegion by archiving the 
HFiles to the
+ archive directory
+
+
+
+static boolean
+archiveRegion(org.apache.hadoop.fs.FileSystem fs,
+ org.apache.hadoop.fs.Path rootdir,
+ org.apache.hadoop.fs.Path tableDir,
+ org.apache.hadoop.fs.Path regionDir)
+Remove an entire region from the table directory via 
archiving the region's hfiles.
+
+
+
+static void
+archiveStoreFile(org.apache.hadoop.conf.Configuration conf,
+org.apache.hadoop.fs.FileSystem fs,
+HRegionInfo regionInfo,
+org.apache.hadoop.fs.Path tableDir,
+byte[] family,
+org.apache.hadoop.fs.Path storeFile)
+Archive the store file
+
+
+
+static void
+archiveStoreFiles(org.apache.hadoop.conf.Configuration conf,
+ org.apache.hadoop.fs.FileSystem fs,
+ HRegionInfo regionInfo,
+ org.apache.hadoop.fs.Path tableDir,
+ byte[] family,
+ http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection compactedFiles)
+Remove the store files, either by archiving them or 
outright deletion
+
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.or

[38/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/1.1/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
new file mode 100644
index 000..fabb6fe
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -0,0 +1,698 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+ClusterStatus (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class ClusterStatus
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.io.VersionedWritable
+
+
+org.apache.hadoop.hbase.ClusterStatus
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+org.apache.hadoop.io.Writable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class ClusterStatus
+extends org.apache.hadoop.io.VersionedWritable
+Status information on the HBase cluster.
+ 
+ ClusterStatus provides clients with information such as:
+ 
+ The count and names of region servers in the cluster.
+ The count and names of dead region servers in the cluster.
+ The name of the active master for the cluster.
+ The name(s) of the backup master(s) for the cluster, if they exist.
+ The average cluster load.
+ The number of regions deployed on the cluster.
+ The number of requests since last report.
+ Detailed region server loading and resource usage information,
+  per server and per region.
+ Regions in transition at master
+ The unique cluster ID
+ 
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ClusterStatus()
+Deprecated. 
+As of release 0.96
+ (https://issues.apache.org/jira/browse/HBASE-6038";>HBASE-6038).
+ This will be removed in HBase 2.0.0.
+ Used by Writables and Writables are going away.
+
+
+
+
+ClusterStatus(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterid,
+ http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map servers,
+ http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection deadServers,
+ ServerName master,
+ http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection backupMasters,
+ http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.master.RegionState> rit,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] masterCoprocessors,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in 
java.lang">Boolean balancerOn) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+org.apache.hadoop.hbase.protobuf.generated.ClusterStatusProtos.ClusterStatus
+convert()
+Convert a ClusterStatus to a protobuf ClusterStatus
+
+
+
+static ClusterStatus
+convert(org.apache.hadoop.hbase.protobuf.generated.ClusterStatusProtos.ClusterStatus proto)
+Convert a protobuf ClusterStatus to a ClusterStatus
+
+
+
+boolean
+equals(http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o) 
+
+
+double
+getAverageLoad() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
+getBackupM

[41/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/CellScanner.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/CellScanner.html 
b/1.1/apidocs/org/apache/hadoop/hbase/CellScanner.html
new file mode 100644
index 000..564afb6
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/CellScanner.html
@@ -0,0 +1,261 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+CellScanner (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Interface CellScanner
+
+
+
+
+
+
+All Known Subinterfaces:
+CellSearcher, Codec.Decoder, ReversibleCellScanner, SizedCellScanner
+
+
+All Known Implementing Classes:
+BaseDecoder, KeyValueCodec.KeyValueDecoder, KeyValueCodecWithTags.KeyValueDecoder, PrefixTreeArrayReversibleScanner,
 PrefixTreeArrayScanner, PrefixTreeArraySearcher, 
Result
+
+
+
+@InterfaceAudience.Private
+@InterfaceStability.Unstable
+public interface CellScanner
+An interface for iterating through a sequence of cells. 
Similar to Java's Iterator, but without
+ the hasNext() or remove() methods. The hasNext() method is problematic 
because it may require
+ actually loading the next object, which in turn requires storing the previous 
object somewhere.
+
+ The core data block decoder should be as fast as possible, so we push the 
complexity and
+ performance expense of concurrently tracking multiple cells to layers above 
the CellScanner.
+ 
+ The current()
 method will return a reference to a Cell implementation. This reference
+ may or may not point to a reusable cell implementation, so users of the 
CellScanner should not,
+ for example, accumulate a List of Cells. All of the references may point to 
the same object,
+ which would be the latest state of the underlying Cell. In short, the Cell is 
mutable.
+ 
+ Typical usage:
+
+ 
+ while (scanner.advance()) {
+   Cell cell = scanner.current();
+   // do something
+ }
+ 
+ Often used reading Cells written by
+ CellOutputStream.
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+boolean
+advance()
+Advance the scanner 1 cell.
+
+
+
+Cell
+current() 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+current
+Cell current()
+Returns:the current Cell which 
may be mutable
+
+
+
+
+
+
+
+advance
+boolean advance()
+throws http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+Advance the scanner 1 cell.
+Returns:true if the next cell is 
found and current()
 will return a valid Cell
+Throws:
+http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+Copyright © 2007-2016 http://www.apache.org/";>The Apache Software Foundation. All Rights 
Reserved.
+
+



[33/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HConstants.Modify.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HConstants.Modify.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HConstants.Modify.html
new file mode 100644
index 000..3de5354
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HConstants.Modify.html
@@ -0,0 +1,375 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+HConstants.Modify (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Enum Constants | 
+Field | 
+Method
+
+
+Detail: 
+Enum Constants | 
+Field | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Enum HConstants.Modify
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
+
+
+org.apache.hadoop.hbase.HConstants.Modify
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+
+
+Enclosing class:
+HConstants
+
+
+
+@InterfaceAudience.Private
+public static enum HConstants.Modify
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+modifyTable op for replacing the table descriptor
+
+
+
+
+
+
+
+
+
+
+
+Enum Constant Summary
+
+Enum Constants 
+
+Enum Constant and Description
+
+
+CLOSE_REGION 
+
+
+TABLE_COMPACT 
+
+
+TABLE_FLUSH 
+
+
+TABLE_MAJOR_COMPACT 
+
+
+TABLE_SET_HTD 
+
+
+TABLE_SPLIT 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static HConstants.Modify
+valueOf(http://docs.oracle.com/javase/7/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.
+
+
+
+static HConstants.Modify[]
+values()
+Returns an array containing the constants of this enum 
type, in
+the order they are declared.
+
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#compareTo(E)"
 title="class or interface in java.lang">compareTo, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass()"
 title="class or interface in java.lang">getDeclaringClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/
 api/java/lang/Enum.html?is-external=true#name()" title="class or interface in 
java.lang">name, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#ordinal()"
 title="class or interface in java.lang">ordinal, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,%20java.lang.String)"
 title="class or interface in java.lang">valueOf
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang

[39/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/ChoreService.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/ChoreService.html 
b/1.1/apidocs/org/apache/hadoop/hbase/ChoreService.html
new file mode 100644
index 000..11ca401
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/ChoreService.html
@@ -0,0 +1,490 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+ChoreService (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class ChoreService
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ChoreService
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class ChoreService
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+ChoreService is a service that can be used to schedule 
instances of ScheduledChore to run
+ periodically while sharing threads. The ChoreService is backed by a
+ http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor whose core 
pool size changes dynamically depending on the
+ number of ScheduledChore 
scheduled. All of the threads in the core thread pool of the
+ underlying http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor are set to 
be daemon threads.
+ 
+ The ChoreService provides the ability to schedule, cancel, and trigger 
instances of
+ ScheduledChore. The 
ChoreService also provides the ability to check on the status of
+ scheduled chores. The number of threads used by the ChoreService changes 
based on the scheduling
+ load and whether or not the scheduled chores are executing on time. As more 
chores are scheduled,
+ there may be a need to increase the number of threads if it is noticed that 
chores are no longer
+ meeting their scheduled start times. On the other hand, as chores are 
cancelled, an attempt is
+ made to reduce the number of running threads to see if chores can still meet 
their start times
+ with a smaller thread pool.
+ 
+ When finished with a ChoreService it is good practice to call shutdown().
+ Calling this method ensures that all scheduled chores are cancelled and 
cleaned up properly.
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static int
+MIN_CORE_POOL_SIZE
+The minimum number of threads in the core pool of the 
underlying ScheduledThreadPoolExecutor
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ChoreService(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String coreThreadPoolPrefix) 
+
+
+ChoreService(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String coreThreadPoolPrefix,
+int corePoolSize) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+void
+cancelChore(ScheduledChore chore)
+Cancel any ongoing schedules that this chore has with the 
implementer of this interface.
+
+
+
+void
+cancelChore(ScheduledChore chore,
+   boolean mayInterruptIfRunning) 
+
+
+static ChoreService
+getInstance(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String coreThreadPoolPrefix) 
+
+
+boolean
+isChoreScheduled(ScheduledChore chore) 
+
+
+boolean
+isShutdown() 
+
+
+boolean
+isTerminated() 
+
+
+void
+onChoreMissedStartTime(ScheduledChore chore)
+A callback that tells the implementer of this interface 
that one of the scheduled chores is
+ missing its start time.
+
+
+
+boolean
+scheduleChore(ScheduledChore chore) 
+
+
+void
+shutdown()
+shutdown the service.
+
+
+
+boolean
+triggerNow(ScheduledChore chore)
+This method tries to execute the chore immediat

[27/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HealthCheckChore.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HealthCheckChore.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HealthCheckChore.html
new file mode 100644
index 000..2c33b06
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HealthCheckChore.html
@@ -0,0 +1,287 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+HealthCheckChore (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HealthCheckChore
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ScheduledChore
+
+
+org.apache.hadoop.hbase.HealthCheckChore
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable
+
+
+
+public class HealthCheckChore
+extends ScheduledChore
+The Class HealthCheckChore for running health checker 
regularly.
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+HealthCheckChore(int sleepTime,
+Stoppable stopper,
+
org.apache.hadoop.conf.Configuration conf) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+protected void
+chore()
+The task to execute on each scheduled execution of the 
Chore
+
+
+
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.ScheduledChore
+cancel,
 cancel,
 choreForTesting,
 cleanup,
 getInitialDelay,
 getName,
 getPeriod,
 getStopper,
 getTimeUnit,
 initialChore,
 isInitialChoreComplete,
 isScheduled,
 run, 
toString,
 triggerNow
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)"
 title="class or interface in java.lang">wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+HealthCheckChore
+public HealthCheckChore(int sleepTime,
+Stoppable stopper,
+org.apache.hadoop.conf.Configuration conf)
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+chore
+protected void chore()
+Description copied from class: ScheduledChore
+The task to execute on each scheduled execution of the 
Chore
+
+Specified by:
+chore in
 class ScheduledChore
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class JMXListener
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.JMXListener
+
+
+
+
+
+
+
+All Implemented Interfaces:
+Coprocessor
+
+
+
+public class JMXListener
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements Coprocessor
+Pluggable JMX Agent for HBase(to fix the 2 random TCP ports 
issue
+ of the out-of-the-box JMX Agent):
+ 1)connector port can share with the registry port if SSL is OFF
+ 2)support password authentication
+ 3)support subset of SSL (with default configuration)
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Coprocessor
+Coprocessor.State
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static int
+defMasterRMIRegistryPort 
+
+
+static int
+defRegionserverRMIRegistryPort 
+
+
+static org.apache.commons.logging.Log
+LOG 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+RMI_CONNECTOR_PORT_CONF_KEY 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+RMI_REGISTRY_PORT_CONF_KEY 
+
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.Coprocessor
+PRIORITY_HIGHEST,
 PRIORITY_LOWEST,
 PRIORITY_SYSTEM,
 PRIORITY_USER,
 VERSION
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+JMXListener() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/javax/management/remote/JMXServiceURL.html?is-external=true";
 title="class or interface in 
javax.management.remote">JMXServiceURL
+buildJMXServiceURL(int rmiRegistryPort,
+  int rmiConnectorPort) 
+
+
+void
+start(CoprocessorEnvironment env) 
+
+
+void
+startConnectorServer(int rmiRegistryPort,
+int rmiConnectorPort) 
+
+
+void
+stop(CoprocessorEnvironment env) 
+
+
+void
+stopConnectorServer() 
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="clas

[49/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/allclasses-frame.html
--
diff --git a/1.1/apidocs/allclasses-frame.html 
b/1.1/apidocs/allclasses-frame.html
new file mode 100644
index 000..6d2d5c7
--- /dev/null
+++ b/1.1/apidocs/allclasses-frame.html
@@ -0,0 +1,344 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+All Classes (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+All Classes
+
+
+AccessDeniedException
+Admin
+Append
+Attributes
+BadAuthException
+Base64
+Base64.Base64InputStream
+Base64.Base64OutputStream
+BinaryComparator
+BinaryPrefixComparator
+BitComparator
+BitComparator.BitwiseOp
+BloomType
+BufferedMutator
+BufferedMutator.ExceptionListener
+BufferedMutatorParams
+ByteArrayComparable
+ByteBufferOutputStream
+ByteBufferUtils
+ByteRange
+ByteRangeUtils
+Bytes
+Bytes.ByteArrayComparator
+Bytes.RowEndKeyComparator
+CallerDisconnectedException
+CallTimeoutException
+Cell
+CellCounter
+CellCreator
+CellUtil
+Cipher
+CipherProvider
+Client
+ClientBackoffPolicy
+ClockOutOfSyncException
+Cluster
+ClusterStatus
+ColumnCountGetFilter
+ColumnPaginationFilter
+ColumnPrefixFilter
+ColumnRangeFilter
+CompareFilter
+CompareFilter.CompareOp
+Compression.Algorithm
+Connection
+ConnectionClosingException
+ConnectionFactory
+Consistency
+Constants
+Context
+CoprocessorException
+CoprocessorRpcChannel
+CopyTable
+CorruptedSnapshotException
+Counter
+DataBlockEncoding
+DataType
+Decryptor
+DefaultCipherProvider
+Delete
+DependentColumnFilter
+DoNotRetryIOException
+DoNotRetryRegionException
+DroppedSnapshotException
+Durability
+Encryption
+Encryption.Context
+EncryptionTest
+Encryptor
+ExponentialClientBackoffPolicy
+Export
+ExportSnapshot
+ExportSnapshotException
+FailedLogCloseException
+FailedSanityCheckException
+FailedServerException
+FailedSyncBeforeLogCloseException
+FamilyFilter
+FatalConnectionException
+FileSystemVersionException
+Filter
+Filter.ReturnCode
+FilterList
+FilterList.Operator
+FirstKeyOnlyFilter
+FirstKeyValueMatchingQualifiersFilter
+FixedLengthWrapper
+ForeignException
+FuzzyRowFilter
+Get
+GroupingTableMap
+GroupingTableMapper
+HBaseConfiguration
+HBaseInterfaceAudience
+HBaseIOException
+HBaseSnapshotException
+HColumnDescriptor
+HConnection
+HConnectionManager
+HConstants
+HFileOutputFormat
+HFileOutputFormat2
+HLogInputFormat
+HRegionInfo
+HRegionLocation
+HRegionPartitioner
+HRegionPartitioner
+HTableDescriptor
+HTableFactory
+HTableInterfaceFactory
+HTableMultiplexer
+HTableMultiplexer.HTableMultiplexerStatus
+IdentityTableMap
+IdentityTableMapper
+IdentityTableReduce
+IdentityTableReducer
+ImmutableBytesWritable
+ImmutableBytesWritable.Comparator
+Import
+ImportTsv
+InclusiveStopFilter
+IncompatibleFilterException
+Increment
+InterfaceAudience
+InterfaceStability
+InvalidFamilyOperationException
+InvalidRowFilterException
+IsolationLevel
+JsonMapper
+KeepDeletedCells
+KeyOnlyFilter
+KeyProvider
+KeyStoreKeyProvider
+KeyValueSortReducer
+LeaseException
+LeaseNotRecoveredException
+LoadIncrementalHFiles
+LocalHBaseCluster
+LockTimeoutException
+LongComparator
+MasterNotRunningException
+MD5Hash
+MergeRegionException
+MiniZooKeeperCluster
+MultipleColumnPrefixFilter
+MultiRowRangeFilter
+MultiRowRangeFilter.RowRange
+MultiTableInputFormat
+MultiTableInputFormatBase
+MultiTableOutputFormat
+Mutation
+NamespaceDescriptor
+NamespaceDescriptor.Builder
+NamespaceExistException
+NamespaceNotFoundException
+NoServerForRegionException
+NoSuchColumnFamilyException
+NotAllMetaRegionsOnlineException
+NotServingRegionException
+NullComparator
+Operation
+OperationConflictException
+OperationWithAttributes
+Order
+OrderedBlob
+OrderedBlobVar
+OrderedBytes
+OrderedBytesBase
+OrderedFloat32
+OrderedFloat64
+OrderedInt16
+OrderedInt32
+OrderedInt64
+OrderedInt8
+OrderedNumeric
+OrderedString
+PageFilter
+Pair
+PairOfSameType
+ParseConstants
+ParseFilter
+PBType
+PleaseHoldException
+PositionedByteRange
+PreemptiveFastFailException
+PrefixFilter
+ProcedureInfo
+Put
+PutCombiner
+PutSortReducer
+QualifierFilter
+Query
+QuotaExceededException
+QuotaFilter
+QuotaRetriever
+QuotaScope
+QuotaSettings
+QuotaSettingsFactory
+QuotaType
+RandomRowFilter
+RawByte
+RawBytes
+RawBytesFixedLength
+RawBytesTerminated
+RawDouble
+RawFloat
+RawInteger
+RawLong
+RawShort
+RawString
+RawStringFixedLength
+RawStringTerminated
+ReadOnlyByteRangeException
+RegexStringComparator
+RegexStringComparator.EngineType
+RegionAlreadyInTransitionException
+RegionException
+RegionInRecoveryException
+RegionLoad
+RegionLocator
+RegionOfflineException
+RegionServerAbortedException
+RegionServerRunningException
+RegionServerStoppedException
+RegionTooBusyException
+RemoteAdmin
+RemoteHTable
+RemoteWithExtrasException
+ReplicationAdmin
+ReplicationException
+ReplicationPeerConfig
+Response
+RestoreSnapshotException
+Result
+ResultScanner
+RetriesExhaustedException
+RetriesExhaustedWithDetailsException
+Row
+RowCounter
+RowCounter
+RowFilt

[25/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.KeyOnlyKeyValue.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.KeyOnlyKeyValue.html 
b/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.KeyOnlyKeyValue.html
new file mode 100644
index 000..2ee9104
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.KeyOnlyKeyValue.html
@@ -0,0 +1,836 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+KeyValue.KeyOnlyKeyValue (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
KeyValue.KeyOnlyKeyValue
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.KeyValue
+
+
+org.apache.hadoop.hbase.KeyValue.KeyOnlyKeyValue
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, HeapSize, SettableSequenceId, SettableTimestamp
+
+
+Enclosing class:
+KeyValue
+
+
+
+public static class KeyValue.KeyOnlyKeyValue
+extends KeyValue
+A simple form of KeyValue that creates a keyvalue with only 
the key part of the byte[]
+ Mainly used in places where we need to compare two cells.  Avoids copying of 
bytes
+ In places like block index keys, we need to compare the key byte[] with a 
cell.
+ Hence create a Keyvalue(aka Cell) that would help in comparing as two 
cells
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
class org.apache.hadoop.hbase.KeyValue
+KeyValue.KeyOnlyKeyValue, KeyValue.KVComparator, KeyValue.MetaComparator, KeyValue.RawBytesComparator, KeyValue.RowOnlyComparator, KeyValue.SamePrefixComparator, KeyValue.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+Fields inherited from class org.apache.hadoop.hbase.KeyValue
+bytes, COLUMN_FAMILY_DELIM_ARRAY,
 COLUMN_FAMILY_DELIMITER,
 COMPARATOR,
 FAMILY_LENGTH_SIZE,
 KEY_INFRASTRUCTURE_SIZE,
 KEY_LENGTH_SIZE,
 KEYVALUE_INFRASTRUCTURE_SIZE,
 KEYVALUE_WITH_TAGS_INFRASTRUCTURE_SIZE,
 length, LOWESTKEY,
 META_COMPARATOR,
 offset, 
RAW_COMPARATOR,
 ROW_LENGTH_SIZE,
 ROW_OFFSET,
 TAGS_LENGTH_SIZE,
 TIMESTAMP_SIZE,
 TIMESTAMP_TYPE_SIZE,
 TYPE_SIZE
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+KeyValue.KeyOnlyKeyValue() 
+
+
+KeyValue.KeyOnlyKeyValue(byte[] b) 
+
+
+KeyValue.KeyOnlyKeyValue(byte[] b,
+int offset,
+int length) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+boolean
+equals(http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object other)
+Needed doing 'contains' on List.
+
+
+
+byte[]
+getFamilyArray()
+Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
+ containing array.
+
+
+
+byte
+getFamilyLength() 
+
+
+int
+getFamilyOffset() 
+
+
+byte[]
+getKey()
+Do not use unless you have to.
+
+
+
+int
+getKeyLength() 
+
+
+int
+getKeyOffset() 
+
+
+byte[]
+getQualifierArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+int
+getQualifierLength() 
+
+
+int
+getQualifierOffset() 
+
+
+byte[]
+getRowArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+short
+getRowLength() 
+
+
+int
+getRowOffset() 
+
+
+byte[]
+getTagsArray() 
+
+
+int
+getTagsLength()
+This returns the total length of the tag bytes
+
+
+
+int
+getTagsOffset()
+This returns the offset where the tag actually starts.
+
+
+
+long
+getTimestamp() 
+
+
+int
+getTimestampOffset() 
+
+
+byte
+getTypeByte() 
+
+
+byte[]
+getValueArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+int
+getValueLength() 
+
+
+int
+getValueOffset() 
+
+
+int
+hashCode()
+In line with KeyValue.equals(Object),
 only uses the key portion, not the value.
+
+
+
+void
+setKey(byte[] key,
+  int offset,
+  int length)
+A setter that helps to avoid object creation every time and 
whenever
+ there is a need to

[14/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/RegionLocations.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/RegionLocations.html 
b/1.1/apidocs/org/apache/hadoop/hbase/RegionLocations.html
new file mode 100644
index 000..54bb4f4
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/RegionLocations.html
@@ -0,0 +1,523 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+RegionLocations (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class RegionLocations
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.RegionLocations
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class RegionLocations
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+Container for holding a list of HRegionLocation's that correspond to 
the
+ same range. The list is indexed by the replicaId. This is an immutable list,
+ however mutation operations are provided which returns a new List via 
copy-on-write
+ (assuming small number of locations)
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+RegionLocations(http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection locations) 
+
+
+RegionLocations(HRegionLocation... locations)
+Constructs the region location list.
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+HRegionLocation
+getDefaultRegionLocation() 
+
+
+HRegionLocation
+getRegionLocation()
+Returns the first not-null region location in the list
+
+
+
+HRegionLocation
+getRegionLocation(int replicaId) 
+
+
+HRegionLocation
+getRegionLocationByRegionName(byte[] regionName)
+Returns the region location from the list for matching 
regionName, which can
+ be regionName or encodedRegionName
+
+
+
+HRegionLocation[]
+getRegionLocations() 
+
+
+boolean
+isEmpty()
+Returns whether there are non-null elements in the 
list
+
+
+
+RegionLocations
+mergeLocations(RegionLocations other)
+Merges this RegionLocations list with the given list 
assuming
+ same range, and keeping the most up to date version of the
+ HRegionLocation entries from either list according to seqNum.
+
+
+
+int
+numNonNullElements()
+Returns the size of not-null locations
+
+
+
+RegionLocations
+remove(HRegionLocation location)
+Removes the given location from the list
+
+
+
+RegionLocations
+remove(int replicaId)
+Removes location of the given replicaId from the list
+
+
+
+RegionLocations
+removeByServer(ServerName serverName)
+Returns a new RegionLocations with the locations removed 
(set to null)
+ which have the destination server as given.
+
+
+
+int
+size()
+Returns the size of the list even if some of the elements
+ might be null.
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+toString() 
+
+
+RegionLocations
+updateLocation(HRegionLocation location,
+  boolean checkForEquals,
+  boolean force)
+Updates the location with new only if the new location has 
a higher
+ seqNum than the old one or force is true.
+
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Obj

[09/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html 
b/1.1/apidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html
new file mode 100644
index 000..d2a216a
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.html
@@ -0,0 +1,283 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+SslRMIServerSocketFactorySecure (Apache HBase 1.1.8-SNAPSHOT 
API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No 
Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
SslRMIServerSocketFactorySecure
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true";
 title="class or interface in 
javax.rmi.ssl">javax.rmi.ssl.SslRMIServerSocketFactory
+
+
+org.apache.hadoop.hbase.SslRMIServerSocketFactorySecure
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/rmi/server/RMIServerSocketFactory.html?is-external=true";
 title="class or interface in java.rmi.server">RMIServerSocketFactory
+
+
+
+public class SslRMIServerSocketFactorySecure
+extends http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true";
 title="class or interface in javax.rmi.ssl">SslRMIServerSocketFactory
+Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+SslRMIServerSocketFactorySecure() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+http://docs.oracle.com/javase/7/docs/api/java/net/ServerSocket.html?is-external=true";
 title="class or interface in java.net">ServerSocket
+createServerSocket(int port) 
+
+
+
+
+
+
+Methods inherited from class javax.rmi.ssl.http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true";
 title="class or interface in javax.rmi.ssl">SslRMIServerSocketFactory
+http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in javax.rmi.ssl">equals, http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true#getEnabledCipherSuites()"
 title="class or interface in javax.rmi.ssl">getEnabledCipherSuites, http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true#getEnabledProtocols()"
 title="class or interface in javax.rmi.ssl">getEnabledProtocols, http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true#getNeedClientAuth()"
 title="class or interface in javax.rmi.ssl">getNeedClientAuth, http://docs.oracle.com/javase/7/docs/api/javax/rmi/ssl/SslRMIServerSocketFactory.html?is-external=true#hashCode()"
 title="class or interface in javax.rmi.ssl">hashCode
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll()"
 title="class or interface in java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Objec

[22/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html 
b/1.1/apidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
new file mode 100644
index 000..b293329
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/KeyValueTestUtil.html
@@ -0,0 +1,463 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+KeyValueTestUtil (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class KeyValueTestUtil
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.KeyValueTestUtil
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class KeyValueTestUtil
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+KeyValueTestUtil() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static boolean
+containsIgnoreMvccVersion(http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection kvCollection1,
+ http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection kvCollection2)
+Checks whether KeyValues from kvCollection2 are contained 
in kvCollection1.
+
+
+
+static KeyValue
+create(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String row,
+  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String family,
+  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String qualifier,
+  long timestamp,
+  KeyValue.Type type,
+  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
+
+
+static KeyValue
+create(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String row,
+  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String family,
+  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String qualifier,
+  long timestamp,
+  http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
+
+
+protected static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getFamilyString(KeyValue kv) 
+
+
+protected static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getQualifierString(KeyValue kv) 
+
+
+protected static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getRowString(KeyValue kv) 
+
+
+protected static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getTimestampString(KeyValue kv) 
+
+
+protected static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getTypeString(KeyValue kv) 
+
+
+protected static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getValueString(KeyValue kv) 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+rewindThenToList(http://docs.oracle.com/jav

[03/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/backup/example/TableHFileArchiveTracker.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/backup/example/TableHFileArchiveTracker.html
 
b/1.1/apidocs/org/apache/hadoop/hbase/backup/example/TableHFileArchiveTracker.html
new file mode 100644
index 000..22f81bd
--- /dev/null
+++ 
b/1.1/apidocs/org/apache/hadoop/hbase/backup/example/TableHFileArchiveTracker.html
@@ -0,0 +1,440 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+TableHFileArchiveTracker (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.backup.example
+Class 
TableHFileArchiveTracker
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.zookeeper.ZooKeeperListener
+
+
+org.apache.hadoop.hbase.backup.example.TableHFileArchiveTracker
+
+
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class TableHFileArchiveTracker
+extends ZooKeeperListener
+Track HFile archiving state changes in ZooKeeper. Keeps 
track of the tables whose HFiles should
+ be kept in the archive.
+ 
+ start()
 needs to be called to start monitoring for tables to
+ archive.
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+HFILE_ARCHIVE_ZNODE_PARENT 
+
+
+
+
+
+
+Fields inherited from class org.apache.hadoop.hbase.zookeeper.ZooKeeperListener
+watcher
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static TableHFileArchiveTracker
+create(org.apache.hadoop.conf.Configuration conf)
+Create an archive tracker for the passed in server
+
+
+
+HFileArchiveTableMonitor
+getMonitor() 
+
+
+ZooKeeperWatcher
+getZooKeeperWatcher() 
+
+
+boolean
+keepHFiles(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String tableName)
+Determine if the given table should or should not allow its 
hfiles to be deleted
+
+
+
+void
+nodeChildrenChanged(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String path)
+Called when an existing node has a child node added or 
removed.
+
+
+
+void
+nodeCreated(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String path)
+Called when a new node has been created.
+
+
+
+void
+nodeDeleted(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String path)
+Called when a node has been deleted
+
+
+
+void
+start()
+Start monitoring for archive updates
+
+
+
+void
+stop()
+Stop this tracker and the passed zookeeper
+
+
+
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.zookeeper.ZooKeeperListener
+getWatcher,
 nodeDataChanged
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAl

[01/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 9d13f2d98 -> 6960a0bd5


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/class-use/Abortable.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/class-use/Abortable.html 
b/1.1/apidocs/org/apache/hadoop/hbase/class-use/Abortable.html
new file mode 100644
index 000..e8ed36d
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/class-use/Abortable.html
@@ -0,0 +1,746 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Uses of Interface org.apache.hadoop.hbase.Abortable (Apache HBase 
1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Uses of Interfaceorg.apache.hadoop.hbase.Abortable
+
+
+
+
+
+Packages that use Abortable 
+
+Package
+Description
+
+
+
+org.apache.hadoop.hbase
+ 
+
+
+org.apache.hadoop.hbase.client
+
+Provides HBase Client
+
+
+
+org.apache.hadoop.hbase.coprocessor
+
+Table of Contents
+
+
+
+org.apache.hadoop.hbase.ipc
+
+Tools to help define network clients and servers.
+
+
+
+org.apache.hadoop.hbase.master
+ 
+
+
+org.apache.hadoop.hbase.master.cleaner
+ 
+
+
+org.apache.hadoop.hbase.regionserver
+ 
+
+
+org.apache.hadoop.hbase.replication
+
+Multi Cluster Replication
+
+
+
+org.apache.hadoop.hbase.replication.regionserver
+ 
+
+
+org.apache.hadoop.hbase.zookeeper
+ 
+
+
+
+
+
+
+
+
+
+Uses of Abortable in org.apache.hadoop.hbase
+
+Subinterfaces of Abortable in org.apache.hadoop.hbase 
+
+Modifier and Type
+Interface and Description
+
+
+
+interface 
+Server
+Defines the set of shared functions implemented by HBase 
servers (Masters
+ and RegionServers).
+
+
+
+
+
+
+
+
+Uses of Abortable in org.apache.hadoop.hbase.client
+
+Subinterfaces of Abortable in org.apache.hadoop.hbase.client 
+
+Modifier and Type
+Interface and Description
+
+
+
+interface 
+Admin
+The administrative API for HBase.
+
+
+
+interface 
+ClusterConnection
+Internal methods on Connection that should not be used by 
user code.
+
+
+
+interface 
+Connection
+A cluster connection encapsulating lower level individual 
connections to actual servers and
+ a connection to zookeeper.
+
+
+
+interface 
+HConnection
+Deprecated. 
+in favor of Connection 
and ConnectionFactory
+
+
+
+
+
+
+Classes in org.apache.hadoop.hbase.client
 that implement Abortable 
+
+Modifier and Type
+Class and Description
+
+
+
+class 
+CoprocessorHConnection
+Connection to an HTable from within a Coprocessor.
+
+
+
+class 
+HBaseAdmin
+HBaseAdmin is no longer a client API.
+
+
+
+
+
+
+
+
+Uses of Abortable in org.apache.hadoop.hbase.coprocessor
+
+Fields in org.apache.hadoop.hbase.coprocessor
 declared as Abortable 
+
+Modifier and Type
+Field and Description
+
+
+
+protected Abortable
+CoprocessorHost.abortable 
+
+
+
+
+Constructors in org.apache.hadoop.hbase.coprocessor
 with parameters of type Abortable 
+
+Constructor and Description
+
+
+
+CoprocessorHost(Abortable abortable) 
+
+
+
+
+
+
+
+Uses of Abortable in org.apache.hadoop.hbase.ipc
+
+Constructors in org.apache.hadoop.hbase.ipc
 with parameters of type Abortable 
+
+Constructor and Description
+
+
+
+BalancedQueueRpcExecutor(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+int handlerCount,
+int numQueues,
+org.apache.hadoop.conf.Configuration conf,
+Abortable abortable,
+http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">ClassBlockingQueue> queueClass,
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in 
java.lang">Object... initargs) 
+
+
+BalancedQueueRpcExecutor(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+int handlerCount,
+int numQueues,
+int maxQueueLength,
+org.apache.hadoop.conf.Configuration co

[40/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/CellUtil.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/CellUtil.html 
b/1.1/apidocs/org/apache/hadoop/hbase/CellUtil.html
new file mode 100644
index 000..3c20ed0
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/CellUtil.html
@@ -0,0 +1,1591 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+CellUtil (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class CellUtil
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.CellUtil
+
+
+
+
+
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public final class CellUtil
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+Utility methods helpful slinging Cell instances.
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+CellUtil() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static byte[]
+cloneFamily(Cell cell) 
+
+
+static byte[]
+cloneQualifier(Cell cell) 
+
+
+static byte[]
+cloneRow(Cell cell)
+get individual arrays for tests
+
+
+
+static byte[]
+cloneValue(Cell cell) 
+
+
+static int
+copyFamilyTo(Cell cell,
+byte[] destination,
+int destinationOffset) 
+
+
+static int
+copyQualifierTo(Cell cell,
+   byte[] destination,
+   int destinationOffset) 
+
+
+static int
+copyRowTo(Cell cell,
+ byte[] destination,
+ int destinationOffset)
+copyTo
+
+
+
+static int
+copyTagTo(Cell cell,
+ byte[] destination,
+ int destinationOffset)
+Copies the tags info into the tag portion of the cell
+
+
+
+static int
+copyValueTo(Cell cell,
+   byte[] destination,
+   int destinationOffset) 
+
+
+static Cell
+createCell(byte[] row)
+Create a Cell with specific row.
+
+
+
+static Cell
+createCell(byte[] row,
+  byte[] value)
+Create a Cell with specific row and value.
+
+
+
+static Cell
+createCell(byte[] row,
+  byte[] family,
+  byte[] qualifier)
+Create a Cell with specific row.
+
+
+
+static Cell
+createCell(byte[] row,
+  byte[] family,
+  byte[] qualifier,
+  long timestamp,
+  byte type,
+  byte[] value) 
+
+
+static Cell
+createCell(byte[] row,
+  byte[] family,
+  byte[] qualifier,
+  long timestamp,
+  byte type,
+  byte[] value,
+  byte[] tags,
+  long memstoreTS) 
+
+
+static Cell
+createCell(byte[] row,
+  byte[] family,
+  byte[] qualifier,
+  long timestamp,
+  byte type,
+  byte[] value,
+  long memstoreTS) 
+
+
+static Cell
+createCell(byte[] row,
+  byte[] family,
+  byte[] qualifier,
+  long timestamp,
+  org.apache.hadoop.hbase.KeyValue.Type type,
+  byte[] value,
+  byte[] tags) 
+
+
+static Cell
+createCell(byte[] rowArray,
+  int rowOffset,
+  int rowLength,
+  byte[] familyArray,
+  int familyOffset,
+  int familyLength,
+  byte[] qualifierArray,
+  int qualifierOffset,
+  int qualifierLength) 
+
+
+static 
org.apache.hadoop.hbase.CellScanner
+createCellScanner(Cell[] cellArray) 
+
+
+static 
org.apache.hadoop.hbase.CellScanner
+createCellScanner(http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">Iterable cellIterable) 
+
+
+static 
org.apache.hadoop.hbase.CellScanner
+createCellScanner(http://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator cells) 
+
+
+static 
org.apache.hadoop.hbase.CellScanner
+createCellScanner(http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cellScannerables) 
+
+
+static 
org.apache.ha

[13/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/ScheduledChore.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/ScheduledChore.html 
b/1.1/apidocs/org/apache/hadoop/hbase/ScheduledChore.html
new file mode 100644
index 000..1e72108
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/ScheduledChore.html
@@ -0,0 +1,565 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+ScheduledChore (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class ScheduledChore
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ScheduledChore
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable
+
+
+Direct Known Subclasses:
+BalancerChore, CatalogJanitor, CleanerChore, ClusterStatusChore, ClusterStatusPublisher, HealthCheckChore, HRegionServer.MovedRegionsCleaner, ReplicationZKLockCleanerChore, StorefileRefresherChore
+
+
+
+@InterfaceAudience.Private
+public abstract class ScheduledChore
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements http://docs.oracle.com/javase/7/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable
+ScheduledChore is a task performed on a period in hbase. 
ScheduledChores become active once
+ scheduled with a ChoreService via ChoreService.scheduleChore(ScheduledChore).
 The
+ chore is run in a http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor and competes 
with other ScheduledChores for
+ access to the threads in the core thread pool. If an unhandled exception 
occurs, the chore
+ cancellation is logged. Implementers should consider whether or not the Chore 
will be able to
+ execute within the defined period. It is bad practice to define a 
ScheduledChore whose execution
+ time exceeds its period since it will try to hog one of the threads in the ChoreService's
+ thread pool.
+ 
+ Don't subclass ScheduledChore if the task relies on being woken up for 
something to do, such as
+ an entry being added to a queue, etc.
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Modifier
+Constructor and Description
+
+
+protected 
+ScheduledChore()
+This constructor is for test only.
+
+
+
+ 
+ScheduledChore(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+  Stoppable stopper,
+  int period) 
+
+
+ 
+ScheduledChore(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+  Stoppable stopper,
+  int period,
+  long initialDelay) 
+
+
+ 
+ScheduledChore(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+  Stoppable stopper,
+  int period,
+  long initialDelay,
+  http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+void
+cancel() 
+
+
+void
+cancel(boolean mayInterruptIfRunning) 
+
+
+protected abstract void
+chore()
+The task to execute on each scheduled execution of the 
Chore
+
+
+
+void
+choreForTesting() 
+
+
+protected void
+cleanup()
+Override to run cleanup tasks when the Chore encounters an 
error and must stop running
+
+
+
+long
+getInitialDelay() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getName() 
+
+
+int
+getPeriod() 
+
+
+Stoppable
+getStopper() 
+
+
+http://docs.oracle.com

[21/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/KeyValueUtil.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/KeyValueUtil.html 
b/1.1/apidocs/org/apache/hadoop/hbase/KeyValueUtil.html
new file mode 100644
index 000..3f4d06f
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/KeyValueUtil.html
@@ -0,0 +1,977 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+KeyValueUtil (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class KeyValueUtil
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.KeyValueUtil
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class KeyValueUtil
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+static convenience methods for dealing with KeyValues and 
collections of KeyValues
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+KeyValueUtil() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static int
+appendKeyTo(Cell cell,
+   byte[] output,
+   int offset) 
+
+
+static int
+appendToByteArray(Cell cell,
+ byte[] output,
+ int offset)
+copy key and value
+
+
+
+static void
+appendToByteBuffer(http://docs.oracle.com/javase/7/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer bb,
+  KeyValue kv,
+  boolean includeMvccVersion) 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+copyKeyToNewByteBuffer(Cell cell)
+The position will be set to the beginning of the new 
ByteBuffer
+
+
+
+static byte[]
+copyToNewByteArray(Cell cell) 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+copyToNewByteBuffer(Cell cell)
+The position will be set to the beginning of the new 
ByteBuffer
+
+
+
+static KeyValue
+copyToNewKeyValue(Cell cell)
+copy key only
+
+
+
+static KeyValue
+createFirstDeleteFamilyOnRow(byte[] row,
+byte[] family)
+Create a Delete Family KeyValue for the specified row and 
family that would
+ be smaller than all other possible Delete Family KeyValues that have the
+ same row and family.
+
+
+
+static KeyValue
+createFirstKeyInIncrementedRow(Cell in)
+Increment the row bytes and clear the other fields
+
+
+
+static KeyValue
+createFirstKeyInNextRow(Cell in)
+Append single byte 0x00 to the end of the input row 
key
+
+
+
+static KeyValue
+createFirstOnRow(byte[] row)
+Create a KeyValue that is smaller than all other possible 
KeyValues
+ for the given row.
+
+
+
+static KeyValue
+createFirstOnRow(byte[] row,
+byte[] family,
+byte[] qualifier)
+Create a KeyValue for the specified row, family and 
qualifier that would be
+ smaller than all other possible KeyValues that have the same 
row,family,qualifier.
+
+
+
+static KeyValue
+createFirstOnRow(byte[] buffer,
+byte[] row,
+byte[] family,
+byte[] qualifier)
+Create a KeyValue for the specified row, family and 
qualifier that would be
+ smaller than all other possible KeyValues that have the same row,
+ family, qualifier.
+
+
+
+static KeyValue
+createFirstOnRow(byte[] row,
+byte[] f,
+byte[] q,
+long ts) 
+
+
+static KeyValue
+createFirstOnRow(byte[] buffer,
+int boffset,
+byte[] row,
+int roffset,
+int rlength,
+byte[] family,
+int foffset,
+int flength,
+byte[] qualifier,
+int qoffset,
+int qlength)
+Create a KeyValue for the specified row, family and 
qualifier that would be
+ smaller than all other possible KeyValues that have the same row,
+ family, qualifi

[05/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/Version.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/Version.html 
b/1.1/apidocs/org/apache/hadoop/hbase/Version.html
new file mode 100644
index 000..a49b569
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/Version.html
@@ -0,0 +1,338 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Version (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class Version
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.Version
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class Version
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+date 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+revision 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+srcChecksum 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+url 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+user 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+version 
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+Version() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)"
 title="class or interface in java.lang">wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Field Detail
+
+
+
+
+
+version
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String version
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+revision
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String revision
+See Also:Constant
 Field Va

[29/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HRegionLocation.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HRegionLocation.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HRegionLocation.html
new file mode 100644
index 000..83f9cba
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HRegionLocation.html
@@ -0,0 +1,427 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+HRegionLocation (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HRegionLocation
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.HRegionLocation
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class HRegionLocation
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+Data structure to hold HRegionInfo and the address for the 
hosting
+ HRegionServer.  Immutable.  Comparable, but we compare the 'location' only:
+ i.e. the hostname and port, and *not* the regioninfo.  This means two
+ instances are the same if they refer to the same 'location' (the same
+ hostname and port), though they may be carrying different regions.
+
+ On a big cluster, each client will have thousands of instances of this 
object, often
+  100 000 of them if not million. It's important to keep the object size as 
small
+  as possible.
+
+ This interface has been marked InterfaceAudience.Public in 0.96 and 
0.98.
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+HRegionLocation(HRegionInfo regionInfo,
+   ServerName serverName) 
+
+
+HRegionLocation(HRegionInfo regionInfo,
+   ServerName serverName,
+   long seqNum) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+int
+compareTo(HRegionLocation o) 
+
+
+boolean
+equals(http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o) 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getHostname() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getHostnamePort() 
+
+
+int
+getPort() 
+
+
+HRegionInfo
+getRegionInfo() 
+
+
+long
+getSeqNum() 
+
+
+ServerName
+getServerName() 
+
+
+int
+hashCode() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+toString() 
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll()"
 title="class or interface in java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-ex
 terna

[10/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html 
b/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
new file mode 100644
index 000..db7b22a
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Owned.html
@@ -0,0 +1,263 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+SplitLogTask.Owned (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
SplitLogTask.Owned
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.SplitLogTask
+
+
+org.apache.hadoop.hbase.SplitLogTask.Owned
+
+
+
+
+
+
+
+
+
+Enclosing class:
+SplitLogTask
+
+
+
+public static class SplitLogTask.Owned
+extends SplitLogTask
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
class org.apache.hadoop.hbase.SplitLogTask
+SplitLogTask.Done, SplitLogTask.Err, SplitLogTask.Owned, SplitLogTask.Resigned, SplitLogTask.Unassigned
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+SplitLogTask.Owned(ServerName originServer,
+  ZooKeeperProtos.SplitLogTask.RecoveryMode mode) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.SplitLogTask
+equals,
 getMode,
 getServerName,
 hashCode,
 isDone,
 isDone,
 isErr, 
isErr,
 isOwned,
 isOwned,
 isResigned,
 isResigned,
 isUnassigned,
 isUnassigned,
 parseFrom,
 toByteArray,
 toString
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll()"
 title="class or interface in java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-ex
 ternal=true#wait(long)" title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)"
 title="class or interface in java.lang">wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+SplitLogTask.Owned
+public SplitLogTask.Owned(ServerName originServer,
+  ZooKeeperProtos.SplitLogTask.RecoveryMode mode)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+Copyright © 2007-2016 http://www.apache.org/";>The Apache Software Foundation. All Rights 
Reserved.
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html 
b/1.1/apidocs/org/apache/hadoop/hbase/SplitLogTask.Resigned.html
new file mode 100644
index 000..eef3680
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/Sp

[36/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/Coprocessor.State.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/Coprocessor.State.html 
b/1.1/apidocs/org/apache/hadoop/hbase/Coprocessor.State.html
new file mode 100644
index 000..b745e7d
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/Coprocessor.State.html
@@ -0,0 +1,374 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Coprocessor.State (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Enum Constants | 
+Field | 
+Method
+
+
+Detail: 
+Enum Constants | 
+Field | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Enum Coprocessor.State
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
+
+
+org.apache.hadoop.hbase.Coprocessor.State
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+
+
+Enclosing interface:
+Coprocessor
+
+
+
+public static enum Coprocessor.State
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+Lifecycle state of a given coprocessor instance.
+
+
+
+
+
+
+
+
+
+
+
+Enum Constant Summary
+
+Enum Constants 
+
+Enum Constant and Description
+
+
+ACTIVE 
+
+
+INSTALLED 
+
+
+STARTING 
+
+
+STOPPED 
+
+
+STOPPING 
+
+
+UNINSTALLED 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static Coprocessor.State
+valueOf(http://docs.oracle.com/javase/7/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.
+
+
+
+static Coprocessor.State[]
+values()
+Returns an array containing the constants of this enum 
type, in
+the order they are declared.
+
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#compareTo(E)"
 title="class or interface in java.lang">compareTo, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass()"
 title="class or interface in java.lang">getDeclaringClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/
 api/java/lang/Enum.html?is-external=true#name()" title="class or interface in 
java.lang">name, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#ordinal()"
 title="class or interface in java.lang">ordinal, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,%20java.lang.String)"
 title="class or interface in java.lang">valueOf
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/

[24/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.RawBytesComparator.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.RawBytesComparator.html 
b/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.RawBytesComparator.html
new file mode 100644
index 000..577fbbb
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.RawBytesComparator.html
@@ -0,0 +1,396 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+KeyValue.RawBytesComparator (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
KeyValue.RawBytesComparator
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.KeyValue.KVComparator
+
+
+org.apache.hadoop.hbase.KeyValue.RawBytesComparator
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator, KeyValue.SamePrefixComparator, 
org.apache.hadoop.io.RawComparator
+
+
+Enclosing class:
+KeyValue
+
+
+
+public static class KeyValue.RawBytesComparator
+extends KeyValue.KVComparator
+This is a TEST only Comparator used in TestSeekTo and 
TestReseekTo.
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+KeyValue.RawBytesComparator() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+byte[]
+calcIndexKey(byte[] lastKeyOfPreviousBlock,
+byte[] firstKeyInBlock) 
+
+
+int
+compare(Cell left,
+   Cell right)
+Compares the Key of a cell -- with fields being more 
significant in this order:
+ rowkey, colfam/qual, timestamp, type, mvcc
+
+
+
+int
+compareFlatKey(byte[] left,
+  int loffset,
+  int llength,
+  byte[] right,
+  int roffset,
+  int rlength)
+Deprecated. 
+Since 0.99.2.
+
+
+
+
+int
+compareOnlyKeyPortion(Cell left,
+ Cell right) 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getLegacyKeyComparatorName()
+The HFileV2 file format's trailer contains this class 
name.
+
+
+
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.KeyValue.KVComparator
+clone,
 compare,
 compareColumns,
 compareColumns,
 compareFamilies,
 compareFlatKey,
 compare
 IgnoringPrefix, compareKey,
 compareRowKey,
 compareRows,
 compareRows,
 compareTimestamps,
 getShortMidpointKey, matchingRowColumn,
 matchingRows,
 matchingRows
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll()"
 title="class or interface in java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/j
 ava/lang/Object.html?is-external=true#toString()" title="class or interface in 
java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Ob

[44/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/index-all.html
--
diff --git a/1.1/apidocs/index-all.html b/1.1/apidocs/index-all.html
new file mode 100644
index 000..7c6f360
--- /dev/null
+++ b/1.1/apidocs/index-all.html
@@ -0,0 +1,14410 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+Index (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+A B C D E F G H I J K L M N O P Q R S T U V W Z 
+
+
+A
+
+A - 
Static variable in class org.apache.hadoop.hbase.filter.ParseConstants
+
+ASCII code for 'A'
+
+abort(String,
 Throwable) - Method in interface org.apache.hadoop.hbase.client.Admin
+ 
+abortProcedure(long,
 boolean) - Method in interface org.apache.hadoop.hbase.client.Admin
+
+abort a procedure
+
+abortProcedureAsync(long,
 boolean) - Method in interface org.apache.hadoop.hbase.client.Admin
+
+Abort a procedure but does not block and wait for it be 
completely removed.
+
+abortTask(TaskAttemptContext)
 - Method in class org.apache.hadoop.hbase.mapreduce.TableOutputCommitter
+ 
+AccessDeniedException - Exception in org.apache.hadoop.hbase.security
+
+Exception thrown by access-related methods.
+
+AccessDeniedException()
 - Constructor for exception org.apache.hadoop.hbase.security.AccessDeniedException
+ 
+AccessDeniedException(Class,
 String) - Constructor for exception 
org.apache.hadoop.hbase.security.AccessDeniedException
+ 
+AccessDeniedException(String)
 - Constructor for exception org.apache.hadoop.hbase.security.AccessDeniedException
+ 
+AccessDeniedException(Throwable)
 - Constructor for exception org.apache.hadoop.hbase.security.AccessDeniedException
+ 
+add(byte[],
 byte[], byte[]) - Method in class org.apache.hadoop.hbase.client.Append
+
+Add the specified column and value to this Append 
operation.
+
+add(Cell)
 - Method in class org.apache.hadoop.hbase.client.Append
+
+Add column and value to this Append operation.
+
+add(Cell)
 - Method in class org.apache.hadoop.hbase.client.Increment
+
+Add the specified KeyValue to this operation.
+
+add(byte[],
 byte[], byte[]) - Method in class org.apache.hadoop.hbase.client.Put
+
+Deprecated.
+Since 1.0.0. Use Put.addColumn(byte[],
 byte[], byte[])
+
+
+add(byte[],
 byte[], long, byte[]) - Method in class 
org.apache.hadoop.hbase.client.Put
+
+Deprecated.
+Since 1.0.0. Use Put.addColumn(byte[],
 byte[], long, byte[])
+
+
+add(byte[],
 ByteBuffer, long, ByteBuffer) - Method in class 
org.apache.hadoop.hbase.client.Put
+
+Deprecated.
+Since 1.0.0. Use Put.addColumn(byte[],
 ByteBuffer, long, ByteBuffer)
+
+
+add(Cell)
 - Method in class org.apache.hadoop.hbase.client.Put
+
+Add the specified KeyValue to this Put operation.
+
+add(Put)
 - Method in class org.apache.hadoop.hbase.client.RowMutations
+
+Add a Put operation 
to the list of mutations
+
+add(Delete)
 - Method in class org.apache.hadoop.hbase.client.RowMutations
+
+Add a Delete operation to the list 
of mutations
+
+add(String)
 - Method in class org.apache.hadoop.hbase.rest.client.Cluster
+
+Add a node to the cluster
+
+add(String,
 int) - Method in class org.apache.hadoop.hbase.rest.client.Cluster
+
+Add a node to the cluster
+
+add(DataType)
 - Method in class org.apache.hadoop.hbase.types.StructBuilder
+
+Append field to the sequence of accumulated 
fields.
+
+add(byte[],
 byte[]) - Static method in class org.apache.hadoop.hbase.util.Bytes
+ 
+add(byte[],
 byte[], byte[]) - Static method in class 
org.apache.hadoop.hbase.util.Bytes
+ 
+add(byte[][])
 - Static method in class org.apache.hadoop.hbase.util.Bytes
+ 
+add(long)
 - Method in class org.apache.hadoop.hbase.util.Counter
+ 
+addClientPort(int)
 - Method in class org.apache.hadoop.hbase.zookeeper.MiniZooKeeperCluster
+
+Add a client port to the list.
+
+addColumn(TableName,
 HColumnDescriptor) - Method in interface 
org.apache.hadoop.hbase.client.Admin
+
+Add a column to an existing table.
+
+addColumn(byte[],
 byte[]) - Method in class org.apache.hadoop.hbase.client.Delete
+
+Delete the latest version of the specified column.
+
+addColumn(byte[],
 byte[], long) - Method in class org.apache.hadoop.hbase.client.Delete
+
+Delete the specified version of the specified column.
+
+addColumn(byte[],
 byte[]) - Method in class org.apache.hadoop.hbase.client.Get
+
+Get the column from the specific family with the specified 
qualifier.
+
+addColumn(byte[],
 byte[], long) - Method in class 

[45/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/deprecated-list.html
--
diff --git a/1.1/apidocs/deprecated-list.html b/1.1/apidocs/deprecated-list.html
new file mode 100644
index 000..73de61a
--- /dev/null
+++ b/1.1/apidocs/deprecated-list.html
@@ -0,0 +1,1116 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+Deprecated List (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Deprecated API
+Contents
+
+Deprecated Interfaces
+Deprecated Classes
+Deprecated Fields
+Deprecated Methods
+Deprecated Constructors
+
+
+
+
+
+
+
+
+Deprecated Interfaces 
+
+Interface and Description
+
+
+
+org.apache.hadoop.hbase.client.HConnection
+in favor of Connection and ConnectionFactory
+
+
+
+org.apache.hadoop.hbase.client.HTableInterfaceFactory
+in favor of ConnectionFactory and Connection.
+
+
+
+
+
+
+
+
+
+
+
+
+Deprecated Classes 
+
+Class and Description
+
+
+
+org.apache.hadoop.hbase.client.HConnectionManager
+Please use ConnectionFactory instead
+
+
+
+org.apache.hadoop.hbase.mapreduce.HFileOutputFormat
+use HFileOutputFormat2 
instead.
+
+
+
+org.apache.hadoop.hbase.mapreduce.HLogInputFormat
+use WALInputFormat
+
+
+
+org.apache.hadoop.hbase.client.HTableFactory
+as of 0.98.1. See HConnectionManager.createConnection(Configuration).
+
+
+
+
+
+
+
+
+
+
+
+
+Deprecated Fields 
+
+Field and Description
+
+
+
+org.apache.hadoop.hbase.HTableDescriptor.DEFERRED_LOG_FLUSH
+Use HTableDescriptor.DURABILITY
 instead.
+
+
+
+org.apache.hadoop.hbase.mapreduce.SimpleTotalOrderPartitioner.END
+
+
+org.apache.hadoop.hbase.HConstants.HBASE_REGIONSERVER_LEASE_PERIOD_KEY
+This config option is deprecated. Will be removed at 
later releases after 0.96.
+
+
+
+org.apache.hadoop.hbase.client.Scan.HINT_LOOKAHEAD
+without replacement
+ This is now a no-op, SEEKs and SKIPs are optimizated 
automatically.
+ Will be removed in 2.0+
+
+
+
+org.apache.hadoop.hbase.client.HConnectionManager.MAX_CACHED_CONNECTION_INSTANCES
+
+
+org.apache.hadoop.hbase.HConstants.META_TABLE_NAME
+
+
+org.apache.hadoop.hbase.HTableDescriptor.META_TABLEDESC
+Use TableDescriptors#get(TableName.META_TABLE_NAME) or
+ HBaseAdmin#getTableDescriptor(TableName.META_TABLE_NAME) instead.
+
+
+
+org.apache.hadoop.hbase.client.HConnectionManager.RETRIES_BY_SERVER_KEY
+
+
+org.apache.hadoop.hbase.client.Scan.SCAN_ATTRIBUTES_METRICS_DATA
+
+
+org.apache.hadoop.hbase.client.Scan.SCAN_ATTRIBUTES_METRICS_ENABLE
+since 1.0.0. Use Scan.setScanMetricsEnabled(boolean)
+
+
+
+org.apache.hadoop.hbase.mapreduce.SimpleTotalOrderPartitioner.START
+
+
+org.apache.hadoop.hbase.HRegionInfo.VERSION
+
+
+
+
+
+
+
+
+
+
+
+Deprecated Methods 
+
+Method and Description
+
+
+
+org.apache.hadoop.hbase.client.Put.add(byte[],
 byte[], byte[])
+Since 1.0.0. Use Put.addColumn(byte[],
 byte[], byte[])
+
+
+
+org.apache.hadoop.hbase.client.Put.add(byte[],
 byte[], long, byte[])
+Since 1.0.0. Use Put.addColumn(byte[],
 byte[], long, byte[])
+
+
+
+org.apache.hadoop.hbase.client.Put.add(byte[],
 ByteBuffer, long, ByteBuffer)
+Since 1.0.0. Use Put.addColumn(byte[],
 ByteBuffer, long, ByteBuffer)
+
+
+
+org.apache.hadoop.hbase.client.replication.ReplicationAdmin.addPeer(String,
 String)
+Use addPeer(String, ReplicationPeerConfig, Map) 
instead.
+
+
+
+org.apache.hadoop.hbase.client.replication.ReplicationAdmin.addPeer(String,
 String, String)
+
+
+org.apache.hadoop.hbase.client.Result.addResults(ClientProtos.RegionLoadStats)
+use Result.setStatistics(ClientProtos.RegionLoadStats)
 instead
+
+
+
+org.apache.hadoop.hbase.client.Table.batch(List)
+If any exception is thrown by one of the actions, there 
is no way to
+ retrieve the partially executed results. Use Table.batch(List,
 Object[]) instead.
+
+
+
+org.apache.hadoop.hbase.client.Table.batchCallback(List, Batch.Callback)
+If any exception is thrown by one of the actions, there 
is no way to retrieve the
+ partially executed results. Use Table.batchCallback(List,
 Object[],
+ org.apache.hadoop.hbase.client.coprocessor.Batch.Callback) 
instead.
+
+
+
+org.apache.hadoop.hbase.client.HConnection.clearCaches(ServerName)
+internal method, do not use thru HConnection
+
+
+
+org.apache.hadoop.hbase.client.HConnection.clearRegionCache()
+internal method, do not use thru HConnection
+
+
+
+org.apache.hadoop.hbase.client.HConnection.clearRegionCache(byte[])
+
+
+org.apache.hadoo

[28/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
new file mode 100644
index 000..668ae3e
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
@@ -0,0 +1,2194 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+HTableDescriptor (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HTableDescriptor
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.HTableDescriptor
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, 
org.apache.hadoop.io.Writable, org.apache.hadoop.io.WritableComparable
+
+
+Direct Known Subclasses:
+UnmodifyableHTableDescriptor
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class HTableDescriptor
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements org.apache.hadoop.io.WritableComparable
+HTableDescriptor contains the details about an HBase table  
such as the descriptors of
+ all the column families, is the table a catalog table,  -ROOT-  
or
+  hbase:meta , if the table is read only, the maximum size of the 
memstore,
+ when the region split should occur, coprocessors associated with it 
etc...
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPACTION_ENABLED
+INTERNAL Used by HBase Shell interface to access 
this metadata
+ attribute which denotes if the table is compaction enabled
+
+
+
+static boolean
+DEFAULT_COMPACTION_ENABLED
+Constant that denotes whether the table is compaction 
enabled by default
+
+
+
+static long
+DEFAULT_MEMSTORE_FLUSH_SIZE
+Constant that denotes the maximum default size of the 
memstore after which
+ the contents are flushed to the store files
+
+
+
+static boolean
+DEFAULT_READONLY
+Constant that denotes whether the table is READONLY by 
default and is false
+
+
+
+static boolean
+DEFAULT_REGION_MEMSTORE_REPLICATION 
+
+
+static int
+DEFAULT_REGION_REPLICATION 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DEFERRED_LOG_FLUSH
+Deprecated. 
+Use DURABILITY
 instead.
+
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DURABILITY
+INTERNAL Durability setting for the 
table.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+FLUSH_POLICY 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+IS_META
+INTERNAL Used by rest interface to access this 
metadata
+ attribute which denotes if it is a catalog table, either
+  hbase:meta  or  -ROOT- 
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+IS_ROOT
+INTERNAL Used by rest interface to access this 
metadata
+ attribute which denotes if the table is a -ROOT- region or not
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+MAX_FILESIZE
+INTERNAL Used by HBase Shell interface to access 
this metadata
+ attribute which denotes the maximum size of the store file after which
+ a region split occurs
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+MEMSTORE_FLUSHSI

[19/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.Visitor.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.Visitor.html 
b/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.Visitor.html
new file mode 100644
index 000..06939e8
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.Visitor.html
@@ -0,0 +1,222 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+MetaTableAccessor.Visitor (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Interface 
MetaTableAccessor.Visitor
+
+
+
+
+
+
+Enclosing class:
+MetaTableAccessor
+
+
+
+public static interface MetaTableAccessor.Visitor
+Implementations 'visit' a catalog table row.
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+boolean
+visit(Result r)
+Visit the catalog table row.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+visit
+boolean visit(Result r)
+  throws http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+Visit the catalog table row.
+Parameters:r - A row 
from catalog table
+Returns:True if we are to proceed 
scanning the table, else false if
+ we are to stop now.
+Throws:
+http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+Copyright © 2007-2016 http://www.apache.org/";>The Apache Software Foundation. All Rights 
Reserved.
+
+



[46/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/constant-values.html
--
diff --git a/1.1/apidocs/constant-values.html b/1.1/apidocs/constant-values.html
new file mode 100644
index 000..c4ecab9
--- /dev/null
+++ b/1.1/apidocs/constant-values.html
@@ -0,0 +1,4154 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+Constant Field Values (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Constant Field Values
+Contents
+
+org.apache.*
+
+
+
+
+
+org.apache.*
+
+
+
+org.apache.hadoop.hbase.HBaseInterfaceAudience 
+
+Modifier and Type
+Constant Field
+Value
+
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CONFIG
+"Configuration"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COPROC
+"Coprocesssor"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+PHOENIX
+"Phoenix"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+REPLICATION
+"Replication"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+TOOLS
+"Tools"
+
+
+
+
+
+
+org.apache.hadoop.hbase.HColumnDescriptor 
+
+Modifier and Type
+Constant Field
+Value
+
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BLOCKCACHE
+"BLOCKCACHE"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BLOCKSIZE
+"BLOCKSIZE"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BLOOMFILTER
+"BLOOMFILTER"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_BLOOMS_ON_WRITE
+"CACHE_BLOOMS_ON_WRITE"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_DATA_IN_L1
+"CACHE_DATA_IN_L1"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_DATA_ON_WRITE
+"CACHE_DATA_ON_WRITE"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_INDEX_ON_WRITE
+"CACHE_INDEX_ON_WRITE"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPRESS_TAGS
+"COMPRESS_TAGS"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPRESSION
+"COMPRESSION"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPRESSION_COMPACT
+"COMPRESSION_COMPACT"
+
+
+
+
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DATA_BLOCK_ENCODING
+"DATA_BLOCK_ENCODING"
+
+
+
+
+public static final boolean
+DEFAULT_BLOCKCACHE
+true
+
+
+
+
+public static final int
+DEFAULT_BLOCKSIZE
+65536
+
+
+
+
+public static final boolean
+DEFAULT_CACHE_BLOOMS_ON_WRITE
+false
+
+
+
+
+public static final boolean
+DEFAULT_CACHE_DATA_IN_L1
+false
+
+
+
+
+public static final boolean
+DEFAULT_CACHE_DATA_ON_WRITE
+false
+
+
+
+
+public static final boolean
+DEFAULT_CACHE_INDEX_ON_WRITE
+false
+
+
+
+
+public static final boolean
+DEFAULT_COMPRESS_TAGS
+true
+
+
+
+
+public static final boolean
+DEFAULT_ENCODE_ON_DISK
+true
+
+
+
+
+public static final boolean
+DEFAULT_EVICT_B

[16/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html 
b/1.1/apidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
new file mode 100644
index 000..8785277
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
@@ -0,0 +1,320 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+NoTagsKeyValue (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class NoTagsKeyValue
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.KeyValue
+
+
+org.apache.hadoop.hbase.NoTagsKeyValue
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, HeapSize, SettableSequenceId, SettableTimestamp
+
+
+
+@InterfaceAudience.Private
+public class NoTagsKeyValue
+extends KeyValue
+An extension of the KeyValue where the tags length is 
always 0
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
class org.apache.hadoop.hbase.KeyValue
+KeyValue.KeyOnlyKeyValue, KeyValue.KVComparator, KeyValue.MetaComparator, KeyValue.RawBytesComparator, KeyValue.RowOnlyComparator, KeyValue.SamePrefixComparator, KeyValue.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+Fields inherited from class org.apache.hadoop.hbase.KeyValue
+bytes, COLUMN_FAMILY_DELIM_ARRAY,
 COLUMN_FAMILY_DELIMITER,
 COMPARATOR,
 FAMILY_LENGTH_SIZE,
 KEY_INFRASTRUCTURE_SIZE,
 KEY_LENGTH_SIZE,
 KEYVALUE_INFRASTRUCTURE_SIZE,
 KEYVALUE_WITH_TAGS_INFRASTRUCTURE_SIZE,
 length, LOWESTKEY,
 META_COMPARATOR,
 offset, 
RAW_COMPARATOR,
 ROW_LENGTH_SIZE,
 ROW_OFFSET,
 TAGS_LENGTH_SIZE,
 TIMESTAMP_SIZE,
 TIMESTAMP_TYPE_SIZE,
 TYPE_SIZE
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+NoTagsKeyValue(byte[] bytes,
+  int offset,
+  int length) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+int
+getTagsLength()
+This returns the total length of the tag bytes
+
+
+
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.KeyValue
+clone, cloneAndAddTags,
 create,
 create,
 createFirstOnRow,
 createFirstOnRow,
 createFirstOnRow,
 createKeyOnly,
 createKeyValueFromKey, createKeyValueFromKey,
 createKeyValueFromKey,
 equals,
 getBuffer,
 getDelimiter,
 getDelimiterInReverse,
 getFamily,
 getFamilyArray,
 getFamilyLength, getFamilyLength,
 getFamilyOffset,
 getKey, 
getKeyDataStructureSize,
 getKeyLength,
 getKeyOffset,
 getKeyString,
 getKeyValueDataStructureSize,
 
 getKeyValueDataStructureSize, getKeyValueDataStructureSize,
 getLength,
 getMvccVersion,
 getOffset,
 getQualifier,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRow, 
getRowArray, getRowLength,
 getRowOffset,
 getSequenceId,
 getTags, 
getTagsArray,
 getTagsOffset,
 getTimestamp,
 getTimestampOffset,
 getType, 
getTypeByte,
 getValue, getValueArray,
 getValueLength,
 getValueOffset,
 hashCode,
 heapSize,
 heapSizeWithoutTags,
 humanReadableTimestamp,
 iscreate,
 isDelete,
 isDelete, isLatestTimestamp,
 keyToString,
 keyToString,
 makeColumn,
 oswrite,
 oswrite,
 parseColumn,
 setSequenceId,
 setTimestamp, setTimestamp,
 shallowCopy,
 toString,
 toStringMap,
 updateLatestStamp,
 write,
 writeByteArray
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAl

[32/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HConstants.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HConstants.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HConstants.html
new file mode 100644
index 000..f5f8250
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HConstants.html
@@ -0,0 +1,5006 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+HConstants (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HConstants
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.HConstants
+
+
+
+
+
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Stable
+public final class HConstants
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+HConstants holds a bunch of HBase-related constants
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static int
+ADMIN_QOS 
+
+
+static int
+ALL_VERSIONS
+Define for 'return-all-versions'.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BASE_NAMESPACE_DIR 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BUCKET_CACHE_IOENGINE_KEY
+Current ioengine options in include: heap, offheap and 
file:PATH (where PATH is the path
+ to the file that will host the file-based cache.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BUCKET_CACHE_SIZE_KEY
+When using bucket cache, this is a float that EITHER 
represents a percentage of total heap
+ memory size to give to the cache (if < 1.0) OR, it is the capacity in 
megabytes of the cache.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BYTES_PER_CHECKSUM
+The name of the configuration parameter that specifies
+ the number of bytes in a newly created checksum chunk.
+
+
+
+static byte[]
+CATALOG_FAMILY
+The catalog family
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CATALOG_FAMILY_STR
+The catalog family as a string
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CHECKSUM_TYPE_NAME
+The name of the configuration parameter that specifies
+ the name of an algorithm that is used to compute checksums
+ for newly created blocks.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CIPHER_AES
+Default cipher for encryption
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CLIENT_PORT_STR
+The ZK client port key in the ZK properties map.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CLUSTER_DISTRIBUTED
+Cluster is in distributed mode or not
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CLUSTER_ID_DEFAULT
+Default value for cluster ID
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CLUSTER_ID_FILE_NAME
+name of the file for unique cluster ID
+
+
+
+static boolean
+CLUSTER_IS_DISTRIBUTED
+Cluster is fully-distributed
+
+
+
+static boolean
+CLUSTER_IS_LOCAL
+Cluster is standalone or pseudo-distributed
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPACTION_KV_MAX
+Parameter name for the maximum batch of KVs to be used 

[11/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/SplitLogCounters.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/SplitLogCounters.html 
b/1.1/apidocs/org/apache/hadoop/hbase/SplitLogCounters.html
new file mode 100644
index 000..0f5417c
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/SplitLogCounters.html
@@ -0,0 +1,976 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+SplitLogCounters (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class SplitLogCounters
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.SplitLogCounters
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class SplitLogCounters
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+Counters kept by the distributed WAL split log process.
+ Used by master and regionserver packages.
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_get_data_err 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_get_data_nonode 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_get_data_queued 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_get_data_result 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_get_data_retry 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_heartbeat 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_log_split_batch_err 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_log_split_batch_start 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_log_split_batch_success 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_log_split_err 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_log_split_start 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_log_split_success 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_missing_state_in_delete 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicLong
+tot_mgr_new_unexpected_wals 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/concurren

[35/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html 
b/1.1/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
new file mode 100644
index 000..9fb8ff8
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
@@ -0,0 +1,275 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+DroppedSnapshotException (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
DroppedSnapshotException
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
+
+
+http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+
+
+org.apache.hadoop.hbase.DroppedSnapshotException
+
+
+
+
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Stable
+public class DroppedSnapshotException
+extends http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+Thrown during flush if the possibility snapshot content was 
not properly
+ persisted into store files.  Response should include replay of wal 
content.
+See Also:Serialized
 Form
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+DroppedSnapshotException()
+default constructor
+
+
+
+DroppedSnapshotException(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
+http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed(java.lang.Throwable)"
 title="class or interface in java.lang">addSuppressed, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace()"
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getCause()"
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage()"
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getMessage()"
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace()"
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed()"
 title="class or interface in java.lang">getSuppressed, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#initCause(java.lang.Throwable)"
 title="class or interface in java.lang">initCause, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace()"
 title="class or interface in java.lang">printStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintStream)"
 title="class or interface in java.lang">printStackTrace, http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintWriter)"
 title="class or interface in java.lang">printStackTrace, http://docs.oracle

[08/51] [partial] hbase-site git commit: Empty commit

2016-11-07 Thread stack
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/TableName.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/TableName.html 
b/1.1/apidocs/org/apache/hadoop/hbase/TableName.html
new file mode 100644
index 000..8430fa9
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/TableName.html
@@ -0,0 +1,823 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+TableName (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class TableName
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.TableName
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public final class TableName
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+Immutable POJO class for representing a table name.
+ Which is of the form:
+ :
+ + Two special namespaces: + + 1. hbase - system namespace, used to contain hbase internal tables + 2. default - tables with no explicit specified namespace will + automatically fall into this namespace. + + ie + + a) foo:bar, means namespace=foo and qualifier=bar + b) bar, means namespace=default and qualifier=bar + c) default:bar, means namespace=default and qualifier=bar + + + Internally, in this class, we cache the instances to limit the number of objects and + make the "equals" faster. We try to minimize the number of objects created of + the number of array copy to check if we already have an instance of this TableName. The code + is not optimize for a new instance creation but is optimized to check for existence. + + + + + + + + + + + + +Field Summary + +Fields  + +Modifier and Type +Field and Description + + +static TableName +META_TABLE_NAME +The hbase:meta table's name. + + + +static char +NAMESPACE_DELIM +Namespace delimiter + + + +static TableName +NAMESPACE_TABLE_NAME +The Namespace table's name. + + + +static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +OLD_META_STR  + + +static TableName +OLD_META_TABLE_NAME +TableName for old .META. + + + +static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +OLD_ROOT_STR  + + +static TableName +OLD_ROOT_TABLE_NAME +TableName for old -ROOT- table. + + + +static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +VALID_NAMESPACE_REGEX  + + +static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +VALID_TABLE_QUALIFIER_REGEX  + + +static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +VALID_USER_TABLE_REGEX  + + + + + + + + + +Method Summary + +Methods  + +Modifier and Type +Method and Description + + +int +compareTo(TableName tableName) +For performance reasons, the ordering is not lexicographic. + + + +boolean +equals(http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true"; title="class or interface in java.lang">Object o)  + + +byte[] +getName()  + + +http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +getNameAsString()  + + +byte[] +getNamespace()  + + +http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in java.lang">String +getNamespaceAsString()  + + +http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true"; title="class or interface in

[20/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html 
b/1.1/apidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
new file mode 100644
index 000..d837b4c
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/LocalHBaseCluster.html
@@ -0,0 +1,797 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+LocalHBaseCluster (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class LocalHBaseCluster
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.LocalHBaseCluster
+
+
+
+
+
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class LocalHBaseCluster
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+This class creates a single process HBase cluster. One 
thread is created for
+ a master and one per region server.
+
+ Call startup()
 to start the cluster running and shutdown()
+ to close it all down. join()
 the cluster is you want to wait on
+ shutdown completion.
+
+ Runs master on port 16000 by default.  Because we can't just kill the
+ process -- not till HADOOP-1700 gets fixed and even then -- we need to
+ be able to find the master with a remote client to run shutdown.  To use a
+ port other than 16000, set the hbase.master to a value of 'local:PORT':
+ that is 'local', not 'localhost', and the port number the master should use
+ instead of 16000.
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+LOCAL
+local mode
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+LOCAL_COLON
+'local:'
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+LocalHBaseCluster(org.apache.hadoop.conf.Configuration conf)
+Constructor.
+
+
+
+LocalHBaseCluster(org.apache.hadoop.conf.Configuration conf,
+ int noRegionServers)
+Constructor.
+
+
+
+LocalHBaseCluster(org.apache.hadoop.conf.Configuration conf,
+ int noMasters,
+ int noRegionServers)
+Constructor.
+
+
+
+LocalHBaseCluster(org.apache.hadoop.conf.Configuration conf,
+ int noMasters,
+ int noRegionServers,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class masterClass,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class regionServerClass)
+Constructor.
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+org.apache.hadoop.hbase.util.JVMClusterUtil.MasterThread
+addMaster() 
+
+
+org.apache.hadoop.hbase.util.JVMClusterUtil.MasterThread
+addMaster(org.apache.hadoop.conf.Configuration c,
+ int index) 
+
+
+org.apache.hadoop.hbase.util.JVMClusterUtil.MasterThread
+addMaster(org.apache.hadoop.conf.Configuration c,
+ int index,
+ User user) 
+
+
+org.apache.hadoop.hbase.util.JVMClusterUtil.RegionServerThread
+addRegionServer() 
+
+
+org.apache.hadoop.hbase.util.JVMClusterUtil.RegionServerThread
+addRegionServer(org.apache.hadoop.conf.Configuration config,
+   int index) 
+
+
+org.apache.hadoop.hbase.util.JVMClusterUtil.RegionServerThread
+addRegionServer(org.apache.hadoop.conf.Configuration config,
+   int index,
+   User user) 
+
+
+org.apache.hadoop.hbase.master.HMaster
+getActiveMaster()
+Gets the current active master, if available.
+
+
+
+org.apache.hadoop.conf.Configuration
+getConfiguration() 
+
+
+http://docs.oracle.com/javase/7/doc

[12/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/ServerName.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/ServerName.html 
b/1.1/apidocs/org/apache/hadoop/hbase/ServerName.html
new file mode 100644
index 000..482b869
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/ServerName.html
@@ -0,0 +1,745 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+ServerName (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class ServerName
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ServerName
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class ServerName
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+Instance of an HBase ServerName.
+ A server name is used uniquely identifying a server instance in a cluster and 
is made
+ of the combination of hostname, port, and startcode.  The startcode 
distingushes restarted
+ servers on same hostname and port (startcode is usually timestamp of server 
startup). The
+ toString()
 format of ServerName is safe to use in the  filesystem and as znode name
+ up in ZooKeeper.  Its format is:
+  'SERVERNAME_SEPARATOR'
  'SERVERNAME_SEPARATOR'
 .
+ For example, if hostname is www.example.org, port is 
1234,
+ and the startcode for the regionserver is 1212121212, then
+ the toString()
 would be www.example.org,1234,1212121212.
+ 
+ You can obtain a versioned serialized form of this class by calling
+ getVersionedBytes().
  To deserialize, call parseVersionedServerName(byte[])
+ 
+ Immutable.
+See Also:Serialized
 Form
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+EMPTY_SERVER_LIST 
+
+
+static int
+NON_STARTCODE
+What to use if no startcode supplied.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern
+SERVERNAME_PATTERN 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+SERVERNAME_SEPARATOR
+This character is used as separator between server 
hostname, port and
+ startcode.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+UNKNOWN_SERVERNAME
+What to use if server name is unknown.
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+int
+compareTo(ServerName other) 
+
+
+boolean
+equals(http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o) 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getHostAndPort() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getHostname() 
+
+
+int
+getPort() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getServerName() 
+
+
+static http://docs.oracle.com/javase/7/docs/api/

[48/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/allclasses-noframe.html
--
diff --git a/1.1/apidocs/allclasses-noframe.html 
b/1.1/apidocs/allclasses-noframe.html
new file mode 100644
index 000..cfe4f2b
--- /dev/null
+++ b/1.1/apidocs/allclasses-noframe.html
@@ -0,0 +1,344 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+All Classes (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+All Classes
+
+
+AccessDeniedException
+Admin
+Append
+Attributes
+BadAuthException
+Base64
+Base64.Base64InputStream
+Base64.Base64OutputStream
+BinaryComparator
+BinaryPrefixComparator
+BitComparator
+BitComparator.BitwiseOp
+BloomType
+BufferedMutator
+BufferedMutator.ExceptionListener
+BufferedMutatorParams
+ByteArrayComparable
+ByteBufferOutputStream
+ByteBufferUtils
+ByteRange
+ByteRangeUtils
+Bytes
+Bytes.ByteArrayComparator
+Bytes.RowEndKeyComparator
+CallerDisconnectedException
+CallTimeoutException
+Cell
+CellCounter
+CellCreator
+CellUtil
+Cipher
+CipherProvider
+Client
+ClientBackoffPolicy
+ClockOutOfSyncException
+Cluster
+ClusterStatus
+ColumnCountGetFilter
+ColumnPaginationFilter
+ColumnPrefixFilter
+ColumnRangeFilter
+CompareFilter
+CompareFilter.CompareOp
+Compression.Algorithm
+Connection
+ConnectionClosingException
+ConnectionFactory
+Consistency
+Constants
+Context
+CoprocessorException
+CoprocessorRpcChannel
+CopyTable
+CorruptedSnapshotException
+Counter
+DataBlockEncoding
+DataType
+Decryptor
+DefaultCipherProvider
+Delete
+DependentColumnFilter
+DoNotRetryIOException
+DoNotRetryRegionException
+DroppedSnapshotException
+Durability
+Encryption
+Encryption.Context
+EncryptionTest
+Encryptor
+ExponentialClientBackoffPolicy
+Export
+ExportSnapshot
+ExportSnapshotException
+FailedLogCloseException
+FailedSanityCheckException
+FailedServerException
+FailedSyncBeforeLogCloseException
+FamilyFilter
+FatalConnectionException
+FileSystemVersionException
+Filter
+Filter.ReturnCode
+FilterList
+FilterList.Operator
+FirstKeyOnlyFilter
+FirstKeyValueMatchingQualifiersFilter
+FixedLengthWrapper
+ForeignException
+FuzzyRowFilter
+Get
+GroupingTableMap
+GroupingTableMapper
+HBaseConfiguration
+HBaseInterfaceAudience
+HBaseIOException
+HBaseSnapshotException
+HColumnDescriptor
+HConnection
+HConnectionManager
+HConstants
+HFileOutputFormat
+HFileOutputFormat2
+HLogInputFormat
+HRegionInfo
+HRegionLocation
+HRegionPartitioner
+HRegionPartitioner
+HTableDescriptor
+HTableFactory
+HTableInterfaceFactory
+HTableMultiplexer
+HTableMultiplexer.HTableMultiplexerStatus
+IdentityTableMap
+IdentityTableMapper
+IdentityTableReduce
+IdentityTableReducer
+ImmutableBytesWritable
+ImmutableBytesWritable.Comparator
+Import
+ImportTsv
+InclusiveStopFilter
+IncompatibleFilterException
+Increment
+InterfaceAudience
+InterfaceStability
+InvalidFamilyOperationException
+InvalidRowFilterException
+IsolationLevel
+JsonMapper
+KeepDeletedCells
+KeyOnlyFilter
+KeyProvider
+KeyStoreKeyProvider
+KeyValueSortReducer
+LeaseException
+LeaseNotRecoveredException
+LoadIncrementalHFiles
+LocalHBaseCluster
+LockTimeoutException
+LongComparator
+MasterNotRunningException
+MD5Hash
+MergeRegionException
+MiniZooKeeperCluster
+MultipleColumnPrefixFilter
+MultiRowRangeFilter
+MultiRowRangeFilter.RowRange
+MultiTableInputFormat
+MultiTableInputFormatBase
+MultiTableOutputFormat
+Mutation
+NamespaceDescriptor
+NamespaceDescriptor.Builder
+NamespaceExistException
+NamespaceNotFoundException
+NoServerForRegionException
+NoSuchColumnFamilyException
+NotAllMetaRegionsOnlineException
+NotServingRegionException
+NullComparator
+Operation
+OperationConflictException
+OperationWithAttributes
+Order
+OrderedBlob
+OrderedBlobVar
+OrderedBytes
+OrderedBytesBase
+OrderedFloat32
+OrderedFloat64
+OrderedInt16
+OrderedInt32
+OrderedInt64
+OrderedInt8
+OrderedNumeric
+OrderedString
+PageFilter
+Pair
+PairOfSameType
+ParseConstants
+ParseFilter
+PBType
+PleaseHoldException
+PositionedByteRange
+PreemptiveFastFailException
+PrefixFilter
+ProcedureInfo
+Put
+PutCombiner
+PutSortReducer
+QualifierFilter
+Query
+QuotaExceededException
+QuotaFilter
+QuotaRetriever
+QuotaScope
+QuotaSettings
+QuotaSettingsFactory
+QuotaType
+RandomRowFilter
+RawByte
+RawBytes
+RawBytesFixedLength
+RawBytesTerminated
+RawDouble
+RawFloat
+RawInteger
+RawLong
+RawShort
+RawString
+RawStringFixedLength
+RawStringTerminated
+ReadOnlyByteRangeException
+RegexStringComparator
+RegexStringComparator.EngineType
+RegionAlreadyInTransitionException
+RegionException
+RegionInRecoveryException
+RegionLoad
+RegionLocator
+RegionOfflineException
+RegionServerAbortedException
+RegionServerRunningException
+RegionServerStoppedException
+RegionTooBusyException
+RemoteAdmin
+RemoteHTable
+RemoteWithExtrasException
+ReplicationAdmin
+ReplicationException
+ReplicationPeerConfig
+Response
+RestoreSnapshotException
+Result
+ResultScanner
+RetriesExhaustedException
+RetriesExhaustedWithDetailsException
+Row
+RowCounter
+RowCounter

[42/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/CellComparator.RowComparator.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/CellComparator.RowComparator.html 
b/1.1/apidocs/org/apache/hadoop/hbase/CellComparator.RowComparator.html
new file mode 100644
index 000..81dc01c
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/CellComparator.RowComparator.html
@@ -0,0 +1,310 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+CellComparator.RowComparator (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No 
Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
CellComparator.RowComparator
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.CellComparator
+
+
+org.apache.hadoop.hbase.CellComparator.RowComparator
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator
+
+
+Enclosing class:
+CellComparator
+
+
+
+public static class CellComparator.RowComparator
+extends CellComparator
+Counter part for the KeyValue.RowOnlyComparator
+See Also:Serialized
 Form
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
class org.apache.hadoop.hbase.CellComparator
+CellComparator.RowComparator
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+CellComparator.RowComparator() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+int
+compare(Cell a,
+   Cell b) 
+
+
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.CellComparator
+areKeyLengthsEqual,
 areRowLengthsEqual,
 compare,
 compareColumns,
 compareCommonFamilyPrefix,
 compareCommonQualifierPrefix, compareCommonRowPrefix,
 compareFamilies,
 compareFlatKey,
 compareQualifiers,
 compareRows,
 compareRows, compareTimestamps,
 compareWithoutRow,
 equals,
 equalsFamily,
 equalsIgnoreMvccVersion,
 equalsQualifier, equalsRow,
 equalsTimestamp,
 equalsType,
 findCommonPrefixInFamilyPart,
 findCommonPrefixInQualifierPart,
 findCommonPrefixInRowPart,
 getMidpoint,
 hashCode,
 hashCodeIgnoreMvcc
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)"
 title="class or interface in java.lang">wait
+
+
+
+
+
+Methods inherited from 

[17/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/NamespaceDescriptor.Builder.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/NamespaceDescriptor.Builder.html 
b/1.1/apidocs/org/apache/hadoop/hbase/NamespaceDescriptor.Builder.html
new file mode 100644
index 000..dbc5539
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/NamespaceDescriptor.Builder.html
@@ -0,0 +1,269 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+NamespaceDescriptor.Builder (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class 
NamespaceDescriptor.Builder
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.NamespaceDescriptor.Builder
+
+
+
+
+
+
+
+Enclosing class:
+NamespaceDescriptor
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public static class NamespaceDescriptor.Builder
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+NamespaceDescriptor.Builder
+addConfiguration(http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String> configuration) 
+
+
+NamespaceDescriptor.Builder
+addConfiguration(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
+
+
+NamespaceDescriptor
+build() 
+
+
+NamespaceDescriptor.Builder
+removeConfiguration(http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key) 
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)"
 title="class or interface in java.lang">wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+addConfiguration
+public NamespaceDescriptor.Builder addConfiguration(http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true";
 title="class or inte

[50/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/.htaccess
--
diff --git a/1.1/.htaccess b/1.1/.htaccess
new file mode 100644
index 000..20bf651
--- /dev/null
+++ b/1.1/.htaccess
@@ -0,0 +1,8 @@
+
+# Redirect replication URL to the right section of the book
+# Rule added 2015-1-12 -- can be removed in 6 months
+Redirect permanent /replication.html /book.html#_cluster_replication
+
+# Redirect old page-per-chapter book sections to new single file.
+RedirectMatch permanent ^/book/(.*)\.html$ /book.html#$1
+RedirectMatch permanent ^/book/$ /book.html

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/architecture.gif
--
diff --git a/1.1/_chapters/images/architecture.gif 
b/1.1/_chapters/images/architecture.gif
new file mode 100644
index 000..8d84a23
Binary files /dev/null and b/1.1/_chapters/images/architecture.gif differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/bc_basic.png
--
diff --git a/1.1/_chapters/images/bc_basic.png 
b/1.1/_chapters/images/bc_basic.png
new file mode 100644
index 000..231de93
Binary files /dev/null and b/1.1/_chapters/images/bc_basic.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/bc_config.png
--
diff --git a/1.1/_chapters/images/bc_config.png 
b/1.1/_chapters/images/bc_config.png
new file mode 100644
index 000..53250cf
Binary files /dev/null and b/1.1/_chapters/images/bc_config.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/bc_l1.png
--
diff --git a/1.1/_chapters/images/bc_l1.png b/1.1/_chapters/images/bc_l1.png
new file mode 100644
index 000..36d7e55
Binary files /dev/null and b/1.1/_chapters/images/bc_l1.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/bc_l2_buckets.png
--
diff --git a/1.1/_chapters/images/bc_l2_buckets.png 
b/1.1/_chapters/images/bc_l2_buckets.png
new file mode 100644
index 000..5163928
Binary files /dev/null and b/1.1/_chapters/images/bc_l2_buckets.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/bc_stats.png
--
diff --git a/1.1/_chapters/images/bc_stats.png 
b/1.1/_chapters/images/bc_stats.png
new file mode 100644
index 000..d8c6384
Binary files /dev/null and b/1.1/_chapters/images/bc_stats.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/big_h_logo.png
--
diff --git a/1.1/_chapters/images/big_h_logo.png 
b/1.1/_chapters/images/big_h_logo.png
new file mode 100644
index 000..5256094
Binary files /dev/null and b/1.1/_chapters/images/big_h_logo.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/big_h_logo.svg
--
diff --git a/1.1/_chapters/images/big_h_logo.svg 
b/1.1/_chapters/images/big_h_logo.svg
new file mode 100644
index 000..ab24198
--- /dev/null
+++ b/1.1/_chapters/images/big_h_logo.svg
@@ -0,0 +1,139 @@
+
+
+
+http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   width="792px"
+   height="612px"
+   viewBox="0 0 792 612"
+   enable-background="new 0 0 792 612"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="big_h_same_font_hbase3_logo.png"
+   inkscape:export-filename="big_h_bitmap.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">image/svg+xmlhttp://purl.org/dc/dcmitype/StillImage"; 
/>
+
+
+
+
+
+
+
+
+APACHE
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/coprocessor_stats.png
--
diff --git a/1.1/_chapters/images/coprocessor_stats.png 
b/1.1/_chapters/images/coprocessor_stats.png
new file mode 100644
index 000..2fc8703
Binary files /dev/null and b/1.1/_chapters/images/coprocessor_stats.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/_chapters/images/data

[34/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
new file mode 100644
index 000..a8cddec
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
@@ -0,0 +1,2536 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+HColumnDescriptor (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HColumnDescriptor
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.HColumnDescriptor
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, 
org.apache.hadoop.io.Writable, org.apache.hadoop.io.WritableComparable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class HColumnDescriptor
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements org.apache.hadoop.io.WritableComparable
+An HColumnDescriptor contains information about a column 
family such as the
+ number of versions, compression settings, etc.
+
+ It is used as input when creating a table or adding a column.
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BLOCKCACHE
+Key for the BLOCKCACHE attribute.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BLOCKSIZE
+Size of storefile/hfile 'blocks'.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+BLOOMFILTER 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_BLOOMS_ON_WRITE 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_DATA_IN_L1
+Key for cache data into L1 if cache is set up with more 
than one tier.
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_DATA_ON_WRITE 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+CACHE_INDEX_ON_WRITE 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPRESS_TAGS 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPRESSION 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+COMPRESSION_COMPACT 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DATA_BLOCK_ENCODING 
+
+
+static boolean
+DEFAULT_BLOCKCACHE
+Default setting for whether to use a block cache or 
not.
+
+
+
+static int
+DEFAULT_BLOCKSIZE
+Default size of blocks in files stored to the filesytem 
(hfiles).
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DEFAULT_BLOOMFILTER
+Default setting for whether or not to use 
bloomfilters.
+
+
+
+static boolean
+DEFAULT_CACHE_BLOOMS_ON_WRITE
+Default setting for whether to cache bloom filter blocks on 
write if block
+ caching is enabled.
+
+
+
+static boolean
+DEFAULT_CACHE_DATA_IN_L1
+Default setting for whether to cache data blocks in L1 
t

[18/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.html 
b/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.html
new file mode 100644
index 000..b672dda
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/MetaTableAccessor.html
@@ -0,0 +1,1629 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+MetaTableAccessor (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class MetaTableAccessor
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.MetaTableAccessor
+
+
+
+
+
+
+
+
+@InterfaceAudience.Private
+public class MetaTableAccessor
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+Read/write operations on region and assignment information 
store in
+ hbase:meta.
+
+ Some of the methods of this class take ZooKeeperWatcher as a param. The only 
reason
+ for this is because when used on client-side (like from HBaseAdmin), we want 
to use
+ short-living connection (opened before each operation, closed right after), 
while
+ when used on HM or HRS (like in AssignmentManager) we want permanent 
connection.
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+Nested Classes 
+
+Modifier and Type
+Class and Description
+
+
+static interface 
+MetaTableAccessor.Visitor
+Implementations 'visit' a catalog table row.
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+protected static char
+META_REPLICA_ID_DELIMITER
+The delimiter for meta columns for replicaIds > 0
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+MetaTableAccessor() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+static void
+addDaughter(Connection connection,
+   HRegionInfo regionInfo,
+   ServerName sn,
+   long openSeqNum)
+Adds a daughter region entry to meta.
+
+
+
+static Put
+addDaughtersToPut(Put put,
+ HRegionInfo splitA,
+ HRegionInfo splitB)
+Adds split daughters to the Put
+
+
+
+static Put
+addEmptyLocation(Put p,
+int replicaId) 
+
+
+static Put
+addLocation(Put p,
+   ServerName sn,
+   long openSeqNum,
+   long time,
+   int replicaId) 
+
+
+static void
+addRegionsToMeta(Connection connection,
+http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regionInfos,
+int regionReplication)
+Adds a hbase:meta row for each of the specified new 
regions.
+
+
+
+static void
+addRegionsToMeta(Connection connection,
+http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regionInfos,
+int regionReplication,
+long ts)
+Adds a hbase:meta row for each of the specified new 
regions.
+
+
+
+static void
+addRegionToMeta(Connection connection,
+   HRegionInfo regionInfo)
+Adds a hbase:meta row for the specified new region.
+
+
+
+static void
+addRegionToMeta(Connection connection,
+   HRegionInfo regionInfo,
+   HRegionInfo splitA,
+   HRegionInfo splitB)
+Adds a (single) hbase:meta row for the specified new region 
and its daughters.
+
+
+
+static void
+addRegionToMeta(Table meta,
+   HRegionInfo regionInfo)
+Adds a hbase:meta row for the specified new region to the 
given catalog table.
+
+
+
+static void
+addRegionToMeta(Table meta,
+   HRegionInfo regionInfo,
+   HRegionInfo splitA,
+   HRegionInfo splitB)
+Adds a (single) hbase:meta row for the specified new region 
and its daughters.
+
+
+
+static void
+deleteFromMetaTable(Connection connection,
+   http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true";
 

[15/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/ProcedureInfo.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/ProcedureInfo.html 
b/1.1/apidocs/org/apache/hadoop/hbase/ProcedureInfo.html
new file mode 100644
index 000..69c10f0
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/ProcedureInfo.html
@@ -0,0 +1,520 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+ProcedureInfo (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class ProcedureInfo
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ProcedureInfo
+
+
+
+
+
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class ProcedureInfo
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+Procedure information
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ProcedureInfo(long procId,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String procName,
+ http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String procOwner,
+ 
org.apache.hadoop.hbase.protobuf.generated.ProcedureProtos.ProcedureState procState,
+ long parentId,
+ org.apache.hadoop.hbase.util.NonceKey nonceKey,
+ 
org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.ForeignExceptionMessage exception,
+ long lastUpdate,
+ long startTime,
+ byte[] result) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+ProcedureInfo
+clone() 
+
+
+long
+executionTime() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+getException() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getExceptionCause() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getExceptionFullMessage() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getExceptionMessage() 
+
+
+long
+getLastUpdate() 
+
+
+org.apache.hadoop.hbase.util.NonceKey
+getNonceKey() 
+
+
+long
+getParentId() 
+
+
+long
+getProcId() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getProcName() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getProcOwner() 
+
+
+org.apache.hadoop.hbase.protobuf.generated.ProcedureProtos.ProcedureState
+getProcState() 
+
+
+byte[]
+getResult() 
+
+
+long
+getStartTime() 
+
+
+boolean
+hasParentId() 
+
+
+boolean
+hasResultData() 
+
+
+boolean
+isFailed() 
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+toString() 
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/jav

[43/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/index.html
--
diff --git a/1.1/apidocs/index.html b/1.1/apidocs/index.html
new file mode 100644
index 000..2140941
--- /dev/null
+++ b/1.1/apidocs/index.html
@@ -0,0 +1,74 @@
+http://www.w3.org/TR/html4/frameset.dtd";>
+
+
+
+
+Apache HBase 1.1.8-SNAPSHOT API
+
+targetPage = "" + window.location.search;
+if (targetPage != "" && targetPage != "undefined")
+targetPage = targetPage.substring(1);
+if (targetPage.indexOf(":") != -1 || (targetPage != "" && 
!validURL(targetPage)))
+targetPage = "undefined";
+function validURL(url) {
+try {
+url = decodeURIComponent(url);
+}
+catch (error) {
+return false;
+}
+var pos = url.indexOf(".html");
+if (pos == -1 || pos != url.length - 5)
+return false;
+var allowNumber = false;
+var allowSep = false;
+var seenDot = false;
+for (var i = 0; i < url.length - 5; i++) {
+var ch = url.charAt(i);
+if ('a' <= ch && ch <= 'z' ||
+'A' <= ch && ch <= 'Z' ||
+ch == '$' ||
+ch == '_' ||
+ch.charCodeAt(0) > 127) {
+allowNumber = true;
+allowSep = true;
+} else if ('0' <= ch && ch <= '9'
+|| ch == '-') {
+if (!allowNumber)
+ return false;
+} else if (ch == '/' || ch == '.') {
+if (!allowSep)
+return false;
+allowNumber = false;
+allowSep = false;
+if (ch == '.')
+ seenDot = true;
+if (ch == '/' && seenDot)
+ return false;
+} else {
+return false;
+}
+}
+return true;
+}
+function loadFrames() {
+if (targetPage != "" && targetPage != "undefined")
+ top.classFrame.location = top.targetPage;
+}
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+Frame Alert
+This document is designed to be viewed using the frames feature. If you see 
this message, you are using a non-frame-capable web client. Link to Non-frame version.
+
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/javadoc.sh
--
diff --git a/1.1/apidocs/javadoc.sh b/1.1/apidocs/javadoc.sh
new file mode 100755
index 000..d7f86b9
--- /dev/null
+++ b/1.1/apidocs/javadoc.sh
@@ -0,0 +1 @@
+/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/bin/javadoc 
-J-Xmx2048m @options @packages
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/options
--
diff --git a/1.1/apidocs/options b/1.1/apidocs/options
new file mode 100644
index 000..a3e8533
--- /dev/null
+++ b/1.1/apidocs/options
@@ -0,0 +1,29 @@
+-classpath
+'/Users/stack/checkouts/hbase.git/target/classes:/Users/stack/checkouts/hbase.git/hbase-checkstyle/target/classes:/Users/stack/checkouts/hbase.git/hbase-resource-bundle/target/classes:/Users/stack/checkouts/hbase.git/hbase-annotations/target/classes:/Users/stack/checkouts/hbase.git/hbase-protocol/target/classes:/Users/stack/checkouts/hbase.git/hbase-common/target/classes:/Users/stack/checkouts/hbase.git/hbase-procedure/target/classes:/Users/stack/checkouts/hbase.git/hbase-client/target/classes:/Users/stack/checkouts/hbase.git/hbase-hadoop-compat/target/classes:/Users/stack/checkouts/hbase.git/hbase-hadoop2-compat/target/classes:/Users/stack/checkouts/hbase.git/hbase-prefix-tree/target/classes:/Users/stack/checkouts/hbase.git/hbase-server/target/classes:/Users/stack/checkouts/hbase.git/hbase-testing-util/target/classes:/Users/stack/checkouts/hbase.git/hbase-thrift/target/classes:/Users/stack/checkouts/hbase.git/hbase-rest/target/classes:/Users/stack/checkouts/hbase.git/hbase-shell/ta
 
rget/classes:/Users/stack/checkouts/hbase.git/hbase-it/target/classes:/Users/stack/checkouts/hbase.git/hbase-examples/target/classes:/Users/stack/checkouts/hbase.git/hbase-assembly/target/classes:/Users/stack/checkouts/hbase.git/hbase-shaded/target/classes:/Users/stack/checkouts/hbase.git/hbase-shaded/hbase-shaded-client/target/classes:/Users/stack/checkouts/hbase.git/hbase-shaded/hbase-shaded-server/target/classes:/Users/stack/.m2/repository/org/apache/directory/api/api-asn1-api/1.0.0-M20/api-asn1-api-1.0.0-M20.jar:/Users/stack/.m2/repository/org/apache/hadoop/hadoop-minicluster/2.5.1/hadoop-minicluster-2.5.1.jar:/Users/stack/.m2/repository/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.jar:/Users/stack/.m2/repository/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.jar:/Users

[23/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.html 
b/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.html
new file mode 100644
index 000..2986686
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/KeyValue.html
@@ -0,0 +1,2986 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+KeyValue (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class KeyValue
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.KeyValue
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, HeapSize, SettableSequenceId, SettableTimestamp
+
+
+Direct Known Subclasses:
+KeyValue.KeyOnlyKeyValue, NoTagsKeyValue
+
+
+
+@InterfaceAudience.Private
+public class KeyValue
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements Cell, HeapSize, http://docs.oracle.com/javase/7/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, SettableSequenceId, SettableTimestamp
+An HBase Key/Value. This is the fundamental HBase Type.
+ 
+ HBase applications and users should use the Cell interface and avoid directly 
using KeyValue
+ and member functions not defined in Cell.
+ 
+ If being used client-side, the primary methods to access individual fields 
are getRow(),
+ getFamily(),
 getQualifier(),
 getTimestamp(),
 and getValue().
+ These methods allocate new byte arrays and return copies. Avoid their use 
server-side.
+ 
+ Instances of this class are immutable. They do not implement Comparable but 
Comparators are
+ provided. Comparators change with context, whether user table or a catalog 
table comparison. Its
+ critical you use the appropriate comparator. There are Comparators for normal 
HFiles, Meta's
+ Hfiles, and bloom filter keys.
+ 
+ KeyValue wraps a byte array and takes offsets and lengths into passed array 
at where to start
+ interpreting the content as KeyValue. The KeyValue format inside a byte array 
is:
+     Key is 
further decomposed as:
+     

+  
+ The rowlength maximum is Short.MAX_SIZE, column 
family length maximum
+ is Byte.MAX_SIZE, and column qualifier + key length must be <
+ Integer.MAX_SIZE. The column does not contain the 
family/qualifier delimiter,
+ COLUMN_FAMILY_DELIMITER
+ KeyValue can optionally contain Tags. When it contains tags, it is added in 
the byte array after
+ the value part. The format for this part is: 
.
+ tagslength maximum is Short.MAX_SIZE. The 
tagsbytes
+ contain one or more tags where as each tag is of the form
+ .  tagtype 
is one byte and
+ taglength maximum is Short.MAX_SIZE and it includes 
1 byte type length
+ and actual tag bytes length.
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+Nested Classes 
+
+Modifier and Type
+Class and Description
+
+
+static class 
+KeyValue.KeyOnlyKeyValue
+A simple form of KeyValue that creates a keyvalue with only 
the key part of the byte[]
+ Mainly used in places where we need to compare two cells.
+
+
+
+static class 
+KeyValue.KVComparator
+Compare KeyValues.
+
+
+
+static class 
+KeyValue.MetaComparator
+A KeyValue.KVComparator 
for hbase:meta catalog table
+ KeyValues.
+
+
+
+static class 
+KeyValue.RawBytesComparator
+This is a TEST only Comparator used in TestSeekTo and 
TestReseekTo.
+
+
+
+static class 
+KeyValue.RowOnlyComparator
+Comparator that compares row component only of a 
KeyValue.
+
+
+
+static interface 
+KeyValue.SamePrefixComparator
+Avoids redundant comparisons for better performance.
+
+
+
+static class 
+KeyValue.Type
+Key type.
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+protected byte[]
+bytes 
+
+
+static byte[]

[06/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/TagRewriteCell.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/TagRewriteCell.html 
b/1.1/apidocs/org/apache/hadoop/hbase/TagRewriteCell.html
new file mode 100644
index 000..f18c1c6
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/TagRewriteCell.html
@@ -0,0 +1,803 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+TagRewriteCell (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class TagRewriteCell
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.TagRewriteCell
+
+
+
+
+
+
+
+All Implemented Interfaces:
+Cell, HeapSize, SettableSequenceId, SettableTimestamp
+
+
+
+@InterfaceAudience.Private
+public class TagRewriteCell
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements Cell, SettableSequenceId, SettableTimestamp, HeapSize
+This can be used when a Cell has to change with 
addition/removal of one or more tags. This is an
+ efficient way to do so in which only the tags bytes part need to recreated 
and copied. All other
+ parts, refer to the original Cell.
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+TagRewriteCell(Cell cell,
+  byte[] tags) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+byte[]
+getFamily()
+Deprecated. 
+
+
+
+byte[]
+getFamilyArray()
+Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
+ containing array.
+
+
+
+byte
+getFamilyLength() 
+
+
+int
+getFamilyOffset() 
+
+
+long
+getMvccVersion()
+Deprecated. 
+
+
+
+byte[]
+getQualifier()
+Deprecated. 
+
+
+
+byte[]
+getQualifierArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+int
+getQualifierLength() 
+
+
+int
+getQualifierOffset() 
+
+
+byte[]
+getRow()
+Deprecated. 
+
+
+
+byte[]
+getRowArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+short
+getRowLength() 
+
+
+int
+getRowOffset() 
+
+
+long
+getSequenceId()
+A region-specific unique monotonically increasing sequence 
ID given to each Cell.
+
+
+
+byte[]
+getTagsArray() 
+
+
+int
+getTagsLength() 
+
+
+int
+getTagsOffset() 
+
+
+long
+getTimestamp() 
+
+
+byte
+getTypeByte() 
+
+
+byte[]
+getValue()
+Deprecated. 
+
+
+
+byte[]
+getValueArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+int
+getValueLength() 
+
+
+int
+getValueOffset() 
+
+
+long
+heapSize() 
+
+
+void
+setSequenceId(long seqId)
+Sets with the given seqId.
+
+
+
+void
+setTimestamp(byte[] ts,
+int tsOffset)
+Sets with the given timestamp.
+
+
+
+void
+setTimestamp(long ts)
+Sets with the given timestamp.
+
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang

[31/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HDFSBlocksDistribution.HostAndWeight.WeightComparator.html
--
diff --git 
a/1.1/apidocs/org/apache/hadoop/hbase/HDFSBlocksDistribution.HostAndWeight.WeightComparator.html
 
b/1.1/apidocs/org/apache/hadoop/hbase/HDFSBlocksDistribution.HostAndWeight.WeightComparator.html
new file mode 100644
index 000..c6f3ee1
--- /dev/null
+++ 
b/1.1/apidocs/org/apache/hadoop/hbase/HDFSBlocksDistribution.HostAndWeight.WeightComparator.html
@@ -0,0 +1,281 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+HDFSBlocksDistribution.HostAndWeight.WeightComparator (Apache HBase 
1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev 
Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HDFSBlocksDistribution.HostAndWeight.WeightComparator
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.HDFSBlocksDistribution.HostAndWeight.WeightComparator
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator
+
+
+Enclosing class:
+HDFSBlocksDistribution.HostAndWeight
+
+
+
+public static class HDFSBlocksDistribution.HostAndWeight.WeightComparator
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator
+comparator used to sort hosts based on weight
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+HDFSBlocksDistribution.HostAndWeight.WeightComparator() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods 
+
+Modifier and Type
+Method and Description
+
+
+int
+compare(HDFSBlocksDistribution.HostAndWeight l,
+   HDFSBlocksDistribution.HostAndWeight r) 
+
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone()"
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize()"
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass()"
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode()"
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify()"
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/7/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()"
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait()"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long)"
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)"
 title="class or interface in java.lang">wait
+
+
+
+
+
+Methods inherited from interface java.util.http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator
+http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true#equals(java.lang.Object)"
 title="class or interface in java.util

[30/51] [partial] hbase-site git commit: Empty commit

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6960a0bd/1.1/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
--
diff --git a/1.1/apidocs/org/apache/hadoop/hbase/HRegionInfo.html 
b/1.1/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
new file mode 100644
index 000..ebe2480
--- /dev/null
+++ b/1.1/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
@@ -0,0 +1,1729 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+HRegionInfo (Apache HBase 1.1.8-SNAPSHOT API)
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next 
Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class HRegionInfo
+
+
+
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.HRegionInfo
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+
+
+
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
+public class HRegionInfo
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+implements http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+Information about a region. A region is a range of keys in 
the whole keyspace of a table, an
+ identifier (a timestamp) for differentiating between subset ranges (after 
region split)
+ and a replicaId for differentiating the instance for the same range and some 
status information
+ about the region.
+
+ The region has a unique name which consists of the following fields:
+  tableName   : The name of the table 
+  startKey: The startKey for the region. 
+  regionId: A timestamp when the region is created. 
+  replicaId   : An id starting from 0 to differentiate replicas of the 
same region range
+ but hosted in separated servers. The same region range can be hosted in 
multiple locations.
+  encodedName : An MD5 encoded string for the region name.
+
+  Other than the fields in the region name, region info contains:
+  endKey  : the endKey for the region (exclusive) 
+  split   : Whether the region is split 
+  offline : Whether the region is offline 
+
+ In 0.98 or before, a list of table's regions would fully cover the total 
keyspace, and at any
+ point in time, a row key always belongs to a single region, which is hosted 
in a single server.
+ In 0.99+, a region can have multiple instances (called replicas), and thus a 
range (or row) can
+ correspond to multiple HRegionInfo's. These HRI's share the same fields 
however except the
+ replicaId field. If the replicaId is not set, it defaults to 0, which is 
compatible with the
+ previous behavior of a range corresponding to 1 region.
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+static int
+DEFAULT_REPLICA_ID 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+ENCODED_REGION_NAME_REGEX
+A non-capture group so that this can be embedded.
+
+
+
+static HRegionInfo
+FIRST_META_REGIONINFO
+HRegionInfo for first meta region
+
+
+
+static int
+MD5_HEX_LENGTH 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+NO_HASH 
+
+
+static byte
+REPLICA_ID_DELIMITER 
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+REPLICA_ID_FORMAT 
+
+
+static byte
+VERSION
+Deprecated. 
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+HRegionInfo()
+Deprecated. 
+As of release 0.96
+ (https://issues.apache.org/jira/browse/HBASE-5453";>HBASE-5453).
+ This will be removed in HBase 2.0.0.
+ Used by Writables and Writables are going away.
+
+
+
+
+HRegionInfo(HRegionInfo other)
+Costruct a copy of another HRegionInfo
+
+
+
+HRegionInfo(HRegionInfo other,
+   int replicaId) 
+
+
+HRegionInfo(long regionId,
+   TableName tableName,

hbase git commit: HBASE-17046 Add 1.1 doc to hbase.apache.org

Repository: hbase
Updated Branches:
  refs/heads/master 0512b4d01 -> d9316a64a


HBASE-17046 Add 1.1 doc to hbase.apache.org


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

Branch: refs/heads/master
Commit: d9316a64a9b271222c0cb4ea52f40a4dedc86676
Parents: 0512b4d
Author: Michael Stack 
Authored: Mon Nov 7 22:16:32 2016 -0800
Committer: Michael Stack 
Committed: Mon Nov 7 22:16:48 2016 -0800

--
 src/main/site/site.xml | 5 +
 1 file changed, 5 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/d9316a64/src/main/site/site.xml
--
diff --git a/src/main/site/site.xml b/src/main/site/site.xml
index 38dc0c1..a11e7e9 100644
--- a/src/main/site/site.xml
+++ b/src/main/site/site.xml
@@ -108,6 +108,11 @@
   
   
   
+  
+
+
+
+