HBASE-14481 Deprecate HBase Wiki

We have an awesome community resource in our online book. It's maintained and looked after with
diligence. We also have an HBase section on the hadoop wiki that hasn't been updated since 2012.
Let's sift through the pages of the wiki, bring over any content that's still relevant and
not already present in the book, and kill the wiki.
This commit is contained in:
Misty Stanley-Jones 2015-11-02 15:48:36 +10:00
parent 090fbd3ec8
commit c575e18ab8
11 changed files with 12 additions and 11 deletions

View File

@ -37,7 +37,7 @@
@rem Extra Java runtime options.
@rem Below are what we set by default. May only work with SUN JVM.
@rem For more on why as well as other possible settings,
@rem see http://wiki.apache.org/hadoop/PerformanceTuning
@rem see http://hbase.apache.org/book.html#performance
@rem JDK6 on Windows has a known bug for IPv6, use preferIPv4Stack unless JDK7.
@rem @rem See TestIPv6NIOServerSocketChannel.
set HBASE_OPTS="-XX:+UseConcMarkSweepGC" "-Djava.net.preferIPv4Stack=true"

View File

@ -39,7 +39,7 @@
# Extra Java runtime options.
# Below are what we set by default. May only work with SUN JVM.
# For more on why as well as other possible settings,
# see http://wiki.apache.org/hadoop/PerformanceTuning
# see http://hbase.apache.org/book.html#performance
export HBASE_OPTS="-XX:+UseConcMarkSweepGC"
# Configure PermSize. Only needed in JDK7. You can safely remove it for JDK8+

View File

@ -105,7 +105,7 @@ String listenPort = conf.get("hbase.rest.port", "8080");
<div class="row">
<section>
<a href="http://wiki.apache.org/hadoop/Hbase/Stargate">Apache HBase Wiki on REST</a>
<a href="http://hbase.apache.org/book.html#_rest">Apache HBase documentation about REST</a>
</section>
</div>
</div>

View File

@ -150,7 +150,7 @@ AssignmentManager assignmentManager = master.getAssignmentManager();
<div class="alert alert-error">
Your current JVM version <% System.getProperty("java.version") %> is known to be
unstable with HBase. Please see the
<a href="http://wiki.apache.org/hadoop/Hbase/Troubleshooting#A18">HBase wiki</a>
<a href="http://hbase.apache.org/book.html#trouble.log.gc">HBase Reference Guide</a>
for details.
</div>
</%if>

View File

@ -48,7 +48,6 @@ section of the <a href="../book.html">HBase Book</a>.
<ul>
<li><a href="http://hbase.org">HBase Home Page</a> </li>
<li><a href="http://hbase.apache.org/book/book.html">HBase Book</a> </li>
<li><a href="http://wiki.apache.org/hadoop/Hbase">HBase Wiki</a> </li>
<li><a href="http://hadoop.apache.org/">Hadoop Home Page</a> </li>
</li>
</ul>

View File

@ -126,7 +126,7 @@ String framed = conf.get("hbase.regionserver.thrift.framed", "false");
</div>
<div class="row">
<section>
<a href="http://wiki.apache.org/hadoop/Hbase/ThriftApi">Apache HBase Wiki on Thrift</a>
<a href="http://hbase.apache.org/book.html#thrift">Apache HBase Reference Guide chapter on Thrift</a>
</section>
</div>
</div>

View File

@ -2590,7 +2590,7 @@ public class HBaseTestingUtility extends HBaseCommonTestingUtility {
/**
* Expire a ZooKeeper session as recommended in ZooKeeper documentation
* http://wiki.apache.org/hadoop/ZooKeeper/FAQ#A4
* http://hbase.apache.org/book.html#trouble.zookeeper
* There are issues when doing this:
* [1] http://www.mail-archive.com/dev@zookeeper.apache.org/msg01942.html
* [2] https://issues.apache.org/jira/browse/ZOOKEEPER-1105

View File

@ -135,7 +135,7 @@ public class TestZooKeeper {
/**
* See HBASE-1232 and http://wiki.apache.org/hadoop/ZooKeeper/FAQ#4.
* See HBASE-1232 and http://hbase.apache.org/book.html#trouble.zookeeper.
* @throws IOException
* @throws InterruptedException
*/

View File

@ -126,7 +126,7 @@ String framed = conf.get("hbase.regionserver.thrift.framed", "false");
</div>
<div class="row">
<section>
<a href="http://wiki.apache.org/hadoop/Hbase/ThriftApi">Apache HBase Wiki on Thrift</a>
<a href="http://hbase.apache.org/book.html#_thrift">Apache HBase Reference Guide chapter on Thrift</a>
</section>
</div>
</div>

View File

@ -29,7 +29,10 @@
This is the official reference guide for the link:http://hbase.apache.org/[HBase] version it ships with.
Herein you will find either the definitive documentation on an HBase topic as of its standing when the referenced HBase version shipped, or it will point to the location in link:http://hbase.apache.org/apidocs/index.html[Javadoc], link:https://issues.apache.org/jira/browse/HBASE[JIRA] or link:http://wiki.apache.org/hadoop/Hbase[wiki] where the pertinent information can be found.
Herein you will find either the definitive documentation on an HBase topic as of its
standing when the referenced HBase version shipped, or it will point to the location
in link:http://hbase.apache.org/apidocs/index.html[Javadoc] or
link:https://issues.apache.org/jira/browse/HBASE[JIRA] where the pertinent information can be found.
.About This Guide
This reference guide is a work in progress. The source for this guide can be found in the _src/main/asciidoc directory of the HBase source. This reference guide is marked up using link:http://asciidoc.org/[AsciiDoc] from which the finished guide is generated as part of the 'site' build target. Run

View File

@ -31,7 +31,6 @@
Apache link:http://thrift.apache.org/[Thrift] is a cross-platform, cross-language development framework.
HBase includes a Thrift API and filter language.
The Thrift API relies on client and server processes.
Documentation about the HBase Thrift API is located at http://wiki.apache.org/hadoop/Hbase/ThriftApi.
You can configure Thrift for secure authentication at the server and client side, by following the procedures in <<security.client.thrift>> and <<security.gateway.thrift>>.