Zoltán Borók-Nagy created HIVE-23102:
----------------------------------------
Summary: waitForCompactionToFinish can potentially wait for too
long
Key: HIVE-23102
URL: https://issues.apache.org/jira/browse/HIVE-23102
Project: Hive
Issue Type: Bug
Reporter: Zoltán Borók-Nagy
AlterTableCompactOperation.waitForCompactionToFinish() has the following code
fragment:
{noformat}
//double wait time until 5min
waitTimeMs = waitTimeMs*2;
waitTimeMs = Math.max(waitTimeMs, waitTimeOut);
{noformat}
Based on the comment ("double wait time until 5min") I think it should use
Math.min() instead of Math.max().
It also affects the runtime of Impala tests that use Hive compaction, because
they hang for at least 5 mins each time we compact a table.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)