Reputation: 1824
As per impala documentation, you start impala shell using this command
$ impala-shell -i localhost --quiet
http://www.cloudera.com/documentation/enterprise/latest/topics/impala_tutorial.html#tut_beginner
Any idea what -i
does? and why we needed?
Upvotes: 0
Views: 394
Reputation: 1824
Ok,
I think I found the answer.
$ impala-shell
This is going to go to the default impala host, port 21000
[localhost:21000] >
-i
such as impala-shell -i host.yourdomain.com
[host.yourdomain.com:21000] >
such as impala-shell -i host.yourdomain.com:26000
[host.yourdomain.com:26000] >
Upvotes: 0