How to Install Impala on Windows
I Wanted to Install Impala on Windows. I Found on Impala Offical Document That It Is Only Supported on Linux Like Operating System. Is There Any Way to Install...
I wanted to install impala on windows. I found on impala offical document that it is only supported on linux like operating system. Is there any way to install impala on windows like build and then install.
2 Answers
You can use docker toolbox to install impala on windows.
docker run -t -i lancope/impala-shell
Reference:
Not easily.
Unlike most components in the Hadoop ecosystem that are written in Java, Impala is written in C++ and has an extensive number of libraries and tools that would have to be ported in order to just satisfy the prerequisites for building Impala on Windows. Then there are the OS differences between Linux and Windows so you'd also have to change the build scripts to work with Windows-style paths and naming conventions plus you'd have to iron out any OS incompatibilities.
All of this, by the way, is to simply build Impala on Windows. Getting Impala to work on Windows might involve even more effort.