How to connect to Impala using ODBC / DSN?
See original GitHub issueI would like to use ibis
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?
Issue Analytics
- State:
- Created a year ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Cloudera-ODBC-Driver-for-Impala-Install-Guide.pdf
To access authentication options, open the ODBC Data Source Administrator where you created the DSN, then select the DSN, and then click Configure....
Read more >HOW TO: Create a DSN for Cloudera odbc driver for impala?
1) For Solution, enter CR with a Workaround if a direct Solution is not available. 2) For HOW TO, enter the procedure in...
Read more >How to Connect to Cloudera Impala - MicroStrategy
Connectivity via DSN ; Create a new database instance. Select Impala 2.x in the Database connection type drop-down. ; Click New next to...
Read more >Impala connectivity using the Cloudera ODBC driver
Procedure · Enable Impala Services on the Hadoop server. · Configure an Impala data source name (DSN). For Windows instructions, see Creating an...
Read more >ibis-framework: How to connect to Impala using ODBC / DSN?
When I use pyodbc to connect to Impala, I use the DSN: con_odbc = pyodbc.connect("DSN=my_dsn_name", autocommit=True).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@cpcloud, thanks for the quick response!
May I ask where you got the information that Impala is no longer developed? The last release was in June, their Jira seems to be quite active and their homepage does not state anything like this…
@saulpw, yes, this answers my question. I won’t use Ibis for now since I would not really benefit from the consistent API across different backends. And Impala is the most important one for me right now.
Thanks for the snippet, anyway!