You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`-sql_dialect`|`--sql_dialect`| Specifies the data model type. Valid values: `tree` (Tree Model) or `table` (Table Model). | Yes | - |
210
-
|`-h`|`--host`| Local host address (IP of the IoTDB instance where the data resides). | No |`127.0.0.1`|
211
-
|`-p`|`--port`| Port number for the IoTDB RPC service. | No |`6667`|
212
-
|`-u`|`--user`| Username for IoTDB authentication. | No |`root`|
213
-
|`-pw`|`--password`| Password for IoTDB authentication (hidden input supported). | No |`root`|
214
-
|`-t`|`--target`| Export target directory. In SCP mode, this is an absolute physical path on the remote server. TsFile and associated Object directories will be exported here. | Yes | - |
215
-
|`-db`|`--database`| Database name (optional for Table Model). | No |`.*`|
216
-
|`-table`|`--table`| Table name (optional for Table Model). | No |`.*`|
217
-
|`-s`|`--start_time`| Start time (ISO8601 format e.g. `2026-01-01T00:00:00` or millisecond timestamp). Only data from this time onwards is exported. | No | - |
218
-
|`-e`|`--end_time`| End time (same format as above). Only data before this time is exported. | No | - |
219
-
|`-th`|`--target_host`| Remote target host IP. If specified, the script automatically configures Pipe to use SCP for data transfer. | No | - |
220
-
|`-tu`|`--target_host_user`| Username for SSH/SCP login to the remote server. | No | - |
221
-
|`-tpw`|`--target_host_pw`| Password for remote authentication (hidden input supported). | No | - |
222
-
|`-tp`|`--target_host_port`| Remote SSH port. | No |`22`|
223
-
|`--rate_limit`|`--rate_limit`| Transfer rate limit (unit: Bytes/s) to prevent excessive bandwidth usage. | No | - |
224
-
|`--plugin_jar`|`--plugin_jar`| Path to the Pipe plugin JAR file. | No | - |
225
-
|`-help`|`--help`| Show help information. | No | - |
207
+
| Abbreviation | Full Name | Description | Required | Default |
|`-sql_dialect`|`--sql_dialect`| Specifies the data model type. Valid values: `tree` (Tree Model) or `table` (Table Model). | Yes | - |
210
+
|`-h`|`--host`| Local host address (IP of the IoTDB instance where the data resides). | No |`127.0.0.1`|
211
+
|`-p`|`--port`| Port number for the IoTDB RPC service. | No |`6667`|
212
+
|`-u`|`--user`| Username for IoTDB authentication. | No |`root`|
213
+
|`-pw`|`--password`| Password for IoTDB authentication (hidden input supported). | No |`root`|
214
+
|`-t`|`--target`| Export target directory. In SCP mode, this is an absolute physical path on the remote server. TsFile and associated Object directories will be exported here. | Yes | - |
215
+
|`-db`|`--database`| Database name (optional for Table Model). | No |`.*`|
216
+
|`-table`|`--table`| Table name (optional for Table Model). | No |`.*`|
217
+
|`-s`|`--start_time`| Start time (ISO8601 format e.g. `2026-01-01T00:00:00` or millisecond timestamp). Only data from this time onwards is exported. | No | - |
218
+
|`-e`|`--end_time`| End time (same format as above). Only data before this time is exported. | No | - |
219
+
|`-th`|`--target_host`| Remote target host IP. If specified, the script automatically configures Pipe to use SCP for data transfer. | No | - |
220
+
|`-tu`|`--target_host_user`| Username for SSH/SCP login to the remote server. | No | - |
221
+
|`-tpw`|`--target_host_pw`| Password for remote authentication (hidden input supported). | No | - |
222
+
|`-tp`|`--target_host_port`| Remote SSH port. | No |`22`|
223
+
|`--rate_limit`|`--rate_limit`| Transfer rate limit (unit: Bytes/s) to prevent excessive bandwidth usage. | No | - |
224
+
|`--plugin_jar`|`--plugin_jar`| Path to the Pipe plugin JAR file. | No | - |
225
+
|`--object-parallelism`|`--object-parallelism`| Specifies the maximum parallelism for object file transmission. | No | - |
226
+
|`--object-batch-size`|`--object-batch-size`| Limits the total byte size of each object file upload batch, used to control memory usage and single SCP transfer size. | No | - |
227
+
|`-help`|`--help`| Show help information. | No | - |
226
228
227
229
228
230
### 3.3 Execution Examples
@@ -244,3 +246,7 @@ Example 3: Specify Pipe Plugin JAR Directory
**Note**: When exporting Object-type data in SCP mode, to avoid handshake exceptions, connection failures, or frequent Pipe restarts, it is recommended to take any of the following measures:
251
+
* Appropriately lower the configuration parameter `object-parallelism`
252
+
* Increase the `MaxStartups` value on the target machine as needed. After modification, execute `sshd reload` or `sshd restart` for the configuration to take effect.
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Table/User-Manual/Data-Sync_timecho.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -608,6 +608,10 @@ WITH SINK (
608
608
);
609
609
```
610
610
611
+
**Note**: When exporting Object-type data in SCP mode, to avoid handshake exceptions, connection failures, or frequent Pipe restarts, it is recommended to take any of the following measures:
612
+
* Appropriately lower the configuration parameter `sink.scp.object-parallelism`
613
+
* Increase the `MaxStartups` value on the target machine as needed. After modification, execute `sshd reload` or `sshd restart` for the configuration to take effect.
| sink.rate-limit-bytes-per-second | Rate limit threshold (unit: bytes/second). Takes effect when enabled. No limit if rate-limit <= 0 | Long | No | 0 |
810
814
811
815
#### tsfile-remote-sink
812
-
| Parameter | Description | Value Range | Required | Default |
0 commit comments