ClickHouse提供两个网络端口:
- HTTP 默认8123
- TCP 默认9000
建议使用驱动或者工具库与之交互,例如:
- Clickhouse客户端
- JDBC驱动
- ODBC驱动
还有一些第三方库和工具,例如:
- 客户端库
- 集成工具
- 可视界面
以下为原文:
ClickHouse provides two network interfaces (both can be optionally wrapped in TLS for additional security):
- HTTP, which is documented and easy to use directly.
- Native TCP, which has less overhead.
In most cases it is recommended to use appropriate tool or library instead of interacting with those directly. Officially supported by Yandex are the following:
- Command-line client
- JDBC driver
- ODBC driver
There are also a wide range of third-party libraries for working with ClickHouse:
- Client libraries
- Integrations
- Visual interfaces
官方地址:https://clickhouse.yandex/docs/en/interfaces/