Manually Exporting IoTDB Data
Scenario
This section describes how to use export-csv.sh to export data from IoTDB to a CSV file.
Exporting data to CSV files may cause injection risks. Exercise caution when performing this operation.
Prerequisites
- The client has been installed. For details, see . For example, the installation directory is /opt/client. The client directory in the following operations is only an example. Change it based on the actual installation directory onsite.
- Service component users have been created by the MRS cluster administrator by referring to . In security mode, machine-machine users need to download the keytab file. For details, see . A human-machine user must change the password upon the first login.
Procedure
- Log in to the node where the client is installed as the client installation user.
- Run the following command to switch to the client installation directory:
- Run the following command to configure environment variables:
- Before logging in to the IoTDB client for the first time, perform the following steps to generate a client SSL certificate:
- Run the following command to generate a client SSL certificate:
keytool -noprompt -import -alias myservercert -file ca.crt -keystore truststore.jks
After running this command, you are required to set a password.
- Copy the generated truststore.jks file to the Client installation directory/IoTDB/iotdb/conf directory.
cp truststore.jks Client installation directory/IoTDB/iotdb/conf
- Run the following command to generate a client SSL certificate:
- (Optional) Perform this step to authenticate the current user if Kerberos authentication is enabled for the cluster. If Kerberos authentication is not enabled, skip this step.
- Run the following command to switch to the directory where the export-csv.sh script is stored:
cd /opt/client/IoTDB/iotdb/tools
- Before executing the export script, input some queries or specify some SQL files. If a SQL file contains multiple SQL statements, the SQL statements must be separated by newline characters. For example:
select * from root.fit.d1 select * from root.sg1.d1
- Execute export-csv.sh to export data.
./export-csv.sh -h Service IP address of the IoTDBServer instance -p IoTDBServer RPC port -td <directory> [-tf <time-format> -s <sqlfile>]
Example:
./export-csv.sh -h x.x.x.x -p 22260 -td ./ # Or ./export-csv.sh -h x.x.x.x -p 22260 -td ./ -tf yyyy-MM-dd\ HH:mm:ss # Or ./export-csv.sh -h x.x.x.x -p 22260 -td ./ -s sql.txt # Or ./export-csv.sh -h x.x.x.x -p 22260 -td ./ -tf yyyy-MM-dd\ HH:mm:ss -s sql.txt
- You can log in to FusionInsight Manager, choose Cluster > Services > IoTDB, and click the Instance tab to view the service IP address of the IoTDBServer instance node.
- The default RPC port number is 22260. To obtain the default RPC port number, choose Cluster > Services > IoTDB, click the Configurations tab and then All Configurations, and search for IOTDB_SERVER_RPC_PORT.
- If the data exported contains a comma (,), it will be enclosed in double quotation marks (""). For example, hello,world is exported as "hello,world".
- If the data exported contains double quotation marks (""), it will be enclosed in double quotation marks ("") and the original double quotation masks are replaced with \". For example, "world" is exported as "\"world\""
- When you run the command in 8, a message is displayed indicating that CSV injection may occur. Enter yes to continue the command. If you enter another value, the data export operation will be canceled.
For example, after you enter yes, enter the service username and password as prompted. If information in the following figure is displayed, the data is exported:
- To prevent security risks, you are advised to export CSV files in interactive mode.
- You can also export CSV files by running the ./export-csv.sh -h Service IP address of the IoTDBServer instance -p IoTDBServer RPC port -u Service username -pw Service user password -td <directory> [-tf <time-format> -s <sqlfile>] command. Commands containing authentication passwords pose security risks. Disable the command recording function (history) before running such commands to prevent information leakage.
Example:
./export-csv.sh -h x.x.x.x -p 22260 -u test -pw Password -td ./ # Or ./export-csv.sh -h x.x.x.x -p 22260 -u test -pw Password -td ./ # Or ./export-csv.sh -h x.x.x.x -p 22260 -u test -pw Password -td ./ -s sql.txt # Or ./export-csv.sh -h x.x.x.x -p 22260 -u test -pw Password -td ./ -tf yyyy-MM-dd\ HH:mm:ss -s sql.txt
If information in the following figure is displayed, the CSV file is exported:
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot