python连接clickhouse的端口问题及解决
目录
- python连接clickhouse端口问题
- 向clickhouse导数据报错
python连接clickhouse端口问题
81239000
注意到可以使用两个端口,8123 和 9000 分别接收 http 协议和tcp协议。
- 如果用jdbc连接,端口为 8123
- 如果用driver连接,端口为 9000
from clickhouse_driver import Clientclient = Client(host=host, port=port, user=user, password=password, database='default')client= get_client()client.execute("show tables; ")print(client.execute("select * from test_arr"))client.disconnect()
此时如果用8123端口则会得到如下报错:
clickhouse_driver.errors.UnexpectedPacketFromServerError: Code: 102. Unexpected packet from server 192.168.137.101:8123 (expected Hello or Exception, got Unknown packet)
向clickhouse导数据报错
clickhouse_driver.errors.UnexpectedPacketFromServerError: Code: 102今天用python写个etl从mysql向clickhouse同步数据, 数据量不到1千万,导了一会报上面的第错误。然后在网上查了一下:找到文档写得很清楚:
Welcome to clickhouse-driver — clickhouse-driver 0.2.4 documentation
原来clickhouse提供两个端口:8123和9000
用native protocal需要使用9000端口,然后修改端口后成功。
【python连接clickhouse的端口问题及解决】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 利用Python字符画生成甜心教主
- 使用Python开发鸿蒙设备程序(3-安防系统雏形)
- [python] 狄克斯特拉算法
- python问题(IndentationError:expected an indented block)
- Python|【Python】关于递进错误indentationerror
- python|python性能优化全面指南
- python|Python爬虫之mongodb介绍和安装
- python|深入浅出——Mybaties 入门码农避坑必备(一)
- 学习笔记|使用node.js来连接mongodb数据库
- Python|Python ImportError libGL.so.1 cannot open shared object file No such file or directory 解决方案