connecting to clickhouse in R

747 Views Asked by At

I am new to clickhouse. I am trying to set connection in the following way:

library(DBI)
con <- dbConnect(clickhouse::clickhouse(),
    host="localhost",
    port=8123L,
    user="default",
    password="")

but I get this error:

Error in .local(drv, ...) : dbIsValid(con) is not TRUE

I have tested the authentication and they are correct. I also check the connection with dbCanconnect and I get this error:

"fail to connect: Operation now in progress"

Could you please help on that?

0

There are 0 best solutions below