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/12/12 07:01:51 UTC

[2/2] kudu git commit: Modify the default value of log_dir flag.

Modify the default value of log_dir flag.

The document about configuration says that the default value of
log_dir flag is "/var/log/kudu" but it's "/tmp" in fact.

Change-Id: Icdc6539907e6ba105bf08b0ee349dbeb4089e08d
Reviewed-on: http://gerrit.cloudera.org:8080/5436
Reviewed-by: Todd Lipcon <to...@apache.org>
Tested-by: Kudu Jenkins


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

Branch: refs/heads/master
Commit: 244c6feaed418a4d38eca3d328db4d77d7552471
Parents: 2e403f2
Author: Kousuke Saruta <sa...@oss.nttdata.co.jp>
Authored: Fri Dec 9 11:58:40 2016 +0900
Committer: Todd Lipcon <to...@apache.org>
Committed: Mon Dec 12 06:57:40 2016 +0000

----------------------------------------------------------------------
 docs/configuration.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/244c6fea/docs/configuration.adoc
----------------------------------------------------------------------
diff --git a/docs/configuration.adoc b/docs/configuration.adoc
index 22b591f..53a66ec 100644
--- a/docs/configuration.adoc
+++ b/docs/configuration.adoc
@@ -76,7 +76,7 @@ directories where the Master will place its data blocks.
 |--fs_wal_dir | string | | The directory where the Master will
 place its write-ahead logs. May be the same as _one of_ the directories listed in
 `--fs_data_dirs`, but not a sub-directory of a data directory.
-|--log_dir | string | /var/log/kudu | The directory to store Master log files.
+|--log_dir | string | /tmp | The directory to store Master log files.
 |===
 
 For the full list of flags for masters, see the
@@ -98,7 +98,7 @@ of directories where the Tablet Server will place its data blocks.
 |--fs_wal_dir | string | | The directory where the Tablet Server will
 place its write-ahead logs. May be the same as _one of_ the directories listed in
 `--fs_data_dirs`, but not a sub-directory of a data directory.
-|--log_dir | string | /var/log/kudu | The directory to store Tablet Server log files
+|--log_dir | string | /tmp | The directory to store Tablet Server log files
 |--tserver_master_addrs | string | `127.0.0.1:7051` |  Comma separated
 addresses of the masters which the tablet server should connect to. The masters
 do not read this flag.