Skip to content

Commit a529593

Browse files
committed
fix object_storage_endpoint
1 parent a298cf4 commit a529593

File tree

26 files changed

+260
-260
lines changed

26 files changed

+260
-260
lines changed

src/UserGuide/Master/Table/User-Manual/Tiered-Storage_timecho.md

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

src/UserGuide/Master/Tree/Reference/DataNode-Config-Manual_timecho.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -560,14 +560,14 @@ There will be at most 10 gc.log.* files and each one can reach to 10MB.
560560
|Default| iotdb_data |
561561
|Effective| After restarting system |
562562

563-
* object\_storage\_endpoiont
564-
565-
|Name| object\_storage\_endpoiont |
566-
|:---:|:--------------|
567-
|Description| endpoint of cloud storage |
568-
|Type| string |
569-
|Default| None |
570-
|Effective| After restarting system |
563+
* object\_storage\_endpoint
564+
565+
|Name| object\_storage\_endpoint |
566+
|:---:|:--------------------------------|
567+
|Description| endpoint of cloud storage |
568+
|Type| string |
569+
|Default| None |
570+
|Effective| After restarting system |
571571

572572
* object\_storage\_access\_key
573573

src/UserGuide/Master/Tree/User-Manual/Tiered-Storage_timecho.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,20 @@ To enable tiered storage in IoTDB, you need to configure the following aspects:
3434

3535
The specific parameter definitions and their descriptions are as follows.
3636

37-
| Configuration | Default | Description | Constraint |
38-
| ---------------------------------------- | ------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
39-
| dn_data_dirs | data/datanode/data | specify different storage directories and divide the storage directories into tiers | Each level of storage uses a semicolon to separate, and commas to separate within a single level; cloud (OBJECT_STORAGE) configuration can only be used as the last level of storage and the first level can't be used as cloud storage; a cloud object at most; the remote storage directory is denoted by OBJECT_STORAGE |
37+
| Configuration | Default | Description | Constraint |
38+
| --------------------------------------- | ------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
39+
| dn_data_dirs | data/datanode/data | specify different storage directories and divide the storage directories into tiers | Each level of storage uses a semicolon to separate, and commas to separate within a single level; cloud (OBJECT_STORAGE) configuration can only be used as the last level of storage and the first level can't be used as cloud storage; a cloud object at most; the remote storage directory is denoted by OBJECT_STORAGE |
4040
| tier_ttl_in_ms | -1 | Define the maximum age of data for which each tier is responsible | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs;"-1" means "unlimited". |
41-
| dn_default_space_usage_thresholds | 0.85 | Define the maximum storage usage threshold ratio for each tier of data directories. When the used space exceeds this ratio, the data will be automatically migrated to the next tier. If the storage usage of the last tier surpasses this threshold, the system will be set to ​​READ_ONLY​​ mode. | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs |
42-
| object_storage_type | `AWS_S3` | Cloud storage type. | all `AWS_S3` is supported. |
43-
| object_storage_bucket | iotdb_data | Name of cloud storage bucket | Bucket definition in AWS S3; no need to configure if remote storage is not used |
44-
| object_storage_endpoiont | | endpoint of cloud storage | endpoint of AWS S3;If remote storage is not used, no configuration required |
41+
| dn_default_space_usage_thresholds | 0.85 | Define the maximum storage usage threshold ratio for each tier of data directories. When the used space exceeds this ratio, the data will be automatically migrated to the next tier. If the storage usage of the last tier surpasses this threshold, the system will be set to ​​READ_ONLY​​ mode. | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs |
42+
| object_storage_type | `AWS_S3` | Cloud storage type. | all `AWS_S3` is supported. |
43+
| object_storage_bucket | iotdb_data | Name of cloud storage bucket | Bucket definition in AWS S3; no need to configure if remote storage is not used |
44+
| object_storage_endpoint | | endpoint of cloud storage | endpoint of AWS S3;If remote storage is not used, no configuration required |
4545
| object_storage_region | (Empty) | Cloud storage Region. | Required only if cloud storage is used. |
46-
| object_storage_access_key | | Authentication information stored in the cloud: key | AWS S3 credential key;If remote storage is not used, no configuration required |
47-
| object_storage_access_secret | | Authentication information stored in the cloud: secret | AWS S3 credential secret;If remote storage is not used, no configuration required |
46+
| object_storage_access_key | | Authentication information stored in the cloud: key | AWS S3 credential key;If remote storage is not used, no configuration required |
47+
| object_storage_access_secret | | Authentication information stored in the cloud: secret | AWS S3 credential secret;If remote storage is not used, no configuration required |
4848
| enable_path_style_access | false | Whether to enable path style access for object storage service. | Required only if cloud storage is used. |
49-
| remote_tsfile_cache_dirs | data/datanode/data/cache | Cache directory stored locally in the cloud | If remote storage is not used, no configuration required |
50-
| remote_tsfile_cache_page_size_in_kb | 20480 |Block size of locally cached files stored in the cloud | If remote storage is not used, no configuration required |
49+
| remote_tsfile_cache_dirs | data/datanode/data/cache | Cache directory stored locally in the cloud | If remote storage is not used, no configuration required |
50+
| remote_tsfile_cache_page_size_in_kb | 20480 |Block size of locally cached files stored in the cloud | If remote storage is not used, no configuration required |
5151
| remote_tsfile_cache_max_disk_usage_in_mb | 51200 | Maximum Disk Occupancy Size for Cloud Storage Local Cache | If remote storage is not used, no configuration required |
5252

