Clickhouse jdbc驱动程序连接问题



我们正在尝试使用jdbc驱动程序连接到clickhouse服务器。我们的代码片段在scala中,在java中不会有太大不同

import java.util.Properties
Class.forName("ru.yandex.clickhouse.ClickHouseDriver")
var conn : Connection = null
try {
conn = DriverManager.getConnection("jdbc:clickhouse://xxxxxx:9001/db_name", "usrname", "pass")
val stmt = conn.createStatement()
val sql =s"""select 1""".stripMargin
stmt.executeQuery(sql)
} finally {
if(conn != null)
conn.close()
}

我们得到以下错误:

ClickHouseUnknownException: ClickHouse exception, code: 1002, host: xxxxxxx, port: 9001; xxxxxxxxx:9001 failed to respond
Caused by: NoHttpResponseException: xxxxxxxxx:9001 failed to respond

我们浏览了其他几页,提到了同样的错误,为了与那里的建议保持一致,我们使用了最新版本的驱动程序(0.3.1-patch(

我们在另一个驱动程序(clickhouse原生jdbc(中也尝试过这种方法,但也出现了同样的错误。

为了添加更多的上下文,我们尝试使用带有以下代码片段的python clickhouse驱动程序-

from clickhouse_driver import Client
conn = Client('xxxxxxxxxx', password='pass', port=9001, user='usrname', verify= False, secure=True)
q1 ="select * from db_name.table limit 5"
result = conn.execute(q1)
print(result)

这是有效的。

我们不确定这是否只是因为ssl安全设置为true和验证设置为false。如果是这样的话,应该如何将它们添加到上面使用的驱动程序中?如果这不是原因,原因可能是什么?

正如@AndreiKoch在对该问题的评论中所提到的,我们假设jdbc驱动程序将使用9001,就像python中使用的clickhouse驱动程序一样:https://clickhouse-driver.readthedocs.io/_/downloads/en/0.0.20/pdf/。

但是,本机jdbc驱动程序(在scala片段中使用(通过端口8123使用HTTP。

相关内容

  • 没有找到相关文章

最新更新