Running Impala Cluster from Portable Binary Files

I value several great data tools. One of them, of course, is Impala. I would like to start an Impala cluster by manually starting processes on the cluster nodes. As I am doing now for Spark, H2O, Presto, and Dask, I would like to capture the binaries, copy the nodes, edit the configs, and start the services on the nodes from the shell. This works very well, it's easy to upgrade, and I can easily switch to large / different clusters when needed. Unfortunately, I cannot find the resources properly to run the necessary services (Catalog Server, StateStore and daemons) from the shell.
I assume this is an obvious task, but just cannot find a suitable example, so I ask a question, how can I start an Impala cluster from a shell that invokes Impala binaries?

+8
bigdata impala cloudera-cdh
source share
1 answer

.... I would like to start an Impala cluster by manually starting processes on the cluster nodes ..... how can I start an Impala cluster from a shell that invokes Impala binaries?

I think this is what you are looking for: http://www.cloudera.com/documentation/enterprise/5-5-x/topics/impala_processes.html#starting_via_cmdline

Update 1:

You can select only the information you need from this link: http://doc.mapr.com/plugins/servlet/mobile#content/view/28869628

It has steps to create impala from github, to run on mapr.

Update 2:

To create Impala, check out these links: https://github.com/cloudera/Impala/wiki/Build-prerequisites https://github.com/cloudera/Impala/wiki/How-to-build-Impala https: // cwiki.apache.org/confluence/display/IMPALA/Building+Impala

Update 3:

For expert portability suggestions, please contact:

Impala Developers: dev@impala.incubator.apache.org

Taken from http://impala.apache.org/community.html

Time, you might consider creating binaries for an easily accessible Linux production environment.

Some more useful links for your situation:

https://cwiki.apache.org/confluence/display/IMPALA/Tips+for+Faster+Impala+Builds https://cwiki.apache.org/confluence/display/IMPALA/Building+native-toolchain+from+scratch + and + using + with + Impala

+2
source share

All Articles