This is an automated email from the ASF dual-hosted git repository.
rsivaram pushed a commit to branch 2.0
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/2.0 by this push:
new 5d7f8b8 MINOR: Updated Quickstart to mention log.dirs (#5361)
5d7f8b8 is described below
commit 5d7f8b8d63f68edb00014bcc866b90750367c958
Author: Mickael Maison <[email protected]>
AuthorDate: Wed Jul 18 07:24:08 2018 +0200
MINOR: Updated Quickstart to mention log.dirs (#5361)
The default server.properties file now contains the log.dirs setting and
not log.dir anymore.
Co-authored-by: Mickael Maison <[email protected]>
Co-authored-by: Katherine Farmer <[email protected]>
Reviewers: Manikumar Reddy O <[email protected]>, Sriharsha
Chintalapani <[email protected]>
---
docs/quickstart.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/quickstart.html b/docs/quickstart.html
index 063fec0..e709cc7 100644
--- a/docs/quickstart.html
+++ b/docs/quickstart.html
@@ -113,12 +113,12 @@ Now edit these new files and set the following properties:
config/server-1.properties:
broker.id=1
listeners=PLAINTEXT://:9093
- log.dir=/tmp/kafka-logs-1
+ log.dirs=/tmp/kafka-logs-1
config/server-2.properties:
broker.id=2
listeners=PLAINTEXT://:9094
- log.dir=/tmp/kafka-logs-2
+ log.dirs=/tmp/kafka-logs-2
</pre>
<p>The <code>broker.id</code> property is the unique and permanent name of
each node in the cluster. We have to override the port and log directory only
because we are running these all on the same machine and we want to keep the
brokers from all trying to register on the same port or overwrite each other's
data.</p>
<p>