Member since
08-26-2014
7
Posts
3
Kudos Received
0
Solutions
05-01-2018
10:42 AM
The QUERY_TIMEOUT_S also controls the idle query timeout. The default for that can be set as an impalad startup option (--default_query_options='key,value'), or the value can be set via the SET command, a parameter during session creation, or a default attached to an admission control resource pool. Note that resources used to execute the query will be reserved until all the query results are fetched (since Impala is a streaming engine, final results are computed "on the fly" while results are fetched), so it's good practice to fetch the results promptly, and set a timeout to help free resources in case results are not fetched.
... View more
04-23-2018
09:28 AM
1 Kudo
I think what you are looking for is this: https://www.simba.com/products/Impala/doc/JDBC_InstallGuide/content/jdbc/options/sockettimeout.htm
... View more
04-20-2018
09:07 AM
1 Kudo
How are you connecting to Impala? Generally, a connection supports multiple sessions. A session closing wouldn't imply that the connection would be closed given that the connection can have other sessions. Session close will free the state associated with that session and close any operations/requests that were made in that session that are still open.
... View more
07-07-2017
09:03 AM
Impala uses a range get via the S3A connector to download only the column chunks needed.
... View more
01-14-2016
09:28 AM
Hi, It is working as expected. Please see the BETWEEN section on: http://www.cloudera.com/content/www/en-us/documentation/enterprise/latest/topics/impala_operators.html Dan
... View more
01-13-2016
04:29 PM
1 Kudo
What version of impala are you using? Would you be able to share the impalad.INFO log file when the problem occurs? Regarding question #2: The web UI is the only way to access the query archive from the impalad itself. You can increase the number of queries archived using the --query_log_size, or keep track of all queries by setting the option to -1 (note however, that the archive is kept in memory and so if it's set to -1, the memory usage will continue to grow).
... View more
08-06-2015
10:48 AM
This should not be a problem for Impala because Impala caches metadata and the objects being queried are typically large.
... View more