This is an automated email from the ASF dual-hosted git repository.
tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git
The following commit(s) were added to refs/heads/main by this push:
new c7805d4dbb1 [improve][doc] Add doc for `pulsar.enableUring` property
(#428)
c7805d4dbb1 is described below
commit c7805d4dbb15161e90b3d9869ac1b28005abaab6
Author: Cong Zhao <[email protected]>
AuthorDate: Tue Feb 21 16:01:44 2023 +0800
[improve][doc] Add doc for `pulsar.enableUring` property (#428)
* add doc for property
* apply comment
---
static/reference/next/config/README.md | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/static/reference/next/config/README.md
b/static/reference/next/config/README.md
index a8d9ec8ae84..4c21b3ffef5 100644
--- a/static/reference/next/config/README.md
+++ b/static/reference/next/config/README.md
@@ -25,4 +25,12 @@ If you want to override the configurations of clients
internal to brokers, webso
> Notes:
> * This override feature only applies to Pulsar 2.10.1 and later versions.
-> * When running the function worker within the broker, you have to configure
those clients by using the `functions_worker.yml` file. These prefixed
configurations do not apply to any of those clients.
\ No newline at end of file
+> * When running the function worker within the broker, you have to configure
those clients by using the `functions_worker.yml` file. These prefixed
configurations do not apply to any of those clients.
+
+### Set specific configurations using Java system property
+
+You can set specific configurations through Java properties.
+
+| **Property** | **Description**
|
+| ------------------ |
------------------------------------------------------------ |
+| pulsar.enableUring | Use `io_uring` instead of `epoll` as network IO mode.
`-Dpulsar.enableUring=1` means this feature is enabled. |