5353
## 3. local tiered storag configuration example
@@ -80,7 +80,7 @@ dn_default_space_usage_thresholds=0.2;0.15;0.1
8080
object_storage_type=AWS_S3
8181
object_storage_bucket=iotdb
8282
object_storage_region=<your_region>
83-
object_storage_endpoiont=<your_endpoint>
83+
object_storage_endpoint=<your_endpoint>
8484
object_storage_access_key=<your_access_key>
8585
object_storage_access_secret=<your_access_secret>
8686

src/UserGuide/V1.2.x/Reference/DataNode-Config-Manual.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -417,14 +417,14 @@ There will be at most 10 gc.log.* files and each one can reach to 10MB.
417417
|Default| iotdb_data |
418418
|Effective| After restarting system |
419419

420-
* object\_storage\_endpoiont
421-
422-
|Name| object\_storage\_endpoiont |
423-
|:---:|:--------------|
424-
|Description| endpoint of cloud storage |
425-
|Type| string |
426-
|Default| None |
427-
|Effective| After restarting system |
420+
* object\_storage\_endpoint
421+
422+
|Name| object\_storage\_endpoint |
423+
|:---:|:--------------------------------|
424+
|Description| endpoint of cloud storage |
425+
|Type| string |
426+
|Default| None |
427+
|Effective| After restarting system |
428428

429429
* object\_storage\_access\_key
430430

src/UserGuide/V1.2.x/User-Manual/Tiered-Storage_timecho.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ To enable tiered storage in IoTDB, you need to configure the following aspects:
3434

3535
The specific parameter definitions and their descriptions are as follows.
3636

