[5/7] hbase-site git commit: Published site at ac0b3bb5477612cb8844c4ef10fa2be0f1d1a025.

2018-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/project-info.html
--
diff --git a/project-info.html b/project-info.html
index f4f2edc..89ab097 100644
--- a/project-info.html
+++ b/project-info.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Information
 
@@ -345,7 +345,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/project-reports.html
--
diff --git a/project-reports.html b/project-reports.html
index bf9db35..1582b0c 100644
--- a/project-reports.html
+++ b/project-reports.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Generated Reports
 
@@ -315,7 +315,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/project-summary.html
--
diff --git a/project-summary.html b/project-summary.html
index dfd0924..224074a 100644
--- a/project-summary.html
+++ b/project-summary.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Summary
 
@@ -341,7 +341,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/pseudo-distributed.html
--
diff --git a/pseudo-distributed.html b/pseudo-distributed.html
index 2c157f6..7a4131e 100644
--- a/pseudo-distributed.html
+++ b/pseudo-distributed.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase   
 Running Apache HBase (TM) in pseudo-distributed mode
@@ -318,7 +318,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/replication.html
--
diff --git a/replication.html b/replication.html
index a76e21c..e46b046 100644
--- a/replication.html
+++ b/replication.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  
   Apache HBase (TM) Replication
@@ -313,7 +313,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/resources.html
--
diff --git a/resources.html b/resources.html
index b774d37..539ce56 100644
--- a/resources.html
+++ b/resources.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Other Apache HBase (TM) Resources
 
@@ -341,7 +341,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/source-repository.html
--
diff --git a/source-repository.html b/source-repository.html
index 3c76c13..bdabc08 100644
--- a/source-repository.html
+++ b/source-repository.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Source Code Management
 
@@ -309,7 +309,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-12-14
+  Last Published: 
2018-12-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/89e883f3/sponsors.html

[5/7] hbase-site git commit: Published site at 7997c5187fac0968435cb0bd19553f56cc7e00c3.

2018-11-07 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/book.html
--
diff --git a/book.html b/book.html
index 975a275..a7e5e71 100644
--- a/book.html
+++ b/book.html
@@ -27632,7 +27632,165 @@ For performance consider the following general 
options:
 
 
 
