Getting this error when trying to ingest from Hive...
# troubleshoot
b
Getting this error when trying to ingest from Hive. I tried with/without password; and with/without KERBEROS references to no change in result.
Copy code
ERROR    {datahub.entrypoints:206} - Command failed: Password should be set if and only if in LDAP or CUSTOM
Recipe:
Copy code
source:
    type: hive
    config:
        database: hc_orders
        profiling:
            enabled: true
        host_port: '<redacted>:10000'
        stateful_ingestion:
            enabled: true
        username: <redacted>
        password: <redacted>
        options:
            connect_args:
                auth: KERBEROS
                kerberos_service_name: hive
h
Hey Jason, how is your hive instance secured ? Is it via kerberos , LDAP or anything else ? Do you have any other clients accessing the same hive instance. It would be helpful if you can share the configuration used in that case.
b
@hundreds-photographer-13496 It's not kerberos nor LDAP... basic user/password authentication. I am able to connect to my Hive instance that way using a basic database client over JDBC. Any guidance you can offer is appreciated.
h
Hey @bright-motherboard-35257 can you try using
Copy code
options:
    connect_args:
        auth : CUSTOM
Hi Jason, did the solution work for you ?