37-
| Configuration | Default | Description | Constraint |
38-
| ---------------------------------------- | ------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
39-
| dn_data_dirs | data/datanode/data | specify different storage directories and divide the storage directories into tiers | Each level of storage uses a semicolon to separate, and commas to separate within a single level; cloud (OBJECT_STORAGE) configuration can only be used as the last level of storage and the first level can't be used as cloud storage; a cloud object at most; the remote storage directory is denoted by OBJECT_STORAGE |
40-
| default_ttl_in_ms | -1 | Define the maximum age of data for which each tier is responsible | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs |
41-
| dn_default_space_move_thresholds | 0.15 | Define the minimum remaining space ratio for each tier data catalogue; when the remaining space is less than this ratio, the data will be automatically migrated to the next tier; when the remaining storage space of the last tier falls below this threshold, the system will be set to READ_ONLY | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs |
42-
| object_storage_type | AWS_S3 | Cloud Storage Type | IoTDB currently only supports AWS S3 as a remote storage type, and this parameter can't be modified |
43-
| object_storage_bucket | iotdb_data | Name of cloud storage bucket | Bucket definition in AWS S3; no need to configure if remote storage is not used |
44-
| object_storage_endpoiont | | endpoint of cloud storage | endpoint of AWS S3;If remote storage is not used, no configuration required |
45-
| object_storage_access_key | | Authentication information stored in the cloud: key | AWS S3 credential key;If remote storage is not used, no configuration required |
46-
| object_storage_access_secret | | Authentication information stored in the cloud: secret | AWS S3 credential secret;If remote storage is not used, no configuration required |
47-
| remote_tsfile_cache_dirs | data/datanode/data/cache | Cache directory stored locally in the cloud | If remote storage is not used, no configuration required |
48-
| remote_tsfile_cache_page_size_in_kb | 20480 |Block size of locally cached files stored in the cloud | If remote storage is not used, no configuration required |
37+
| Configuration | Default | Description | Constraint |
38+
| --------------------------------------- | ------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
39+
| dn_data_dirs | data/datanode/data | specify different storage directories and divide the storage directories into tiers | Each level of storage uses a semicolon to separate, and commas to separate within a single level; cloud (OBJECT_STORAGE) configuration can only be used as the last level of storage and the first level can't be used as cloud storage; a cloud object at most; the remote storage directory is denoted by OBJECT_STORAGE |
40+
| default_ttl_in_ms | -1 | Define the maximum age of data for which each tier is responsible | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs |
41+
| dn_default_space_move_thresholds | 0.15 | Define the minimum remaining space ratio for each tier data catalogue; when the remaining space is less than this ratio, the data will be automatically migrated to the next tier; when the remaining storage space of the last tier falls below this threshold, the system will be set to READ_ONLY | Each level of storage is separated by a semicolon; the number of levels should match the number of levels defined by dn_data_dirs |
42+
| object_storage_type | AWS_S3 | Cloud Storage Type | IoTDB currently only supports AWS S3 as a remote storage type, and this parameter can't be modified |
43+
| object_storage_bucket | iotdb_data | Name of cloud storage bucket | Bucket definition in AWS S3; no need to configure if remote storage is not used |
44+
| object_storage_endpoint | | endpoint of cloud storage | endpoint of AWS S3;If remote storage is not used, no configuration required |
45+
| object_storage_access_key | | Authentication information stored in the cloud: key | AWS S3 credential key;If remote storage is not used, no configuration required |
46+
| object_storage_access_secret | | Authentication information stored in the cloud: secret | AWS S3 credential secret;If remote storage is not used, no configuration required |
47+
| remote_tsfile_cache_dirs | data/datanode/data/cache | Cache directory stored locally in the cloud | If remote storage is not used, no configuration required |
48+
| remote_tsfile_cache_page_size_in_kb | 20480 |Block size of locally cached files stored in the cloud | If remote storage is not used, no configuration required |
4949
| remote_tsfile_cache_max_disk_usage_in_mb | 51200 | Maximum Disk Occupancy Size for Cloud Storage Local Cache | If remote storage is not used, no configuration required |
5050

5151
## local tiered storag configuration example
@@ -77,7 +77,7 @@ default_ttl_in_ms=86400000;864000000;-1
7777
dn_default_space_move_thresholds=0.2;0.15;0.1
7878
object_storage_name=AWS_S3
7979
object_storage_bucket=iotdb
80-
object_storage_endpoiont=<your_endpoint>
80+
object_storage_endpoint=<your_endpoint>
8181
object_storage_access_key=<your_access_key>
8282
object_storage_access_secret=<your_access_secret>
8383

src/UserGuide/V1.3.x/Reference/DataNode-Config-Manual-old_timecho.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -564,14 +564,14 @@ There will be at most 10 gc.log.* files and each one can reach to 10MB.
564564
|Default| iotdb_data |
565565
|Effective| After restarting system |
566566

567-
* object\_storage\_endpoiont
568-
569-
|Name| object\_storage\_endpoiont |
570-
|:---:|:--------------|
571-
|Description| endpoint of cloud storage |
572-
|Type| string |
573-
|Default| None |
574-
|Effective| After restarting system |
567+
* object\_storage\_endpoint
568+
569+
|Name| object\_storage\_endpoint |
570+
|:---:|:--------------------------------|
571+
|Description| endpoint of cloud storage |
572+
|Type| string |
573+
|Default| None |
574+
|Effective| After restarting system |
575575

576576
* object\_storage\_access\_key
577577

src/UserGuide/V1.3.x/Reference/DataNode-Config-Manual_timecho.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -556,14 +556,14 @@ There will be at most 10 gc.log.* files and each one can reach to 10MB.
556556
|Default| iotdb_data |
557557
|Effective| After restarting system |
558558

559-
* object\_storage\_endpoiont
560-
561-
|Name| object\_storage\_endpoiont |
562-
|:---:|:--------------|
563-
|Description| endpoint of cloud storage |
564-
|Type| string |
565-
|Default| None |
566-
|Effective| After restarting system |
559+
* object\_storage\_endpoint
560+
561+
|Name| object\_storage\_endpoint |
562+
|:---:|:--------------------------------|
563+
|Description| endpoint of cloud storage |
564+
|Type| string |
565+
|Default| None |
566+
|Effective| After restarting system |
567567

568568
* object\_storage\_access\_key
569569

0 commit comments

Comments
 (0)