Kürşat Şahin
Kürşat Şahin

Reputation: 11

Superset Cannot access to ClickHouse DB

Superset cannot access to ClickHouse and produces this below error message:

ERROR: {"error": "Connection failed!
The error message returned was:
Code: 516, e.displayText() = DB::Exception: default: Authentication failed: password is incorrect or there is no user with such name (version 20.3.4.10 (official build))"}

URI String is :

clickhouse://default:[email protected]:8123/tutorial

Thanks in advance.

Upvotes: 1

Views: 944

Answers (1)

vladimir
vladimir

Reputation: 15218

It is the bug in sqlalchemy-clickhouse, to fix need to manually downgrade the package infi.clickhouse_orm up to version 1.0.4:

pip install infi.clickhouse_orm==1.0.4

See more details here.

Upvotes: 1

Related Questions