I would like to use the Python library ibis (ibis-framework
) to run queries against an Impala backend. When I use pyodbc
to connect to Impala, I use the DSN:
con_odbc = pyodbc.connect("DSN=my_dsn_name", autocommit=True)
Unfortunately, I have not managed to use ODBC and the DSN to connect using ibis
.
Is this possible, and if yes, how?