You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2016/08/23 06:27:48 UTC

kudu git commit: Fix release notes formatting for multi-paragraph list items

Repository: kudu
Updated Branches:
  refs/heads/branch-0.10.x b9db4a4a6 -> ffd8fa475


Fix release notes formatting for multi-paragraph list items

If a list item spans multiple paragraphs in AsciiDoc, it needs
a '+' in the intervening blank line, and the latter paragraphs
should not be indented on their first line. The text is a bit
uglier, but it fixes the rendering.

Change-Id: Ie65570ed32acef1c3025f351f7c4b4944f443f6e
Reviewed-on: http://gerrit.cloudera.org:8080/4089
Reviewed-by: Todd Lipcon <to...@apache.org>
Tested-by: Todd Lipcon <to...@apache.org>


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

Branch: refs/heads/branch-0.10.x
Commit: ffd8fa4758fd8598a8d06a79249a6ab57d72aa81
Parents: b9db4a4
Author: Todd Lipcon <to...@apache.org>
Authored: Mon Aug 22 23:16:34 2016 -0700
Committer: Todd Lipcon <to...@apache.org>
Committed: Tue Aug 23 06:18:16 2016 +0000

----------------------------------------------------------------------
 docs/release_notes.adoc | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/ffd8fa47/docs/release_notes.adoc
----------------------------------------------------------------------
diff --git a/docs/release_notes.adoc b/docs/release_notes.adoc
index 32a787b..ce5c290 100644
--- a/docs/release_notes.adoc
+++ b/docs/release_notes.adoc
@@ -76,8 +76,8 @@ To upgrade to Kudu 0.10.0, see <<rn_0.10.0_upgrade>>.
 
 - The C++ API for specifying split points on range-partitioned tables has been improved
   to make it easier for callers to properly manage the ownership of the provided rows.
-
-  The `TableCreator::split_rows` API took a `vector<const KuduPartialRow*>`, which
++
+The `TableCreator::split_rows` API took a `vector<const KuduPartialRow*>`, which
   made it very difficult for the calling application to do proper error handling with
   cleanup when setting the fields of the `KuduPartialRow`. This API has been now been
   deprecated and replaced by a new method `TableCreator::add_range_split` which allows
@@ -88,8 +88,8 @@ To upgrade to Kudu 0.10.0, see <<rn_0.10.0_upgrade>>.
   maximum buffer size constrains the total number of buffered operations across all
   tablet servers in the cluster. This provides a more consistent bound on the memory
   usage of the client regardless of the size of the cluster to which it is writing.
-
-  This change can negatively affect the write performance of Java clients which rely on
++
+This change can negatively affect the write performance of Java clients which rely on
   buffered writes. Consider using the `setMutationBufferSpace` API to increase a
   session's maximum buffer size if write performance seems to be degraded after upgrading
   to Kudu 0.10.0.
@@ -111,8 +111,8 @@ To upgrade to Kudu 0.10.0, see <<rn_0.10.0_upgrade>>.
   When a table is created, the user may specify a set of range partitions that
   do not cover the entire available key space. A user may add or drop range
   partitions to existing tables.
-
-  This feature can be particularly helpful with time series workloads in which
++
+This feature can be particularly helpful with time series workloads in which
   new partitions can be created on an hourly or daily basis. Old partitions
   may be efficiently dropped if the application does not need to retain historical
   data past a certain point.
@@ -124,8 +124,8 @@ To upgrade to Kudu 0.10.0, see <<rn_0.10.0_upgrade>>.
 - Support for running Kudu clusters with multiple masters has been stabilized.
   Users may start a cluster with three or five masters to provide fault tolerance
   despite a failure of one or two masters, respectively.
-
-  Note that certain tools (e.g. `ksck`) are still lacking complete support for
++
+Note that certain tools (e.g. `ksck`) are still lacking complete support for
   multiple masters. These deficiencies will be addressed in a following release.
 
 - Kudu now supports the ability to reserve a certain amount of free disk space
@@ -133,8 +133,8 @@ To upgrade to Kudu 0.10.0, see <<rn_0.10.0_upgrade>>.
   drops to less than the configured minimum, Kudu will stop writing to that
   directory until space becomes available. If no space is available in any
   configured directory, Kudu will abort.
-
-  This feature may be configured using the `fs_data_dirs_reserved_bytes` and
++
+This feature may be configured using the `fs_data_dirs_reserved_bytes` and
   `fs_wal_dir_reserved_bytes` flags.
 
 - The Spark integration's `KuduContext` now supports four new methods for writing to