Github user anmolnar commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/567#discussion_r209526014
--- Diff: zookeeper-docs/src/documentation/content/xdocs/zookeeperAdmin.xml
---
@@ -840,6 +840,26 @@ server.3=zoo3:2888:3888</programlisting>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term>txnLogSizeLimitInKb</term>
+
+ <listitem>
+ <para>(Java system property: <emphasis
+ role="bold">zookeeper.txnLogSizeLimitInKb</emphasis>)</para>
+
+ <para>Zookeeper transaction log file can also be controlled
more
+ directly using txnLogSizeLimitInKb. Larger txn logs can lead
to
+ slower follower syncs when sync is done using transaction
log.
+ This is because leader has to scan through the appropriate
log
+ file on disk to find the transaction to start sync from.
+ This feature is turned off by this default and snapCount is
the
--- End diff --
I think it's okay to update HTML and PDF too. As long as they're part of
the repo, we should keep them up-to-date.
---