sijie commented on a change in pull request #266: Issue 265: Add persistable bookie status URL: https://github.com/apache/bookkeeper/pull/266#discussion_r128891356
########## File path: bookkeeper-server/src/main/java/org/apache/bookkeeper/conf/ServerConfiguration.java ########## @@ -1468,6 +1470,28 @@ public float getDiskUsageWarnThreshold() { } /** + * Whether to persist the bookie status so that when bookie server restart, + * it will continue using the previous status + * + * @param enabled + * - true if persist the bookie status. Otherwise false. + * @return ServerConfiguration + */ + public ServerConfiguration setPersistBookieStatusEnabled(boolean enabled) { + setProperty(PERSIST_BOOKIE_STATUS_ENABLED, enabled); + return this; + } + + /** + * Get whether the Bookie is force started in read only mode or not Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services