0

I am looking for Impala Foreign Data Wrapper for Postgres 9.5. I have tried to figure out from the internet and can only have one reference to https://github.com/lapug/impala_fdw But it seems the fdw is yet to be completed as per the readme file.

Can someone guide me to any other Impala FDW available which I can use to connect Postgres to Impala?

Kallol
  • 302
  • 4
  • 16

1 Answers1

0

Since Impala supports JDBC and ODBC, you've got some options.

I'm using odbc_fdw and heimir-sverrisson's jdbc2_fdw successfully with PostgreSQL 9.4.

PostgreSQL 9.5 changed the API. I just got the jdbc2_fdw working to some degree, but had to do additional patches on the path I mentioned. It allows retrieving results from a foreign table and creating a materialized view on it. More testing is needed. Link shared above.

dbh
  • 1,607
  • 13
  • 18