You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bookkeeper.apache.org by gi...@git.apache.org on 2017/08/02 17:16:08 UTC

[GitHub] lucperkins commented on a change in pull request #368: Issue 360: [documentation] configuration settings

lucperkins commented on a change in pull request #368: Issue 360: [documentation] configuration settings
URL: https://github.com/apache/bookkeeper/pull/368#discussion_r130938943
 
 

 ##########
 File path: site/_data/config/bk_server.yaml
 ##########
 @@ -53,6 +82,56 @@ groups:
   - param: numReadWorkerThreads
     description: The umber of threads that handle read requests. If 0, reads are handled by [Netty threads](http://netty.io/wiki/thread-model.html) directly.
     default: 1
+  - param: isForceGCAllowWhenNoSpace
+    description: Whether force compaction is allowed when disk full or almost full Force GC may get some space back, but may also fill up disk space more quickly. This is because new log files are created before GC, while old garbage log files deleted after GC.
+    default: 'false'
+
+- name: SSL settings
+  params:
+  - param: sslProvider
+    description: SSL Provider (JDK or OpenSSL)
+    default: OpenSSL
+  - param: sslProviderFactoryClass
+    description: The path to class that provides security.
+    default: org.apache.bookkeeper.security.SSLContextFactory
+  - param: sslClientAuthentication
+    description: Type of security used by server.
+    default: 'true'
+  - param: sslKeyStoreType
+    description: Bookie Keystore type.
+    default: JKS
+  - param: sslKeyStore
+    description: Bookie Keystore location (path).
+    default: null
+  - param: sslKeyStore
+    description: Bookie Keystore location (path).
+    default: null
+  - param: sslKeyStorePasswordPath
+    description: Bookie Keystore password path, if the keystore is protected by a password.
+    default: null
+  - param: sslTrustStoreType
+    description: Bookie Truststore type.
+    default: null
+  - param: sslTrustStore
+    description: Bookie Truststore location (path).
+    default: null
+  - param: sslTrustStorePasswordPath
+    description: Bookie Truststore password path, if the truststore is protected by a password.
+    default: null
+
+
+- name: Long poll request parameters settings
 
 Review comment:
   parameter settings
 
----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services