From 61f7e957e93e1aa21ca3adec1749ed9a13664677 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Mon, 26 Oct 2015 10:11:10 +1000 Subject: [PATCH] HBASE-14695 Fix some easy HTML warnings and bad links --- .../org/apache/hadoop/hbase/client/package-info.java | 2 +- .../java/org/apache/hadoop/hbase/util/BloomFilter.java | 2 +- .../java/org/apache/hadoop/hbase/util/FSMapRUtils.java | 4 ++-- pom.xml | 16 ++++++++++++---- src/main/asciidoc/_chapters/ops_mgt.adoc | 3 ++- src/main/asciidoc/_chapters/performance.adoc | 2 +- src/main/site/site.xml | 2 +- src/main/site/xdoc/index.xml | 8 ++++---- 8 files changed, 24 insertions(+), 15 deletions(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/package-info.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/package-info.java index cf28c91..dd85d3e 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/package-info.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/package-info.java @@ -200,7 +200,7 @@ public class MyLittleHBaseClient {

Related Documentation

See also the section in the HBase Reference Guide where it discusses diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/BloomFilter.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/BloomFilter.java index 197ff12..2062244 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/BloomFilter.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/BloomFilter.java @@ -40,7 +40,7 @@ import org.apache.hadoop.hbase.nio.ByteBuff; * trade-off between the false positive rate and the size. * *

- * Originally inspired by European Commission + * Originally inspired by European Commission * One-Lab Project 034819. * * Bloom filters are very sensitive to the number of elements inserted into diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSMapRUtils.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSMapRUtils.java index d04c07d..5214cc5 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSMapRUtils.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSMapRUtils.java @@ -29,12 +29,12 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** - * MapR implementation. + * MapR implementation. */ @InterfaceAudience.Private public class FSMapRUtils extends FSUtils { private static final Log LOG = LogFactory.getLog(FSMapRUtils.class); - + public void recoverFileLease(final FileSystem fs, final Path p, Configuration conf, CancelableProgressable reporter) throws IOException { LOG.info("Recovering file " + p.toString() + diff --git a/pom.xml b/pom.xml index eab8eb2..5bcdbc5 100644 --- a/pom.xml +++ b/pom.xml @@ -2804,8 +2804,12 @@ devapidocs Developer API The full HBase API, including private and unstable APIs - **/generated/* - org.apache.hadoop.hbase.generated.master:org.apache.hadoop.hbase.protobuf.generated:org.apache.hadoop.hbase.tmpl.common + + **/generated/* + **/protobuf/* + **/*.scala + + *.generated.master:*.generated:org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.spark true true 2 @@ -2842,8 +2846,12 @@ testdevapidocs Developer API The full HBase API, including private and unstable APIs - **/generated/* - org.apache.hadoop.hbase.generated.master:org.apache.hadoop.hbase.protobuf.generated:org.apache.hadoop.hbase.tmpl.common + + **/generated/* + **/protobuf/* + **/*.scala + + *.generated.master:*.generated:org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.spark true true 2 diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc b/src/main/asciidoc/_chapters/ops_mgt.adoc index af99215..9c592eb 100644 --- a/src/main/asciidoc/_chapters/ops_mgt.adoc +++ b/src/main/asciidoc/_chapters/ops_mgt.adoc @@ -1252,7 +1252,8 @@ Have a look in the Web UI. == Cluster Replication -NOTE: This information was previously available at link:http://hbase.apache.org/replication.html[Cluster Replication]. +NOTE: This information was previously available at +link:http://hbase.apache.org#replication[Cluster Replication]. HBase provides a cluster replication mechanism which allows you to keep one cluster's state synchronized with that of another cluster, using the write-ahead log (WAL) of the source cluster to propagate the changes. Some use cases for cluster replication include: diff --git a/src/main/asciidoc/_chapters/performance.adoc b/src/main/asciidoc/_chapters/performance.adoc index 78edccb..3275fa3 100644 --- a/src/main/asciidoc/_chapters/performance.adoc +++ b/src/main/asciidoc/_chapters/performance.adoc @@ -676,7 +676,7 @@ Enabling Bloom Filters can save your having to go to disk and can help improve r link:http://en.wikipedia.org/wiki/Bloom_filter[Bloom filters] were developed over in link:https://issues.apache.org/jira/browse/HBASE-1200[HBase-1200 Add bloomfilters]. For description of the development process -- why static blooms rather than dynamic -- and for an overview of the unique properties that pertain to blooms in HBase, as well as possible future directions, see the _Development Process_ section of the document link:https://issues.apache.org/jira/secure/attachment/12444007/Bloom_Filters_in_HBase.pdf[BloomFilters in HBase] attached to link:https://issues.apache.org/jira/browse/HBASE-1200[HBASE-1200]. The bloom filters described here are actually version two of blooms in HBase. -In versions up to 0.19.x, HBase had a dynamic bloom option based on work done by the link:http://www.one-lab.org[European Commission One-Lab Project 034819]. +In versions up to 0.19.x, HBase had a dynamic bloom option based on work done by the link:http://www.one-lab.org/[European Commission One-Lab Project 034819]. The core of the HBase bloom work was later pulled up into Hadoop to implement org.apache.hadoop.io.BloomMapFile. Version 1 of HBase blooms never worked that well. Version 2 is a rewrite from scratch though again it starts with the one-lab work. diff --git a/src/main/site/site.xml b/src/main/site/site.xml index a86bd18..62caf79 100644 --- a/src/main/site/site.xml +++ b/src/main/site/site.xml @@ -58,7 +58,7 @@ - + diff --git a/src/main/site/xdoc/index.xml b/src/main/site/xdoc/index.xml index 9b2d4b9..a4e1ee6 100644 --- a/src/main/site/xdoc/index.xml +++ b/src/main/site/xdoc/index.xml @@ -27,7 +27,7 @@ under the License.

-

Apache HBase™ is the Hadoop database, a distributed, scalable, big data store. +

Apache HBase™ is the Hadoop database, a distributed, scalable, big data store.

Download Apache HBase™

@@ -68,7 +68,7 @@ Apache HBase is an open-source, distributed, versioned, non-relational database

Where Can I Get More Information?

-

See the Architecture Overview, the Apache HBase Reference Guide FAQ, +

See the Architecture Overview, the Apache HBase Reference Guide FAQ, and the other documentation links on the left!

Export Control

@@ -85,12 +85,12 @@ Apache HBase is an open-source, distributed, versioned, non-relational database

January 15th, 2015 HBase meetup @ AppDynamics in San Francisco

November 20th, 2014 HBase meetup @ WANdisco in San Ramon

October 27th, 2014 HBase Meetup @ Apple in Cupertino

-

October 15th, 2014 HBase Meetup @ Google on the night before Strata/HW in NYC

+

October 15th, 2014 HBase Meetup @ Google on the night before Strata/HW in NYC

September 25th, 2014 HBase Meetup @ Continuuity in Palo Alto

August 28th, 2014 HBase Meetup @ Sift Science in San Francisco

July 17th, 2014 HBase Meetup @ HP in Sunnyvale

June 5th, 2014 HBase BOF at Hadoop Summit, San Jose Convention Center

-

May 5th, 2014 HBaseCon2014 at the Hilton San Francisco on Union Square

+

May 5th, 2014 HBaseCon2014 at the Hilton San Francisco on Union Square

March 12th, 2014 HBase Meetup @ Ancestry.com in San Francisco

Old News

-- 2.4.9 (Apple Git-60)