Reputation: 1586
I have been looking around on the current available documentation as well as in the following UIs:
For a place where I can see the current open sessions.
Any idea where I could find it? or an alternative method for monitoring the alive Impala connections?
Upvotes: 1
Views: 2111
Reputation: 285
https://impala.apache.org/docs/build/html/topics/impala_webui.html
Sessions Page By default, the sessions page of the debug web UI is at http://impala-server-hostname:25000/sessions (non-secure cluster) or https://impala-server-hostname:25000/sessions (secure cluster).
This page displays information about the sessions currently connected to this impalad instance. For example, sessions could include connections from the impala-shell command, JDBC or ODBC applications, or the Impala Query UI in the Hue web interface.
Upvotes: 0
Reputation: 14068
This is a significant weakness (at least of the version of CM we're using). The only solution I have found so far is:
First:
This will show you all queries that are executing, and that have been executed within the selected time window. This detail is high-level, and we have found it often shows queries as "Executing" that long-since failed (this may have been fixed in a more recent version of CDH than the 5.2.6 we run).
In any case, this list will identify the nodes running impalad
in the Coordinator field. To get much greater detail, access node-by-node. If the host running a query you were interested in was called node12
, use
http://node12:25000/queries
and look for "In flight" queries at the top.
Upvotes: 2