This is an automated email from the ASF dual-hosted git repository. dbarnes pushed a commit to branch support/1.12 in repository https://gitbox.apache.org/repos/asf/geode.git
commit 3fbd2f1f88ef20d59b99c0dc14df98fac489c023 Author: Dave Barnes <[email protected]> AuthorDate: Fri Jul 17 13:56:32 2020 -0700 GEODE-2113: User Guide - p2p.HANDSHAKE_POOL_SIZE is obsolete, remove from docs (#5383) --- .../source/subnavs/geode-subnav.erb | 3 -- .../system_member_performance.html.md.erb | 4 --- ...formance_connection_thread_settings.html.md.erb | 32 ---------------------- 3 files changed, 39 deletions(-) diff --git a/geode-book/master_middleman/source/subnavs/geode-subnav.erb b/geode-book/master_middleman/source/subnavs/geode-subnav.erb index 22f4084..b962728 100644 --- a/geode-book/master_middleman/source/subnavs/geode-subnav.erb +++ b/geode-book/master_middleman/source/subnavs/geode-subnav.erb @@ -683,9 +683,6 @@ limitations under the License. <li> <a href="/docs/guide/<%=vars.product_version_nodot%>/managing/monitor_tune/system_member_performance_garbage.html">Garbage Collection and System Performance</a> </li> - <li> - <a href="/docs/guide/<%=vars.product_version_nodot%>/managing/monitor_tune/system_member_performance_connection_thread_settings.html">Connection Thread Settings and Performance</a> - </li> </ul> </li> <li class="has_submenu"> diff --git a/geode-docs/managing/monitor_tune/system_member_performance.html.md.erb b/geode-docs/managing/monitor_tune/system_member_performance.html.md.erb index a3365ca..5d7ff3c 100644 --- a/geode-docs/managing/monitor_tune/system_member_performance.html.md.erb +++ b/geode-docs/managing/monitor_tune/system_member_performance.html.md.erb @@ -35,8 +35,4 @@ Before doing so, you should understand [Basic Configuration and Programming](../ If your application exhibits unacceptably high latencies, you might improve performance by modifying your JVM’s garbage collection behavior. -- **[Connection Thread Settings and Performance](system_member_performance_connection_thread_settings.html)** - - When many peer processes are started concurrently, you can improve the cluster connect time can by setting the p2p.HANDSHAKE\_POOL\_SIZE system property value to the expected number of members. - diff --git a/geode-docs/managing/monitor_tune/system_member_performance_connection_thread_settings.html.md.erb b/geode-docs/managing/monitor_tune/system_member_performance_connection_thread_settings.html.md.erb deleted file mode 100644 index b6aaea7..0000000 --- a/geode-docs/managing/monitor_tune/system_member_performance_connection_thread_settings.html.md.erb +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: Connection Thread Settings and Performance ---- - -<!-- -Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with -this work for additional information regarding copyright ownership. -The ASF licenses this file to You under the Apache License, Version 2.0 -(the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. ---> - -When many peer processes are started concurrently, you can improve the cluster connect time by setting the p2p.HANDSHAKE\_POOL\_SIZE system property value to the expected number of members. - -This property controls the number of threads that can be used to establish new TCP/IP connections between peer caches. The threads are discarded if they are idle for 60 seconds. - -The default value for p2p.HANDSHAKE\_POOL\_SIZE is 10. This command-line specification sets the number of threads to 100: - -``` pre --Dp2p.HANDSHAKE_POOL_SIZE=100 -``` - -
