How to ingest a non-password Clickhouse datasource...
# ingestion
w
How to ingest a non-password Clickhouse datasource?
source:
type: clickhouse
config:
# Coordinates
host_port: ******:8123
# Credentials
username: default
password:
# Options
platform_instance: DatabaseNameToBeIngested
include_views: True # whether to include views, defaults to True
include_tables: True # whether to include views, defaults to True
sink:
type: datahub-rest
config:
server: http://*****:18080
It said 'password is incorrect'.
DatabaseException: Orig exception: Code: 516. DB::Exception: default: Authentication failed: password is incorrect or there is no user with such name. (AUTHENTICATION_FAILED) (version 22.5.1.2079 (official build))
c
Can you try completely omitting password from recipe? May be empty string is going or something similar?
w
Empty string not worked. I setup the password for Clickhouse. Thank you.