This is an automated email from the ASF dual-hosted git repository.

xiangying pushed a commit to branch branch-2.10
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/branch-2.10 by this push:
     new 52062623b5c Remove invalid Netty system property which never was valid 
for Netty 4.1.x (#13563)
52062623b5c is described below

commit 52062623b5c1c5b2946e7a13ba5d004071b0b3cf
Author: Qiang Huang <[email protected]>
AuthorDate: Tue Apr 12 16:29:24 2022 +0800

    Remove invalid Netty system property which never was valid for Netty 4.1.x 
(#13563)
    
    (cherry picked from commit 4721ce1144dc9dd80536503fa48c31abb9b90096)
---
 bin/function-localrunner                                                | 2 +-
 conf/bkenv.sh                                                           | 2 +-
 conf/pulsar_env.sh                                                      | 2 +-
 deployment/terraform-ansible/templates/pulsar_env.sh                    | 2 +-
 site2/docs/cookbooks-tiered-storage.md                                  | 2 +-
 site2/docs/tiered-storage-aws.md                                        | 2 +-
 .../versioned_docs/version-2.1.0-incubating/cookbooks-tiered-storage.md | 2 +-
 .../versioned_docs/version-2.1.1-incubating/cookbooks-tiered-storage.md | 2 +-
 site2/website/versioned_docs/version-2.2.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.4.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.5.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.6.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.6.1/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.6.2/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.6.3/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.6.4/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.7.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.7.0/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.7.1/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.7.1/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.7.2/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.7.2/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.7.3/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.7.3/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.7.4/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.7.4/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.8.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.8.0/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.8.1/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.8.1/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.8.2/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.8.2/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.9.0/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.9.0/tiered-storage-aws.md        | 2 +-
 site2/website/versioned_docs/version-2.9.1/cookbooks-tiered-storage.md  | 2 +-
 site2/website/versioned_docs/version-2.9.1/tiered-storage-aws.md        | 2 +-
 36 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/bin/function-localrunner b/bin/function-localrunner
index b72c4ba0ec7..2537ef135e2 100755
--- a/bin/function-localrunner
+++ b/bin/function-localrunner
@@ -39,7 +39,7 @@ else
 fi
 
 # Extra options to be passed to the jvm
-PULSAR_EXTRA_OPTS=${PULSAR_EXTRA_OPTS:-" -Dpulsar.allocator.exit_on_oom=true 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"}
+PULSAR_EXTRA_OPTS=${PULSAR_EXTRA_OPTS:-" -Dpulsar.allocator.exit_on_oom=true 
-Dio.netty.recycler.maxCapacityPerThread=4096"}
 
 # Check for the java to use
 if [[ -z $JAVA_HOME ]]; then
diff --git a/conf/bkenv.sh b/conf/bkenv.sh
index e6b7af687fd..8d25c6af653 100644
--- a/conf/bkenv.sh
+++ b/conf/bkenv.sh
@@ -50,7 +50,7 @@ else
 fi
 
 # Extra options to be passed to the jvm
-BOOKIE_EXTRA_OPTS="${BOOKIE_EXTRA_OPTS:-"-Dio.netty.leakDetectionLevel=disabled
 ${PULSAR_EXTRA_OPTS:-"-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"}"}"
+BOOKIE_EXTRA_OPTS="${BOOKIE_EXTRA_OPTS:-"-Dio.netty.leakDetectionLevel=disabled
 ${PULSAR_EXTRA_OPTS:-"-Dio.netty.recycler.maxCapacityPerThread=4096"}"}"
 
 # Add extra paths to the bookkeeper classpath
 # BOOKIE_EXTRA_CLASSPATH=
diff --git a/conf/pulsar_env.sh b/conf/pulsar_env.sh
index 8e8ff969dec..a925ddf8796 100755
--- a/conf/pulsar_env.sh
+++ b/conf/pulsar_env.sh
@@ -58,7 +58,7 @@ else
 fi
 
 # Extra options to be passed to the jvm
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS:-" -Dpulsar.allocator.exit_on_oom=true 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"}"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS:-" -Dpulsar.allocator.exit_on_oom=true 
-Dio.netty.recycler.maxCapacityPerThread=4096"}"
 
 # Add extra paths to the bookkeeper classpath
 # PULSAR_EXTRA_CLASSPATH=
diff --git a/deployment/terraform-ansible/templates/pulsar_env.sh 
b/deployment/terraform-ansible/templates/pulsar_env.sh
index 7424fb1ec73..6d5c6892ead 100644
--- a/deployment/terraform-ansible/templates/pulsar_env.sh
+++ b/deployment/terraform-ansible/templates/pulsar_env.sh
@@ -48,7 +48,7 @@ PULSAR_MEM=" -Xms{{ max_heap_memory }} -Xmx{{ max_heap_memory 
}} -XX:MaxDirectMe
 PULSAR_GC=" -XX:+UseG1GC -XX:MaxGCPauseMillis=10 -XX:+ParallelRefProcEnabled 
-XX:+UnlockExperimentalVMOptions -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 
-XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC"
 
 # Extra options to be passed to the jvm
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 
 # Add extra paths to the bookkeeper classpath
 # PULSAR_EXTRA_CLASSPATH=
diff --git a/site2/docs/cookbooks-tiered-storage.md 
b/site2/docs/cookbooks-tiered-storage.md
index 731a7cb93d5..8b291286f72 100644
--- a/site2/docs/cookbooks-tiered-storage.md
+++ b/site2/docs/cookbooks-tiered-storage.md
@@ -106,7 +106,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/docs/tiered-storage-aws.md b/site2/docs/tiered-storage-aws.md
index addccba41cb..640c104464e 100644
--- a/site2/docs/tiered-storage-aws.md
+++ b/site2/docs/tiered-storage-aws.md
@@ -144,7 +144,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.1.0-incubating/cookbooks-tiered-storage.md
 
b/site2/website/versioned_docs/version-2.1.0-incubating/cookbooks-tiered-storage.md
index 7c55b7d50a4..1d0cc23ad29 100644
--- 
a/site2/website/versioned_docs/version-2.1.0-incubating/cookbooks-tiered-storage.md
+++ 
b/site2/website/versioned_docs/version-2.1.0-incubating/cookbooks-tiered-storage.md
@@ -73,7 +73,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 2. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 3. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.1.1-incubating/cookbooks-tiered-storage.md
 
b/site2/website/versioned_docs/version-2.1.1-incubating/cookbooks-tiered-storage.md
index 95e47fefd2a..d1313750c30 100644
--- 
a/site2/website/versioned_docs/version-2.1.1-incubating/cookbooks-tiered-storage.md
+++ 
b/site2/website/versioned_docs/version-2.1.1-incubating/cookbooks-tiered-storage.md
@@ -73,7 +73,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 2. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 3. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.2.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.2.0/cookbooks-tiered-storage.md
index 6e1c78031ff..9b9047b1b8b 100644
--- a/site2/website/versioned_docs/version-2.2.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.2.0/cookbooks-tiered-storage.md
@@ -94,7 +94,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 2. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 3. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.4.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.4.0/cookbooks-tiered-storage.md
index d35be36d15c..97fd2b9ca53 100644
--- a/site2/website/versioned_docs/version-2.4.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.4.0/cookbooks-tiered-storage.md
@@ -101,7 +101,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.5.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.5.0/cookbooks-tiered-storage.md
index b5db1599333..9ab48d98870 100644
--- a/site2/website/versioned_docs/version-2.5.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.5.0/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.6.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.6.0/cookbooks-tiered-storage.md
index 4eea2099e11..10a5615f13f 100644
--- a/site2/website/versioned_docs/version-2.6.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.6.0/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.6.1/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.6.1/cookbooks-tiered-storage.md
index 347904e8796..d33b9c08c92 100644
--- a/site2/website/versioned_docs/version-2.6.1/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.6.1/cookbooks-tiered-storage.md
@@ -101,7 +101,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.6.2/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.6.2/cookbooks-tiered-storage.md
index aaadf25f683..17cd6d32086 100644
--- a/site2/website/versioned_docs/version-2.6.2/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.6.2/cookbooks-tiered-storage.md
@@ -101,7 +101,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.6.3/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.6.3/cookbooks-tiered-storage.md
index 18391c897cd..b10cc1daa78 100644
--- a/site2/website/versioned_docs/version-2.6.3/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.6.3/cookbooks-tiered-storage.md
@@ -101,7 +101,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.6.4/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.6.4/cookbooks-tiered-storage.md
index bac4cc6648c..521e9d46320 100644
--- a/site2/website/versioned_docs/version-2.6.4/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.6.4/cookbooks-tiered-storage.md
@@ -101,7 +101,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git 
a/site2/website/versioned_docs/version-2.7.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.7.0/cookbooks-tiered-storage.md
index 9b5e93cc7e2..f6ff14c2171 100644
--- a/site2/website/versioned_docs/version-2.7.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.7.0/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.7.0/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.7.0/tiered-storage-aws.md
index 99be8cb1d2f..90e0e1ef217 100644
--- a/site2/website/versioned_docs/version-2.7.0/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.7.0/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.7.1/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.7.1/cookbooks-tiered-storage.md
index 0d09de6b406..606247452ea 100644
--- a/site2/website/versioned_docs/version-2.7.1/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.7.1/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.7.1/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.7.1/tiered-storage-aws.md
index 8c802c64f24..8e5560c9099 100644
--- a/site2/website/versioned_docs/version-2.7.1/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.7.1/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.7.2/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.7.2/cookbooks-tiered-storage.md
index 5b7cb2b3984..66eeea84482 100644
--- a/site2/website/versioned_docs/version-2.7.2/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.7.2/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.7.2/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.7.2/tiered-storage-aws.md
index 8eda59a90a1..6364d59cfe7 100644
--- a/site2/website/versioned_docs/version-2.7.2/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.7.2/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.7.3/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.7.3/cookbooks-tiered-storage.md
index cf216716edb..c00d53c83a9 100644
--- a/site2/website/versioned_docs/version-2.7.3/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.7.3/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.7.3/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.7.3/tiered-storage-aws.md
index 72da5116d38..6c36c917f1e 100644
--- a/site2/website/versioned_docs/version-2.7.3/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.7.3/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.7.4/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.7.4/cookbooks-tiered-storage.md
index 25cc60eb7cd..0c2bf65ddcf 100644
--- a/site2/website/versioned_docs/version-2.7.4/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.7.4/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.7.4/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.7.4/tiered-storage-aws.md
index c3230fbb4cf..a29f92d2627 100644
--- a/site2/website/versioned_docs/version-2.7.4/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.7.4/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.8.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.8.0/cookbooks-tiered-storage.md
index 82ec830266c..210980845ae 100644
--- a/site2/website/versioned_docs/version-2.8.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.8.0/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.8.0/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.8.0/tiered-storage-aws.md
index 27b181b3196..d7188f52a68 100644
--- a/site2/website/versioned_docs/version-2.8.0/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.8.0/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.8.1/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.8.1/cookbooks-tiered-storage.md
index 70dffe108a1..53f8c521106 100644
--- a/site2/website/versioned_docs/version-2.8.1/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.8.1/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.8.1/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.8.1/tiered-storage-aws.md
index c54d9cf03de..4cb4d44d61b 100644
--- a/site2/website/versioned_docs/version-2.8.1/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.8.1/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.8.2/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.8.2/cookbooks-tiered-storage.md
index c328673ca93..f087aa8c5ca 100644
--- a/site2/website/versioned_docs/version-2.8.2/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.8.2/cookbooks-tiered-storage.md
@@ -103,7 +103,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.8.2/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.8.2/tiered-storage-aws.md
index 381ed6e1e00..936d2e32988 100644
--- a/site2/website/versioned_docs/version-2.8.2/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.8.2/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.9.0/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.9.0/cookbooks-tiered-storage.md
index 4d46c137c5c..3bfc5c57b25 100644
--- a/site2/website/versioned_docs/version-2.9.0/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.9.0/cookbooks-tiered-storage.md
@@ -107,7 +107,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.9.0/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.9.0/tiered-storage-aws.md
index ed004bef5ec..bca98872bce 100644
--- a/site2/website/versioned_docs/version-2.9.0/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.9.0/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.
diff --git 
a/site2/website/versioned_docs/version-2.9.1/cookbooks-tiered-storage.md 
b/site2/website/versioned_docs/version-2.9.1/cookbooks-tiered-storage.md
index baec48ad4cd..e254cab008a 100644
--- a/site2/website/versioned_docs/version-2.9.1/cookbooks-tiered-storage.md
+++ b/site2/website/versioned_docs/version-2.9.1/cookbooks-tiered-storage.md
@@ -107,7 +107,7 @@ export 
AWS_SECRET_ACCESS_KEY=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c
 3. Add the Java system properties *aws.accessKeyId* and *aws.secretKey* to 
**PULSAR_EXTRA_OPTS** in `conf/pulsar_env.sh`.
 
 ```bash
-PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
 ```
 
 4. Set the access credentials in ```~/.aws/credentials```.
diff --git a/site2/website/versioned_docs/version-2.9.1/tiered-storage-aws.md 
b/site2/website/versioned_docs/version-2.9.1/tiered-storage-aws.md
index 1579f9b8b3f..ccfd0378b92 100644
--- a/site2/website/versioned_docs/version-2.9.1/tiered-storage-aws.md
+++ b/site2/website/versioned_docs/version-2.9.1/tiered-storage-aws.md
@@ -145,7 +145,7 @@ Once you have created a set of credentials in the AWS IAM 
console, you can confi
 * Add the Java system properties `aws.accessKeyId` and `aws.secretKey` to 
`PULSAR_EXTRA_OPTS` in `conf/pulsar_env.sh`.
 
     ```bash
-    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacity.default=1000 
-Dio.netty.recycler.linkCapacity=1024"
+    PULSAR_EXTRA_OPTS="${PULSAR_EXTRA_OPTS} ${PULSAR_MEM} ${PULSAR_GC} 
-Daws.accessKeyId=ABC123456789 
-Daws.secretKey=ded7db27a4558e2ea8bbf0bf37ae0e8521618f366c 
-Dio.netty.leakDetectionLevel=disabled 
-Dio.netty.recycler.maxCapacityPerThread=4096"
     ```
 
 * Set the access credentials in `~/.aws/credentials`.


Reply via email to