You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2017/08/29 00:35:43 UTC

kudu git commit: [release notes] add new kudu tool features and metrics improvements

Repository: kudu
Updated Branches:
  refs/heads/master ed76e0b2c -> 655cf1d5e


[release notes] add new kudu tool features and metrics improvements

Change-Id: Ic9514999a913c52fdfc9ed3cf6a85da50b190c68
Reviewed-on: http://gerrit.cloudera.org:8080/7865
Reviewed-by: Adar Dembo <ad...@cloudera.com>
Reviewed-by: Will Berkeley <wd...@gmail.com>
Tested-by: Dan Burkert <da...@apache.org>


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

Branch: refs/heads/master
Commit: 655cf1d5e37156c6e2170f1033024cec175c93fb
Parents: ed76e0b
Author: Dan Burkert <da...@apache.org>
Authored: Mon Aug 28 17:14:18 2017 -0700
Committer: Dan Burkert <da...@apache.org>
Committed: Tue Aug 29 00:35:18 2017 +0000

----------------------------------------------------------------------
 docs/release_notes.adoc | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/655cf1d5/docs/release_notes.adoc
----------------------------------------------------------------------
diff --git a/docs/release_notes.adoc b/docs/release_notes.adoc
index d01c1ff..800b21b 100644
--- a/docs/release_notes.adoc
+++ b/docs/release_notes.adoc
@@ -80,7 +80,15 @@
   gives administrators a quick way to validate security settings. More types of
   configuration will be added in the future.
 
+* The `kudu` command line tool has two new features: `kudu tablet move` and
+  `kudu local_replica data_size`. The tablet move tool moves a tablet replica
+  from one tablet server to another, under the condition that the tablet is
+  healthy. An operator can use this tool to rebalance tablet replicas between
+  tablet servers. The local replica data size tool summarizes the space usage of
+  a tablet, breaking it down by type of file, column, and rowset.
+
 == Optimizations and improvements
+
 * Kudu 1.5's log block manager now performs disk synchronization in batches.
   This optimization can significantly reduce the time taken to copy tablet data
   from one server to another; in one case tablet copy time was reduced by 35%.
@@ -94,6 +102,14 @@
   fail. See link:https://issues.apache.org/jira/browse/KUDU-871[KUDU-871] for
   details.
 
+* The tablet on-disk size metric has been made more accurate. Previously, the
+  metric included only REDO deltas; it now counts all deltas. Additionally, the
+  metric includes the size of bloomfiles, ad hoc indexes, and the tablet
+  superblock. WAL segments and consensus metadata are still not counted. The
+  latter is very small compared to the size of data, but the former may be
+  significant depending on the workload (this will be resolved in a future
+  release).
+
 [[rn_1.5.0_fixed_issues]]
 == Fixed Issues