-149.11. Export
+149.11. HashTable/SyncTable
+
+HashTable/SyncTable is a two steps tool for synchronizing table data, where 
each of the steps are implemented as MapReduce jobs.
+Similarly to CopyTable, it can be used for partial or entire table data 
syncing, under same or remote cluster.
+However, it performs the sync in a more efficient way than CopyTable. Instead 
of copying all cells
+in specified row key/time period range, HashTable (the first step) creates 
hashed indexes for batch of cells on source table and output those as results.
+On the next stage, SyncTable scans the source table and now calculates hash 
indexes for table cells,
+compares these hashes with the outputs of HashTable, then it just scans (and 
compares) cells for diverging hashes, only updating
+mismatching cells. This results in less network traffic/data transfers, which 
can be impacting when syncing large tables on remote clusters.
+
+
+149.11.1. Step 1, HashTable
+
+First, run HashTable on the source table cluster (this is the table whose 
state will be copied to its counterpart).
+
+
+Usage:
+
+
+
+$ ./bin/hbase org.apache.hadoop.hbase.mapreduce.HashTable --help
+Usage: HashTable [options] tablename outputpath
+
+Options:
+ batchsize the target amount of bytes to hash in each batch
+   rows are added to the batch until this size is reached
+   (defaults to 8000 bytes)
+ numhashfiles  the number of hash files to create
+   if set to fewer than number of regions then
+   the job will create this number of reducers
+   (defaults to 1/100 of regions -- at least 1)
+ startrow  the start row
+ stoprow   the stop row
+ starttime beginning of the time range (unixtime in millis)
+   without endtime means from starttime to forever
+ endtime   end of the time range.  Ignored if no starttime specified.
+ scanbatch scanner batch size to support intra row scans
+ versions  number of cell versions to include
+ families  comma-separated list of families to include
+
+Args:
+ tablename Name of the table to hash
+ outputpathFilesystem path to put the output data
+
+Examples:
+ To hash 'TestTable' in 32kB batches for a 1 hour window into 50 files:
+ $ bin/hbase org.apache.hadoop.hbase.mapreduce.HashTable --batchsize=32000 
--numhashfiles=50 --starttime=1265875194289 --endtime=1265878794289 
--families=cf2,cf3 TestTable /hashes/testTable
+
+
+
+The batchsize property defines how much cell data for a 
given region will be hashed together in a single hash value.
+Sizing this properly has a direct impact on the sync efficiency, as it may 
lead to less scans executed by mapper tasks
+of SyncTable (the next step in the process). The rule of thumb is that, the 
smaller the number of cells out of sync
+(lower probability of finding a diff), larger batch size values can be 
determined.
+
+
+
+149.11.2. Step 2, SyncTable
+
+Once HashTable has completed on source cluster, SyncTable can be ran on 
target cluster.
+Just like replication and other synchronization jobs, it requires that all 
RegionServers/DataNodes
+on source cluster be accessible by NodeManagers on the target cluster (where 
SyncTable job tasks will be running).
+
+
+Usage:
+
+
+
+$ ./bin/hbase org.apache.hadoop.hbase.mapreduce.SyncTable --help
+Usage: SyncTable [options] sourcehashdir sourcetable 
targettable
+
+Options:
+ sourcezkcluster  ZK cluster key of the source table
+  (defaults to cluster in classpath's config)
+ targetzkcluster  ZK cluster key of the target table
+  (defaults to cluster in classpath's config)
+ dryrun   if true, output counters but no writes
+  (defaults to false)
+ doDeletesif false, does not perform deletes
+  (defaults to true)
+ doPuts   if false, does not perform puts
+  (defaults to true)
+
+Args:
+ sourcehashdirpath to HashTable output dir for source table
+  (see org.apache.hadoop.hbase.mapreduce.HashTable)
+ sourcetable  Name of the source table to sync from
+ targettable  Name of the target table to sync to
+
+Examples:
+ For a dry run SyncTable of tableA from a remote source cluster
+ to a local target cluster:
+ $ bin/hbase org.apache.hadoop.hbase.mapreduce.SyncTable --dryrun=true 
--sourcezkcluster=zk1.example.com,zk2.example.com,zk3.example.com:2181:/hbase 
hdfs://nn:9000/hashes/tableA tableA tableA
+
+
+
+The dryrun option is useful when a read only, diff report 
is wanted, as it will produce only COUNTERS indicating the differences, but 
will not perform
+any actual changes. It can 

[5/7] hbase-site git commit: Published site at edf50495022c798666f91e7adccb3b93e4200230.

2018-04-14 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/31809c03/apidocs/org/apache/hadoop/hbase/filter/Filter.ReturnCode.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/Filter.ReturnCode.html 
b/apidocs/org/apache/hadoop/hbase/filter/Filter.ReturnCode.html
index db1e4d9..56f8c23 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/Filter.ReturnCode.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/Filter.ReturnCode.html
@@ -324,7 +324,7 @@ the order they are declared.
 
 
 values
-public staticFilter.ReturnCode[]values()
+public staticFilter.ReturnCode[]values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -344,7 +344,7 @@ for (Filter.ReturnCode c : Filter.ReturnCode.values())
 
 
 valueOf
-public staticFilter.ReturnCodevalueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+public staticFilter.ReturnCodevalueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/31809c03/apidocs/org/apache/hadoop/hbase/quotas/QuotaScope.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/quotas/QuotaScope.html 
b/apidocs/org/apache/hadoop/hbase/quotas/QuotaScope.html
index 6ba6ada..e0256bc 100644
--- a/apidocs/org/apache/hadoop/hbase/quotas/QuotaScope.html
+++ b/apidocs/org/apache/hadoop/hbase/quotas/QuotaScope.html
@@ -245,7 +245,7 @@ the order they are declared.
 
 
 values
-public staticQuotaScope[]values()
+public staticQuotaScope[]values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -265,7 +265,7 @@ for (QuotaScope c : QuotaScope.values())
 
 
 valueOf
-public staticQuotaScopevalueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+public staticQuotaScopevalueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/31809c03/apidocs/org/apache/hadoop/hbase/quotas/SpaceViolationPolicy.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/quotas/SpaceViolationPolicy.html 
b/apidocs/org/apache/hadoop/hbase/quotas/SpaceViolationPolicy.html
index 37ed2de..651f2fb 100644
--- a/apidocs/org/apache/hadoop/hbase/quotas/SpaceViolationPolicy.html
+++ b/apidocs/org/apache/hadoop/hbase/quotas/SpaceViolationPolicy.html
@@ -273,7 +273,7 @@ the order they are declared.
 
 
 values
-public staticSpaceViolationPolicy[]values()
+public staticSpaceViolationPolicy[]values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -293,7 +293,7 @@ for (SpaceViolationPolicy c : SpaceViolationPolicy.values())
 
 
 valueOf
-public staticSpaceViolationPolicyvalueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+public staticSpaceViolationPolicyvalueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/31809c03/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html 
b/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
index 36ed2f7..488ba7e 100644
--- a/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
+++ b/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
@@ -300,7 +300,7 @@ the order they are declared.
 
 
 values
-public staticThrottleType[]values()
+public staticThrottleType[]values()
 Returns an array containing the constants of this enum 
type, in
 the order they are 

[5/7] hbase-site git commit: Published site at .

2018-01-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/7aa6ade3/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html
index 31b8896..0859268 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/HStore.StoreFlusherImpl.html
@@ -2291,288 +2291,289 @@
 2283  long snapshotId = -1; // -1 means 
do not drop
 2284  if (dropMemstoreSnapshot 
 snapshot != null) {
 2285snapshotId = snapshot.getId();
-2286  }
-2287  
HStore.this.updateStorefiles(storeFiles, snapshotId);
-2288}
-2289
-2290/**
-2291 * Abort the snapshot preparation. 
Drops the snapshot if any.
-2292 * @throws IOException
-2293 */
-2294@Override
-2295public void abort() throws 
IOException {
-2296  if (snapshot != null) {
-2297
HStore.this.updateStorefiles(Collections.emptyList(), snapshot.getId());
-2298  }
-2299}
-2300  }
-2301
-2302  @Override
-2303  public boolean needsCompaction() {
-2304return 
this.storeEngine.needsCompaction(this.filesCompacting);
-2305  }
-2306
-2307  /**
-2308   * Used for tests.
-2309   * @return cache configuration for 
this Store.
-2310   */
-2311  @VisibleForTesting
-2312  public CacheConfig getCacheConfig() 
{
-2313return this.cacheConf;
-2314  }
-2315
-2316  public static final long 
FIXED_OVERHEAD =
-2317  ClassSize.align(ClassSize.OBJECT + 
(17 * ClassSize.REFERENCE) + (11 * Bytes.SIZEOF_LONG)
-2318  + (5 * Bytes.SIZEOF_INT) + 
(2 * Bytes.SIZEOF_BOOLEAN));
-2319
-2320  public static final long DEEP_OVERHEAD 
= ClassSize.align(FIXED_OVERHEAD
-2321  + ClassSize.OBJECT + 
ClassSize.REENTRANT_LOCK
-2322  + 
ClassSize.CONCURRENT_SKIPLISTMAP
-2323  + 
ClassSize.CONCURRENT_SKIPLISTMAP_ENTRY + ClassSize.OBJECT
-2324  + ScanInfo.FIXED_OVERHEAD);
-2325
-2326  @Override
-2327  public long heapSize() {
-2328MemStoreSize memstoreSize = 
this.memstore.size();
-2329return DEEP_OVERHEAD + 
memstoreSize.getHeapSize();
-2330  }
-2331
-2332  @Override
-2333  public CellComparator getComparator() 
{
-2334return comparator;
-2335  }
-2336
-2337  public ScanInfo getScanInfo() {
-2338return scanInfo;
-2339  }
-2340
-2341  /**
-2342   * Set scan info, used by test
-2343   * @param scanInfo new scan info to 
use for test
-2344   */
-2345  void setScanInfo(ScanInfo scanInfo) 
{
-2346this.scanInfo = scanInfo;
-2347  }
-2348
-2349  @Override
-2350  public boolean hasTooManyStoreFiles() 
{
-2351return getStorefilesCount()  
this.blockingFileCount;
-2352  }
-2353
-2354  @Override
-2355  public long getFlushedCellsCount() {
-2356return flushedCellsCount;
-2357  }
-2358
-2359  @Override
-2360  public long getFlushedCellsSize() {
-2361return flushedCellsSize;
-2362  }
-2363
-2364  @Override
-2365  public long getFlushedOutputFileSize() 
{
-2366return flushedOutputFileSize;
-2367  }
-2368
-2369  @Override
-2370  public long getCompactedCellsCount() 
{
-2371return compactedCellsCount;
-2372  }
-2373
-2374  @Override
-2375  public long getCompactedCellsSize() 
{
-2376return compactedCellsSize;
-2377  }
-2378
-2379  @Override
-2380  public long 
getMajorCompactedCellsCount() {
-2381return majorCompactedCellsCount;
-2382  }
-2383
-2384  @Override
-2385  public long 
getMajorCompactedCellsSize() {
-2386return majorCompactedCellsSize;
-2387  }
-2388
-2389  /**
-2390   * Returns the StoreEngine that is 
backing this concrete implementation of Store.
-2391   * @return Returns the {@link 
StoreEngine} object used internally inside this HStore object.
-2392   */
-2393  @VisibleForTesting
-2394  public StoreEngine?, ?, ?, ? 
getStoreEngine() {
-2395return this.storeEngine;
-2396  }
-2397
-2398  protected OffPeakHours 
getOffPeakHours() {
-2399return this.offPeakHours;
-2400  }
-2401
-2402  /**
-2403   * {@inheritDoc}
-2404   */
-2405  @Override
-2406  public void 
onConfigurationChange(Configuration conf) {
-2407this.conf = new 
CompoundConfiguration()
-2408.add(conf)
-2409
.addBytesMap(family.getValues());
-2410
this.storeEngine.compactionPolicy.setConf(conf);
-2411this.offPeakHours = 
OffPeakHours.getInstance(conf);
-2412  }
-2413
-2414  /**
-2415   * {@inheritDoc}
-2416   */
-2417  @Override
-2418  public void 
registerChildren(ConfigurationManager manager) {
-2419// No children to register
-2420  }
-2421
-2422  /**
-2423   * {@inheritDoc}
-2424   */
-2425  @Override
-2426  public void 
deregisterChildren(ConfigurationManager manager) {
-2427// No children to deregister
-2428  }
-2429
-2430  @Override
-2431  public double getCompactionPressure() 
{

[5/7] hbase-site git commit: Published site at .

2017-12-05 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0bf68dc7/book.html
--
diff --git a/book.html b/book.html
index 1b42d2c..8e71822 100644
--- a/book.html
+++ b/book.html
@@ -5761,8 +5761,289 @@ In the HBase shell, there are new operators, 
update_config and 
 
 Only a subset of all configurations can currently be changed in the running 
server.
-Here is an incomplete list: 
hbase.regionserver.thread.compaction.large, 
hbase.regionserver.thread.compaction.small, 
hbase.regionserver.thread.split, 
hbase.regionserver.thread.merge, as well as compaction policy and 
configurations and adjustment to offpeak hours.
-For the full list consult the patch attached to  https://issues.apache.org/jira/browse/HBASE-12147;>HBASE-12147 Porting 
Online Config Change from 89-fb.
+Here are those configurations:
+
+
+Table 3. Configurations support dynamically 
change
+
+
+
+
+
+
+Key
+Default Value
+
+
+
+
+hbase.ipc.server.fallback-to-simple-auth-allowed
+false
+
+
+hbase.cleaner.scan.dir.concurrent.size
+0.5
+
+
+hbase.regionserver.thread.compaction.large
+1
+
+
+hbase.regionserver.thread.compaction.small
+1
+
+
+hbase.regionserver.thread.split
+1
+
+
+hbase.regionserver.throughput.controller
+PressureAwareCompactionThroughputController.class
+
+
+hbase.regionserver.thread.hfilecleaner.throttle
+64*1024*1024 (64M)
+
+
+hbase.regionserver.hfilecleaner.large.queue.size
+10240
+
+
+hbase.regionserver.hfilecleaner.small.queue.size
+10240
+
+
+hbase.regionserver.hfilecleaner.large.thread.count
+1
+
+
+hbase.regionserver.hfilecleaner.small.thread.count
+1
+
+
+hbase.regionserver.flush.throughput.controller
+NoLimitThroughputController.class
+
+
+hbase.hstore.compaction.max.size
+Long.MAX
+
+
+hbase.hstore.compaction.max.size.offpeak
+Long.MAX
+
+
+hbase.hstore.compaction.min.size
+1024*1024*128 (128M)
+
+
+hbase.hstore.compaction.min
+3
+
+
+hbase.hstore.compaction.max
+10
+
+
+hbase.hstore.compaction.ratio
+1.2f
+
+
+hbase.hstore.compaction.ratio.offpeak
+5.0f
+
+
+hbase.regionserver.thread.compaction.throttle
+2*10*1024*1024*128 (2560M)
+
+
+hbase.hregion.majorcompaction
+1000*60*60*24*7 (1 week)
+
+
+hbase.hregion.majorcompaction.jitter
+0.5f
+
+
+hbase.hstore.min.locality.to.skip.major.compact
+0.0f
+
+
+hbase.hstore.compaction.date.tiered.max.storefile.age.millis
+Long.MAX
+
+
+hbase.hstore.compaction.date.tiered.incoming.window.min
+6
+
+
+hbase.hstore.compaction.date.tiered.window.policy.class
+ExploringCompactionPolicy.class
+
+
+hbase.hstore.compaction.date.tiered.single.output.for.minor.compaction
+true
+
+
+hbase.hstore.compaction.date.tiered.window.factory.class
+ExponentialCompactionWindowFactory.class
+
+
+hbase.offpeak.start.hour
+-1
+
+
+hbase.offpeak.end.hour
+-1
+
+
+hbase.oldwals.cleaner.thread.size
+2
+
+
+hbase.procedure.worker.keep.alive.time.msec
+Long.MAX
+
+
+hbase.procedure.worker.add.stuck.percentage
+0.5f
+
+
+hbase.procedure.worker.monitor.interval.msec
+5000 (5 
seconds)
+
+
+hbase.procedure.worker.stuck.threshold.msec
+1 (10 
seconds)
+
+
+hbase.regions.slop
+0.2
+
+
+hbase.regions.overallSlop
+0.2
+
+
+hbase.balancer.tablesOnMaster
+false
+
+
+hbase.balancer.tablesOnMaster.systemTablesOnly
+false
+
+
+hbase.util.ip.to.rack.determiner
+ScriptBasedMapping.class
+
+
+hbase.ipc.server.max.callqueue.length
+10*30
+
+
+hbase.ipc.server.priority.max.callqueue.length
+10*30
+
+
+hbase.ipc.server.callqueue.type
+fifo
+
+
+hbase.ipc.server.callqueue.codel.target.delay
+100
+
+
+hbase.ipc.server.callqueue.codel.interval
+100
+
+
+hbase.ipc.server.callqueue.codel.lifo.threshold
+0.8
+
+
+hbase.master.balancer.stochastic.maxSteps
+100
+
+
+hbase.master.balancer.stochastic.stepsPerRegion
+800
+
+
+hbase.master.balancer.stochastic.maxRunningTime
+30*1000 
(30 seconds)
+
+
+hbase.master.balancer.stochastic.runMaxSteps
+false
+
+
+hbase.master.balancer.stochastic.numRegionLoadsToRemember
+15
+
+
+hbase.master.loadbalance.bytable
+false
+
+
+hbase.master.balancer.stochastic.minCostNeedBalance
+0.05f
+
+
+hbase.master.balancer.stochastic.localityCost
+25
+
+
+hbase.master.balancer.stochastic.rackLocalityCost
+15
+
+
+hbase.master.balancer.stochastic.readRequestCost
+5
+
+
+hbase.master.balancer.stochastic.writeRequestCost
+5
+
+
+hbase.master.balancer.stochastic.memstoreSizeCost
+5
+
+
+hbase.master.balancer.stochastic.storefileSizeCost
+5
+
+
+hbase.master.balancer.stochastic.regionReplicaHostCostKey
+10
+
+
+hbase.master.balancer.stochastic.regionReplicaRackCostKey
+1
+
+
+hbase.master.balancer.stochastic.regionCountCost
+500
+
+
+hbase.master.balancer.stochastic.primaryRegionCountCost
+500
+
+
+hbase.master.balancer.stochastic.moveCost
+7
+
+
+hbase.master.balancer.stochastic.maxMovePercent
+0.25f
+
+
+hbase.master.balancer.stochastic.tableSkewCost
+35
+
+
+
+
+For more details consult the patch attached to  https://issues.apache.org/jira/browse/HBASE-12147;>HBASE-12147 Porting 
Online Config Change from 89-fb.
 
 
 
@@ 

[5/7] hbase-site git commit: Published site at .

2017-09-22 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/519405de/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
index 7bf2c64..8554b7e 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Issue Management
 
@@ -123,7 +123,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-21
+  Last Published: 
2017-09-22
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/519405de/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
index edb3382..6c277a6 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project Licenses
 
@@ -326,7 +326,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-21
+  Last Published: 
2017-09-22
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/519405de/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
index 08587fc..8d81aa7 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project Mailing 
Lists
 
@@ -176,7 +176,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-21
+  Last Published: 
2017-09-22
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/519405de/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
index ca87de6..8aede01 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project Plugin 
Management
 
@@ -271,7 +271,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-21
+  Last Published: 
2017-09-22
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/519405de/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
index 5757598..44cb6f4 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project Plugins
 
@@ -218,7 +218,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  

[5/7] hbase-site git commit: Published site at .

2017-08-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b1442b72/book.html
--
diff --git a/book.html b/book.html
index 570c87b..9dd278d 100644
--- a/book.html
+++ b/book.html
@@ -7568,7 +7568,7 @@ In particular:
 
 
 Below we describe how the version dimension in HBase currently works.
-See https://issues.apache.org/jira/browse/HBASE-2406;>HBASE-2406 
for discussion of HBase versions. http://outerthought.org/blog/417-ot.html;>Bending time in HBase makes 
for a good read on the version, or time, dimension in HBase.
+See https://issues.apache.org/jira/browse/HBASE-2406;>HBASE-2406 
for discussion of HBase versions. https://www.ngdata.com/bending-time-in-hbase/;>Bending time in HBase 
makes for a good read on the version, or time, dimension in HBase.
 It has more detail on versioning than is provided here.
 As of this writing, the limitation Overwriting values at existing 
timestamps mentioned in the article no longer holds in HBase.
 This section is basically a synopsis of this article by Bruno Dumon.
@@ -7808,7 +7808,7 @@ But they can occur even if you do not care about time: 
just do delete and put im
 setting of 2. So when getting all versions, only the values at t2 and t3 
will be
 returned. But if you delete the version at t2 or t3, the one at t1 will 
appear again.
 Obviously, once a major compaction has run, such behavior will not be the 
case
-anymore (See Garbage Collection in http://outerthought.org/blog/417-ot.html;>Bending time in HBase.)
+anymore (See Garbage Collection in https://www.ngdata.com/bending-time-in-hbase/;>Bending time in 
HBase.)
 
 
 
@@ -35069,7 +35069,7 @@ The server will return cellblocks compressed using this 
same compressor as long
 
 
 Version 3.0.0-SNAPSHOT
-Last updated 2017-08-19 19:25:51 UTC
+Last updated 2017-08-21 14:29:37 UTC
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b1442b72/bulk-loads.html
--
diff --git a/bulk-loads.html b/bulk-loads.html
index 2330869..7994da9 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase   
   Bulk Loads in Apache HBase (TM)
@@ -311,7 +311,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-08-19
+  Last Published: 
2017-08-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b1442b72/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 4a7c971..7faf2d0 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Checkstyle Results
 
@@ -96117,7 +96117,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-08-19
+  Last Published: 
2017-08-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b1442b72/coc.html
--
diff --git a/coc.html b/coc.html
index 493e9bb..c053f3e 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  
   Code of Conduct Policy
@@ -380,7 +380,7 @@ email to mailto:priv...@hbase.apache.org;>the priv
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-08-19
+  Last Published: 
2017-08-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b1442b72/cygwin.html
--
diff --git a/cygwin.html b/cygwin.html
index 50e2494..14ff077 100644
--- a/cygwin.html
+++ b/cygwin.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Installing Apache HBase (TM) on Windows using 
Cygwin
 
@@ -679,7 +679,7 @@ Now your HBase server is running, start 
coding and build that next
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-08-19
+  Last Published: 
2017-08-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b1442b72/dependencies.html
--
diff --git a/dependencies.html b/dependencies.html
index c245f96..095053a 100644
--- a/dependencies.html
+++ 

[5/7] hbase-site git commit: Published site at 82d554e3783372cc6b05489452c815b57c06f6cd.

2017-06-24 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/ef2472a9/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
index eca504f..5070a51 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
@@ -69,14 +69,14 @@
 061  requiredArguments = {
 062@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 063  optionalArguments = {
-064@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
-065@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
-066@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
+064@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
+065@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
+066@org.jamon.annotations.Argument(name 
= "format", type = "String"),
 067@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
-068@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-069@org.jamon.annotations.Argument(name 
= "format", type = "String"),
-070@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
-071@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
+068@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
+069@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
+070@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
+071@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
 072@org.jamon.annotations.Argument(name 
= "filter", type = "String")})
 073public class MasterStatusTmpl
 074  extends 
org.jamon.AbstractTemplateProxy
@@ -118,57 +118,57 @@
 110  return m_master;
 111}
 112private HMaster m_master;
-113// 24, 1
-114public void 
setDeadServers(SetServerName deadServers)
+113// 21, 1
+114public void 
setFrags(MapString,Integer frags)
 115{
-116  // 24, 1
-117  m_deadServers = deadServers;
-118  m_deadServers__IsNotDefault = 
true;
+116  // 21, 1
+117  m_frags = frags;
+118  m_frags__IsNotDefault = true;
 119}
-120public SetServerName 
getDeadServers()
+120public MapString,Integer 
getFrags()
 121{
-122  return m_deadServers;
+122  return m_frags;
 123}
-124private SetServerName 
m_deadServers;
-125public boolean 
getDeadServers__IsNotDefault()
+124private MapString,Integer 
m_frags;
+125public boolean 
getFrags__IsNotDefault()
 126{
-127  return 
m_deadServers__IsNotDefault;
+127  return m_frags__IsNotDefault;
 128}
-129private boolean 
m_deadServers__IsNotDefault;
-130// 28, 1
-131public void 
setServerManager(ServerManager serverManager)
+129private boolean 
m_frags__IsNotDefault;
+130// 23, 1
+131public void 
setServers(ListServerName servers)
 132{
-133  // 28, 1
-134  m_serverManager = serverManager;
-135  m_serverManager__IsNotDefault = 
true;
+133  // 23, 1
+134  m_servers = servers;
+135  m_servers__IsNotDefault = true;
 136}
-137public ServerManager 
getServerManager()
+137public ListServerName 
getServers()
 138{
-139  return m_serverManager;
+139  return m_servers;
 140}
-141private ServerManager 
m_serverManager;
-142public boolean 
getServerManager__IsNotDefault()
+141private ListServerName 
m_servers;
+142public boolean 
getServers__IsNotDefault()
 143{
-144  return 
m_serverManager__IsNotDefault;
+144  return m_servers__IsNotDefault;
 145}
-146private boolean 
m_serverManager__IsNotDefault;
-147// 23, 1
-148public void 
setServers(ListServerName servers)
+146private boolean 
m_servers__IsNotDefault;
+147// 27, 1
+148public void setFormat(String 
format)
 149{
-150  // 23, 1
-151  m_servers = servers;
-152  m_servers__IsNotDefault = true;
+150  // 27, 1
+151  m_format = format;
+152  m_format__IsNotDefault = true;
 153}
-154public ListServerName 
getServers()
+154public String getFormat()
 155{
-156  return m_servers;
+156  return m_format;
 157}
-158private ListServerName 
m_servers;
-159public boolean 
getServers__IsNotDefault()
+158private String m_format;
+159public boolean 
getFormat__IsNotDefault()
 160{
-161  return m_servers__IsNotDefault;
+161  return m_format__IsNotDefault;
 162}
-163private boolean 

[5/7] hbase-site git commit: Published site at 82d554e3783372cc6b05489452c815b57c06f6cd.

2017-06-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/195f1afa/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index 8cb8aee..ed2fd92 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -69,15 +69,15 @@
 061  requiredArguments = {
 062@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 063  optionalArguments = {
-064@org.jamon.annotations.Argument(name 
= "format", type = "String"),
-065@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
-066@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-067@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
-068@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
-069@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
+064@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
+065@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
+066@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+067@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+068@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
+069@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
 070@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
-071@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
-072@org.jamon.annotations.Argument(name 
= "filter", type = "String")})
+071@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
+072@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName")})
 073public class MasterStatusTmpl
 074  extends 
org.jamon.AbstractTemplateProxy
 075{
@@ -118,108 +118,108 @@
 110  return m_master;
 111}
 112private HMaster m_master;
-113// 27, 1
-114public void setFormat(String 
format)
+113// 21, 1
+114public void 
setFrags(MapString,Integer frags)
 115{
-116  // 27, 1
-117  m_format = format;
-118  m_format__IsNotDefault = true;
+116  // 21, 1
+117  m_frags = frags;
+118  m_frags__IsNotDefault = true;
 119}
-120public String getFormat()
+120public MapString,Integer 
getFrags()
 121{
-122  return m_format;
+122  return m_frags;
 123}
-124private String m_format;
-125public boolean 
getFormat__IsNotDefault()
+124private MapString,Integer 
m_frags;
+125public boolean 
getFrags__IsNotDefault()
 126{
-127  return m_format__IsNotDefault;
+127  return m_frags__IsNotDefault;
 128}
-129private boolean 
m_format__IsNotDefault;
-130// 25, 1
-131public void 
setCatalogJanitorEnabled(boolean catalogJanitorEnabled)
+129private boolean 
m_frags__IsNotDefault;
+130// 24, 1
+131public void 
setDeadServers(SetServerName deadServers)
 132{
-133  // 25, 1
-134  m_catalogJanitorEnabled = 
catalogJanitorEnabled;
-135  
m_catalogJanitorEnabled__IsNotDefault = true;
+133  // 24, 1
+134  m_deadServers = deadServers;
+135  m_deadServers__IsNotDefault = 
true;
 136}
-137public boolean 
getCatalogJanitorEnabled()
+137public SetServerName 
getDeadServers()
 138{
-139  return m_catalogJanitorEnabled;
+139  return m_deadServers;
 140}
-141private boolean 
m_catalogJanitorEnabled;
-142public boolean 
getCatalogJanitorEnabled__IsNotDefault()
+141private SetServerName 
m_deadServers;
+142public boolean 
getDeadServers__IsNotDefault()
 143{
-144  return 
m_catalogJanitorEnabled__IsNotDefault;
+144  return 
m_deadServers__IsNotDefault;
 145}
-146private boolean 
m_catalogJanitorEnabled__IsNotDefault;
-147// 22, 1
-148public void 
setMetaLocation(ServerName metaLocation)
+146private boolean 
m_deadServers__IsNotDefault;
+147// 29, 1
+148public void 
setAssignmentManager(AssignmentManager assignmentManager)
 149{
-150  // 22, 1
-151  m_metaLocation = metaLocation;
-152  m_metaLocation__IsNotDefault = 
true;
+150  // 29, 1
+151  m_assignmentManager = 
assignmentManager;
+152  m_assignmentManager__IsNotDefault = 
true;
 153}
-154public ServerName getMetaLocation()
+154public AssignmentManager 
getAssignmentManager()
 155{
-156  return m_metaLocation;
+156  return m_assignmentManager;
 157}
-158 

[5/7] hbase-site git commit: Published site at cbcbcf4dcd3401327cc36173f3ca8e5362da1e0c.

2017-04-05 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/a71e7848/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html 
b/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
index ebbfbe1..7904dc0 100644
--- a/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
+++ b/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
@@ -337,58 +337,58 @@ extends org.jamon.AbstractTemplateProxy
 
 
 Field Detail
-
+
 
 
 
 
-serverManager
-protectedServerManager serverManager
+metaLocation
+protectedServerName metaLocation
 
 
-
+
 
 
 
 
-frags
-protectedhttp://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true;
 title="class or interface in java.lang">Integer frags
+servers
+protectedhttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName servers
 
 
-
+
 
 
 
 
-format
-protectedhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String format
+frags
+protectedhttp://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true;
 title="class or interface in java.lang">Integer frags
 
 
-
+
 
 
 
 
-metaLocation
-protectedServerName metaLocation
+format
+protectedhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String format
 
 
-
+
 
 
 
 
-catalogJanitorEnabled
-protectedboolean catalogJanitorEnabled
+serverManager
+protectedServerManager serverManager
 
 
-
+
 
 
 
 
-filter
-protectedhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String filter
+deadServers
+protectedhttp://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">SetServerName deadServers
 
 
 
@@ -400,22 +400,22 @@ extends org.jamon.AbstractTemplateProxy
 protectedAssignmentManager assignmentManager
 
 
-
+
 
 
 
 
-servers
-protectedhttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName servers
+filter
+protectedhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String filter
 
 
-
+
 
 
 
 
-deadServers
-protectedhttp://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">SetServerName deadServers
+catalogJanitorEnabled
+protectedboolean catalogJanitorEnabled
 
 
 
@@ -487,58 +487,58 @@ extends org.jamon.AbstractTemplateProxy
 
 
 
-
+
 
 
 
 
-setServerManager
-public finalMasterStatusTmplsetServerManager(ServerManagerp_serverManager)
+setMetaLocation
+public finalMasterStatusTmplsetMetaLocation(ServerNamep_metaLocation)
 
 
-
+
 
 
 
 
-setFrags
-public finalMasterStatusTmplsetFrags(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true;
 title="class or interface in java.lang">Integerp_frags)
+setServers
+public finalMasterStatusTmplsetServers(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerNamep_servers)
 
 
-
+
 
 
 
 
-setFormat
-public finalMasterStatusTmplsetFormat(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringp_format)
+setFrags
+public finalMasterStatusTmplsetFrags(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true;
 title="class or interface in java.lang">Integerp_frags)
 
 
-
+
 
 
 
 
-setMetaLocation
-public finalMasterStatusTmplsetMetaLocation(ServerNamep_metaLocation)
+setFormat
+public 

[5/7] hbase-site git commit: Published site at 5f98ad2053ddc31e0abc6863478db594e4447cf8.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb206208/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index c378ba2..e0fdbeb 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -26,7 +26,7 @@ under the License.
 2007 - 2017 The Apache Software Foundation
 
   File: 2145,
- Errors: 14178,
+ Errors: 14179,
  Warnings: 0,
  Infos: 0
   
@@ -9995,7 +9995,7 @@ under the License.
   0
 
 
-  27
+  28
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb206208/devapidocs/constant-values.html
--
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index e99f536..89dcb08 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -3775,21 +3775,21 @@
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 date
-"Sat Apr  1 00:11:50 UTC 2017"
+"Sat Apr  1 00:42:47 UTC 2017"
 
 
 
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 revision
-"80381f39446bab131f5b1f227c98bad97545c4c8"
+"5f98ad2053ddc31e0abc6863478db594e4447cf8"
 
 
 
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 srcChecksum
-"2806189cc8b1e8242586e0cc1feb08ae"
+"306d65abffe57939b4c4f0760140a19e"
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb206208/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index b79563c..6257948 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -3522,6 +3522,10 @@
 
 assign(byte[])
 - Method in interface org.apache.hadoop.hbase.client.Admin
 
+assign(byte[])
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+
+assign(byte[])
 - Method in class org.apache.hadoop.hbase.client.AsyncHBaseAdmin
+
 assign(byte[])
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
 
 assign(HRegionInfo)
 - Method in class org.apache.hadoop.hbase.master.AssignmentManager
@@ -41900,6 +41904,11 @@
 
 getRegionMaximumEditLogSeqNum(byte[])
 - Method in class org.apache.hadoop.hbase.wal.WALSplitter.OutputSink
 
+getRegionName(byte[])
 - Method in class org.apache.hadoop.hbase.client.AsyncHBaseAdmin
+
+Turn regionNameOrEncodedRegionName into regionName, if 
region does not found, then it'll throw
+ an IllegalArgumentException wrapped by a http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in 
java.util.concurrent">CompletableFuture
+
 getRegionName(byte[])
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
 
 If the input is a region name, it is returned as is.
@@ -67124,6 +67133,12 @@
 
 Move the region r to dest.
 
+move(byte[],
 byte[]) - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+
+Move the region r to dest.
+
+move(byte[],
 byte[]) - Method in class org.apache.hadoop.hbase.client.AsyncHBaseAdmin
+
 move(byte[],
 byte[]) - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
 
 move(byte[],
 byte[]) - Method in class org.apache.hadoop.hbase.master.HMaster
@@ -70229,6 +70244,12 @@
 
 Offline specified region from master's in-memory 
state.
 
+offline(byte[])
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+
+Offline specified region from master's in-memory 
state.
+
+offline(byte[])
 - Method in class org.apache.hadoop.hbase.client.AsyncHBaseAdmin
+
 offline(byte[])
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
 
 offLine - 
Variable in class org.apache.hadoop.hbase.HRegionInfo
@@ -104561,6 +104582,12 @@ service.
 
 Unassign a region from current hosting regionserver.
 
+unassign(byte[],
 boolean) - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+
+Unassign a region from current hosting regionserver.
+
+unassign(byte[],
 boolean) - Method in class org.apache.hadoop.hbase.client.AsyncHBaseAdmin
+
 unassign(byte[],
 boolean) - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
 
 unassign(HRegionInfo,
 ServerName, ServerName) - Method in class 
org.apache.hadoop.hbase.master.AssignmentManager

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb206208/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html 

[5/7] hbase-site git commit: Published site at fc5e698c0a4e9613ab9eddcfc2a2684424806c56.

2016-02-02 Thread misty
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4bb5e366/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index ee80156..99b5dfe 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -67,14 +67,14 @@
 059  requiredArguments = {
 060@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 061  optionalArguments = {
-062@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
-063@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
-064@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
-065@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+062@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
+063@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
+064@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
+065@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
 066@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
-067@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-068@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
-069@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+067@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+068@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+069@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
 070@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager")})
 071public class MasterStatusTmpl
 072  extends 
org.jamon.AbstractTemplateProxy
@@ -116,74 +116,74 @@
 108  return m_master;
 109}
 110private HMaster m_master;
-111// 23, 1
-112public void 
setServers(ListServerName servers)
+111// 24, 1
+112public void 
setDeadServers(SetServerName deadServers)
 113{
-114  // 23, 1
-115  m_servers = servers;
-116  m_servers__IsNotDefault = true;
+114  // 24, 1
+115  m_deadServers = deadServers;
+116  m_deadServers__IsNotDefault = 
true;
 117}
-118public ListServerName 
getServers()
+118public SetServerName 
getDeadServers()
 119{
-120  return m_servers;
+120  return m_deadServers;
 121}
-122private ListServerName 
m_servers;
-123public boolean 
getServers__IsNotDefault()
+122private SetServerName 
m_deadServers;
+123public boolean 
getDeadServers__IsNotDefault()
 124{
-125  return m_servers__IsNotDefault;
+125  return 
m_deadServers__IsNotDefault;
 126}
-127private boolean 
m_servers__IsNotDefault;
-128// 25, 1
-129public void 
setCatalogJanitorEnabled(boolean catalogJanitorEnabled)
+127private boolean 
m_deadServers__IsNotDefault;
+128// 21, 1
+129public void 
setFrags(MapString,Integer frags)
 130{
-131  // 25, 1
-132  m_catalogJanitorEnabled = 
catalogJanitorEnabled;
-133  
m_catalogJanitorEnabled__IsNotDefault = true;
+131  // 21, 1
+132  m_frags = frags;
+133  m_frags__IsNotDefault = true;
 134}
-135public boolean 
getCatalogJanitorEnabled()
+135public MapString,Integer 
getFrags()
 136{
-137  return m_catalogJanitorEnabled;
+137  return m_frags;
 138}
-139private boolean 
m_catalogJanitorEnabled;
-140public boolean 
getCatalogJanitorEnabled__IsNotDefault()
+139private MapString,Integer 
m_frags;
+140public boolean 
getFrags__IsNotDefault()
 141{
-142  return 
m_catalogJanitorEnabled__IsNotDefault;
+142  return m_frags__IsNotDefault;
 143}
-144private boolean 
m_catalogJanitorEnabled__IsNotDefault;
-145// 21, 1
-146public void 
setFrags(MapString,Integer frags)
+144private boolean 
m_frags__IsNotDefault;
+145// 25, 1
+146public void 
setCatalogJanitorEnabled(boolean catalogJanitorEnabled)
 147{
-148  // 21, 1
-149  m_frags = frags;
-150  m_frags__IsNotDefault = true;
+148  // 25, 1
+149  m_catalogJanitorEnabled = 
catalogJanitorEnabled;
+150  
m_catalogJanitorEnabled__IsNotDefault = true;
 151}
-152public MapString,Integer 
getFrags()
+152public boolean 
getCatalogJanitorEnabled()
 153{
-154  return m_frags;
+154  return m_catalogJanitorEnabled;
 155}
-156private MapString,Integer 
m_frags;
-157public boolean 

[5/7] hbase-site git commit: Published site at fc5e698c0a4e9613ab9eddcfc2a2684424806c56.

2016-02-01 Thread misty
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f5e0a8d9/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index 00e2cb0..7e1dfe5 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -67,15 +67,15 @@
 059  requiredArguments = {
 060@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 061  optionalArguments = {
-062@org.jamon.annotations.Argument(name 
= "format", type = "String"),
-063@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
-064@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+062@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+063@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
+064@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
 065@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
-066@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
-067@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
-068@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
-069@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-070@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer")})
+066@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+067@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
+068@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
+069@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
+070@org.jamon.annotations.Argument(name 
= "filter", type = "String")})
 071public class MasterStatusTmpl
 072  extends 
org.jamon.AbstractTemplateProxy
 073{
@@ -116,57 +116,57 @@
 108  return m_master;
 109}
 110private HMaster m_master;
-111// 27, 1
-112public void setFormat(String 
format)
+111// 29, 1
+112public void 
setAssignmentManager(AssignmentManager assignmentManager)
 113{
-114  // 27, 1
-115  m_format = format;
-116  m_format__IsNotDefault = true;
+114  // 29, 1
+115  m_assignmentManager = 
assignmentManager;
+116  m_assignmentManager__IsNotDefault = 
true;
 117}
-118public String getFormat()
+118public AssignmentManager 
getAssignmentManager()
 119{
-120  return m_format;
+120  return m_assignmentManager;
 121}
-122private String m_format;
-123public boolean 
getFormat__IsNotDefault()
+122private AssignmentManager 
m_assignmentManager;
+123public boolean 
getAssignmentManager__IsNotDefault()
 124{
-125  return m_format__IsNotDefault;
+125  return 
m_assignmentManager__IsNotDefault;
 126}
-127private boolean 
m_format__IsNotDefault;
-128// 25, 1
-129public void 
setCatalogJanitorEnabled(boolean catalogJanitorEnabled)
+127private boolean 
m_assignmentManager__IsNotDefault;
+128// 24, 1
+129public void 
setDeadServers(SetServerName deadServers)
 130{
-131  // 25, 1
-132  m_catalogJanitorEnabled = 
catalogJanitorEnabled;
-133  
m_catalogJanitorEnabled__IsNotDefault = true;
+131  // 24, 1
+132  m_deadServers = deadServers;
+133  m_deadServers__IsNotDefault = 
true;
 134}
-135public boolean 
getCatalogJanitorEnabled()
+135public SetServerName 
getDeadServers()
 136{
-137  return m_catalogJanitorEnabled;
+137  return m_deadServers;
 138}
-139private boolean 
m_catalogJanitorEnabled;
-140public boolean 
getCatalogJanitorEnabled__IsNotDefault()
+139private SetServerName 
m_deadServers;
+140public boolean 
getDeadServers__IsNotDefault()
 141{
-142  return 
m_catalogJanitorEnabled__IsNotDefault;
+142  return 
m_deadServers__IsNotDefault;
 143}
-144private boolean 
m_catalogJanitorEnabled__IsNotDefault;
-145// 29, 1
-146public void 
setAssignmentManager(AssignmentManager assignmentManager)
+144private boolean 
m_deadServers__IsNotDefault;
+145// 28, 1
+146public void 
setServerManager(ServerManager serverManager)
 147{
-148  // 29, 1
-149  m_assignmentManager = 
assignmentManager;
-150  m_assignmentManager__IsNotDefault = 
true;
+148  // 28, 1
+149  m_serverManager = serverManager;
+150  m_serverManager__IsNotDefault = 
true;
 151}
-152public AssignmentManager 

[5/7] hbase-site git commit: Published site at fc5e698c0a4e9613ab9eddcfc2a2684424806c56.

2016-02-01 Thread misty
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/055cb146/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/util/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
index 043054b..f3f190f 100644
--- a/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
@@ -461,13 +461,13 @@
 
 java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumE (implements java.lang.http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang">ComparableT, java.io.http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.util.Order
-org.apache.hadoop.hbase.util.Bytes.LexicographicalComparerHolder.PureJavaComparer 
(implements org.apache.hadoop.hbase.util.Bytes.ComparerT)
+org.apache.hadoop.hbase.util.PrettyPrinter.Unit
 org.apache.hadoop.hbase.util.HBaseFsck.ErrorReporter.ERROR_CODE
 org.apache.hadoop.hbase.util.Bytes.LexicographicalComparerHolder.UnsafeComparer 
(implements org.apache.hadoop.hbase.util.Bytes.ComparerT)
 org.apache.hadoop.hbase.util.ChecksumType
 org.apache.hadoop.hbase.util.PoolMap.PoolType
-org.apache.hadoop.hbase.util.PrettyPrinter.Unit
+org.apache.hadoop.hbase.util.Bytes.LexicographicalComparerHolder.PureJavaComparer 
(implements org.apache.hadoop.hbase.util.Bytes.ComparerT)
+org.apache.hadoop.hbase.util.Order
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/055cb146/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index 7e1dfe5..ee80156 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -67,15 +67,15 @@
 059  requiredArguments = {
 060@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 061  optionalArguments = {
-062@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
-063@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
-064@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
-065@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
-066@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+062@org.jamon.annotations.Argument(name 
= "servers", type = "ListServerName"),
+063@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
+064@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
+065@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+066@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
 067@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-068@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
-069@org.jamon.annotations.Argument(name 
= "frags", type = "MapString,Integer"),
-070@org.jamon.annotations.Argument(name 
= "filter", type = "String")})
+068@org.jamon.annotations.Argument(name 
= "deadServers", type = "SetServerName"),
+069@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+070@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager")})
 071public class MasterStatusTmpl
 072  extends 
org.jamon.AbstractTemplateProxy
 073{
@@ -116,91 +116,91 @@
 108  return m_master;
 109}
 110private HMaster m_master;
-111// 29, 1
-112public void 
setAssignmentManager(AssignmentManager assignmentManager)
+111// 23, 1
+112public void 
setServers(ListServerName servers)
 113{
-114  // 29, 1
-115  m_assignmentManager = 
assignmentManager;
-116  m_assignmentManager__IsNotDefault = 
true;
+114  // 23, 1
+115  m_servers = servers;
+116  m_servers__IsNotDefault = true;
 117}
-118public AssignmentManager 
getAssignmentManager()
+118public ListServerName 
getServers()
 119{
-120  return m_assignmentManager;
+120  return m_servers;
 121}
-122private AssignmentManager 
m_assignmentManager;
-123public boolean 
getAssignmentManager__IsNotDefault()
+122private ListServerName 
m_servers;
+123public boolean 
getServers__IsNotDefault()
 124{
-125  return