Skip to content

bug: ibis.impala.connect() uses user instead of username parameter #11774

@Isaamarod

Description

@Isaamarod

What happened?

The ibis.impala.connect() function accepts 'user' as parameter name, but the documentation shows 'username'. Using 'username' fails to authenticate, while 'user' works correctly. This is inconsistent with other ibis backends that use 'username'.

This fails or doesn't authenticate properly:

client = ibis.impala.connect(
host='your-host',
port=443,
username='user123', # ❌ Doesn't work
password='pass',
)

This works:

client = ibis.impala.connect(
host='your-host',
port=443,
user='user123', # ✅ Works
password='pass',
)

What version of ibis are you using?

11.0.0

What backend(s) are you using, if any?

Impala

Relevant log output

username unexpected

Code of Conduct

  • I agree to follow this project's Code of Conduct

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugIncorrect behavior inside of ibis

    Type

    No type

    Projects

    Status

    backlog

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions