We are trying to build dashboard reports using Superset and got it installed. We want to build the reports based on Impala tables. When trying to configure the datasource, I used the below sqlalchemy URI
impala://host:port/dbname
I get the below error when testing the connection. masked the hostname for security reason.
we have already installed impyla
pip install impyla
Collecting impyla
Downloading impyla-0.14.0.tar.gz (151kB)
100% |████████████████████████████████| 153kB 4.7MB/s
Requirement already satisfied: six in ./venv/lib/python2.7/site-packages (from impyla)
Collecting bitarray (from impyla)
Downloading bitarray-0.8.1.tar.gz (46kB)
100% |████████████████████████████████| 51kB 5.8MB/s
Requirement already satisfied: thrift in ./venv/lib/python2.7/site-packages (from impyla)
Building wheels for collected packages: impyla, bitarray
Running setup.py bdist_wheel for impyla ... done
Stored in directory: /root/.cache/pip/wheels/96/fa/d8/40e676f3cead7ec45f20ac43eb373edc471348ac5cb485d6f5
Running setup.py bdist_wheel for bitarray ... done
Stored in directory: /root/.cache/pip/wheels/46/63/90/821699390044b2d0c5f2a01f275115e240bd06f0edc6c6a19b
Successfully built impyla bitarray
Installing collected packages: bitarray, impyla
Successfully installed bitarray-0.8.1 impyla-0.14.0
Please let me know if I am missing anything else here to configure the impala to use with Superset