本文介绍了通过 API 插入 clickhouse 数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以使用 get 方法从 clickhouse 数据库中获取数据,同样,我想使用 post 方法插入数据.反正他们是这样做的

I can get data from the clickhouse database using get method,Similarly i want to insert data using post method .Is their anyway to do like that

推荐答案

HTTP 接口中的数据修改只允许使用 POST 方法.

Modification of data in HTTP interface is allowed using POST method only.

在 Clickhouse 官方文档中查看下面给出的示例.

Check out example given below on Clickhouse official documentation.

echo 'INSERT INTO t VALUES (1),(2),(3)' | curl 'http://localhost:8123/' --data-binary @-

https://clickhouse.yandex/docs/en/interfaces/http_interface/

使用发布图片进行编辑.

Edit With Post Image.

插入后 postman 和 clickhouse 客户端的截图

这篇关于通过 API 插入 clickhouse 数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-17 07:17