Skip to content

Commit 81a900a

Browse files
committed
update config params of V2.0.10.1
1 parent c1f044b commit 81a900a

32 files changed

Lines changed: 2546 additions & 1108 deletions

src/.vuepress/sidebar/V2.0.x/en-Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ export const enSidebar = {
318318
{ text: 'Common Config Manual', link: 'Common-Config-Manual' },
319319
{
320320
text: 'ConfigNode Config Manual',
321-
link: 'ConfigNode-Config-Manual',
321+
link: 'ConfigNode-Config-Manual_apache',
322322
},
323323
{ text: 'DataNode Config Manual', link: 'DataNode-Config-Manual_apache' },
324324
],

src/.vuepress/sidebar/V2.0.x/zh-Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export const zhSidebar = {
298298
collapsible: true,
299299
children: [
300300
{ text: '配置参数', link: 'Common-Config-Manual' },
301-
{ text: 'ConfigNode配置参数', link: 'ConfigNode-Config-Manual' },
301+
{ text: 'ConfigNode配置参数', link: 'ConfigNode-Config-Manual_apache' },
302302
{ text: 'DataNode配置参数', link: 'DataNode-Config-Manual_apache' },
303303
],
304304
},

src/.vuepress/sidebar_timecho/V2.0.x/en-Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ export const enSidebar = {
346346
{ text: 'Common Config Manual', link: 'Common-Config-Manual' },
347347
{
348348
text: 'ConfigNode Config Manual',
349-
link: 'ConfigNode-Config-Manual',
349+
link: 'ConfigNode-Config-Manual_timecho',
350350
},
351351
{ text: 'DataNode Config Manual', link: 'DataNode-Config-Manual_timecho' },
352352
],

src/.vuepress/sidebar_timecho/V2.0.x/zh-Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ export const zhSidebar = {
317317
collapsible: true,
318318
children: [
319319
{ text: '配置参数', link: 'Common-Config-Manual' },
320-
{ text: 'ConfigNode配置参数', link: 'ConfigNode-Config-Manual' },
320+
{ text: 'ConfigNode配置参数', link: 'ConfigNode-Config-Manual_timecho' },
321321
{ text: 'DataNode配置参数', link: 'DataNode-Config-Manual_timecho' },
322322
],
323323
},

src/UserGuide/Master/Table/Reference/System-Config-Manual_apache.md

Lines changed: 40 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -590,12 +590,12 @@ The `iotdb-system.properties` file contains various configurations for managing
590590

591591
- cn_selector_thread_nums_of_client_manager
592592

593-
| Name | cn_selector_thread_nums_of_client_manager |
594-
| ----------- | ------------------------------------------------------------ |
595-
| Description | Number of selector threads for client management in ConfigNode. |
596-
| Type | int |
597-
| Default | 1 |
598-
| Effective | Restart required. |
593+
| Name | cn_selector_thread_nums_of_client_manager |
594+
| ----------- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
595+
| Description | Number of selector threads for client management in ConfigNode. |
596+
| Type | int |
597+
| Default | 1 <br> The default value is changed to 0 starting from V2.0.10-beta. If the value is less than or equal to 0, it will be automatically calculated as `max(1, number of CPU cores / 4)`. |
598+
| Effective | Restart required. |
599599

600600
- cn_max_client_count_for_each_node_in_client_manager
601601

@@ -606,6 +606,16 @@ The `iotdb-system.properties` file contains various configurations for managing
606606
| Default | 300 |
607607
| Effective | Restart required. |
608608

609+
- cn_max_idle_client_count_for_each_node_in_client_manager
610+
611+
| Name | cn_max_idle_client_count_for_each_node_in_client_manager |
612+
|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
613+
| Description | The maximum number of idle clients that can be retained for a node in a clientManager. When the number of idle clients to a single node exceeds this number, excess idle clients will be evicted. Idle clients are determined by a time threshold (default 1 minute of inactivity). 0 means no idle clients will be retained, connections are destroyed immediately upon return. Supported from V2.0.10-beta. |
614+
| Type | int |
615+
| Default | 1000 |
616+
| Effective | Restart required. |
617+
618+
609619
- dn_session_timeout_threshold
610620

611621
| Name | dn_session_timeout_threshold |
@@ -635,12 +645,12 @@ The `iotdb-system.properties` file contains various configurations for managing
635645

636646
- dn_rpc_selector_thread_count
637647

638-
| Name | rpc_selector_thread_count |
639-
| ----------- | -------------------------------------------- |
640-
| Description | Number of selector threads for DataNode RPC. |
641-
| Type | int |
642-
| Default | 1 |
643-
| Effective | Restart required.t required. |
648+
| Name | rpc_selector_thread_count |
649+
| ----------- |-------------------------------------------------------------------------------------------------------|
650+
| Description | Number of selector threads for DataNode RPC. This parameter is deprecated starting from V2.0.10-beta. |
651+
| Type | int |
652+
| Default | 1 |
653+
| Effective | Restart required.t required. |
644654

645655
- dn_rpc_min_concurrent_client_num
646656

@@ -689,12 +699,12 @@ The `iotdb-system.properties` file contains various configurations for managing
689699

690700
- dn_selector_thread_count_of_client_manager
691701

692-
| Name | dn_selector_thread_count_of_client_manager |
693-
| ----------- | ------------------------------------------------------------ |
694-
| Description | selector thread (TAsyncClientManager) nums for async thread in a clientManager |
695-
| Type | int |
696-
| Default | 1 |
697-
| Effective | Restart required.t required. |
702+
| Name | dn_selector_thread_nums_of_client_manager <br> Prior to V2.0.10-beta, the parameter name was dn_selector_thread_count_of_client_manager. |
703+
| ----------- |------------------------------------------------------------------------------------------------------------------------------------------|
704+
| Description | selector thread (TAsyncClientManager) nums for async thread in a clientManager |
705+
| Type | int |
706+
| Default | 1 <br> The default value is changed to 0 starting from V2.0.10-beta. If the value is less than or equal to 0, it will be automatically calculated as `max(1, number of CPU cores / 4)`. |
707+
| Effective | Restart required.t required. |
698708

699709
- dn_max_client_count_for_each_node_in_client_manager
700710

@@ -705,6 +715,18 @@ The `iotdb-system.properties` file contains various configurations for managing
705715
| Default | 300 |
706716
| Effective | Restart required. |
707717

718+
719+
- dn_max_idle_client_count_for_each_node_in_client_manager
720+
721+
| Name | dn_max_idle_client_count_for_each_node_in_client_manager |
722+
| ------------ |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
723+
| Description | The maximum number of idle clients that can be retained for a node in a clientManager. When the number of idle clients to a single node exceeds this number, excess idle clients will be evicted. Idle clients are determined by a time threshold (default 1 minute of inactivity). 0 means no idle clients will be retained, connections are destroyed immediately upon return. Supported from V2.0.10-beta. |
724+
| Type | int |
725+
| Default | 1000 |
726+
| Effective | Restart required. |
727+
728+
729+
708730
### 4.9 Object storage management
709731

710732
- remote_tsfile_cache_dirs

0 commit comments

Comments
 (0)