doris用 curl将文件中的数据导入doris样例
时间: 2023-12-21 10:30:29 浏览: 75
中看到主辅图像的一个轻-a64_datasheet_v1.0
以下是使用curl将文件中的数据导入Doris的示例:
```shell
curl --location-trusted -u user:passwd -T data.file -XPUT http://fe_host:http_port/api/{db}/{table}/_stream_load
```
其中,`user`和`passwd`是Doris的用户名和密码,`data.file`是要导入的本地文件路径,`db`和`table`是要导入的数据库和表名,`fe_host`和`http_port`是Doris前端的主机名和端口号。
该命令将会把本地文件中的数据导入到Doris中。需要注意的是,该命令只适用于导入本地文件,如果要导入数据流中的数据,需要使用其他方式。
阅读全文