[
https://issues.apache.org/jira/browse/HBASE-15466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16428808#comment-16428808
]
Sean Busbey commented on HBASE-15466:
-------------------------------------
like this set of changes did not cause a build failure:
{code}
diff --git a/src/main/asciidoc/_chapters/hbase_mob.adoc
b/src/main/asciidoc/_chapters/hbase_mob.adoc
index 97305292ff..91fcb90727 100644
--- a/src/main/asciidoc/_chapters/hbase_mob.adoc
+++ b/src/main/asciidoc/_chapters/hbase_mob.adoc
@@ -75,6 +75,14 @@ hbase> alter 't1', {NAME => 'f1', IS_MOB => true,
MOB_THRESHOLD => 102400}
...
HColumnDescriptor hcd = new HColumnDescriptor(âfâ);
hcd.setMobEnabled(true);
+
+.Configure a Column for MOB Using the Java API
+====
+[source,notalanguage]
+----
+...
+HColumnDescriptor hcd = new HColumnDescriptor(âfâ);
+hcd.setMobEnabled(true);
...
hcd.setMobThreshold(102400L);
...
@@ -193,6 +201,7 @@ To manually compact MOB files, rather than waiting for the
<<mob.cache.configure,configuration>> to trigger compaction, use the
`compact` or `major_compact` HBase shell commands. These commands
require the first argument to be the table name, and take a column
+foo [[mob.cache.configure,configuration]]
family as the second argument. and take a compaction type as the third
argument.
----
diff --git a/src/main/asciidoc/_chapters/ycsb.adoc
b/src/main/asciidoc/_chapters/ycsb.adoc
index f84375667e..c11b91d4f9 100644
--- a/src/main/asciidoc/_chapters/ycsb.adoc
+++ b/src/main/asciidoc/_chapters/ycsb.adoc
@@ -33,6 +33,8 @@ link:https://github.com/brianfrankcooper/YCSB/[YCSB: The
TODO: Describe how YCSB is poor for putting up a decent cluster load.
+link:https://foobar[open description
+
TODO: Describe setup of YCSB for HBase.
In particular, presplit your tables before you start a run.
See link:https://issues.apache.org/jira/browse/HBASE-4163[HBASE-4163 Create
Split Strategy for YCSB Benchmark] for why and a little shell command for how
to do it.
@@ -40,4 +42,8 @@ See
link:https://issues.apache.org/jira/browse/HBASE-4163[HBASE-4163 Create Spli
Ted Dunning redid YCSB so it's mavenized and added facility for verifying
workloads.
See link:https://github.com/tdunning/YCSB[Ted Dunning's YCSB].
+link:not_even_a_uri[description]
+
+link:https://foobar[open description
+
:numbered:
diff --git a/src/main/asciidoc/book.adoc b/src/main/asciidoc/book.adoc
index c05eed36ce..0ae9daa4de 100644
--- a/src/main/asciidoc/book.adoc
+++ b/src/main/asciidoc/book.adoc
@@ -31,6 +31,8 @@
:toc: left
:toclevels: 1
:toc-title: Contents
+:unknownmeta: foo
+:toclevels: blue
:sectanchors:
:icons: font
:iconsdir: icons
@@ -71,6 +73,7 @@ include::_chapters/spark.adoc[]
include::_chapters/cp.adoc[]
include::_chapters/performance.adoc[]
include::_chapters/troubleshooting.adoc[]
+include::_chapters/does/not/exist.adoc[]
include::_chapters/case_studies.adoc[]
include::_chapters/ops_mgt.adoc[]
include::_chapters/developer.adoc[]
{code}
> precommit should not run all java goals when given a docs-only patch
> --------------------------------------------------------------------
>
> Key: HBASE-15466
> URL: https://issues.apache.org/jira/browse/HBASE-15466
> Project: HBase
> Issue Type: Improvement
> Components: build
> Reporter: Sean Busbey
> Assignee: Sean Busbey
> Priority: Major
> Attachments: HBASE-15466.0.patch, HBASE-15466.1.patch,
> HBASE-15466.2.patch
>
>
> Right now docs-only patches (those that only impact the top level
> src/main/site, src/main/asciidoc, or src/main/xslt) run through all of the
> java related precommit checks, including test4tests and the full unit test
> suite.
> Since we know these paths don't require those checks, we should update our
> personality to skip them. (or fix our project structure to match "the maven
> way".)
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)