You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@impala.apache.org by "Wenzhe Zhou (Code Review)" <ge...@cloudera.org> on 2020/05/25 04:18:27 UTC

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Wenzhe Zhou has uploaded this change for review. ( http://gerrit.cloudera.org:8080/15984


Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................

IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats

The failure was caused by IMPALA-9764, which change the sleep
interval between heartbeats. To fix it, don't allow the sleep
interval beyond 60 seconds.

Testing:
 - Ran following command to verify that the bug was fixed:
     ./bin/impala-py.test tests/query_test/test_acid.py\
       ::TestAcid::test_acid_heartbeats \
       --workload_exploration_strategy=functional-query:exhaustive

Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
---
M fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
1 file changed, 6 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/84/15984/1
-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 1
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Zoltan Borok-Nagy (Code Review)" <ge...@cloudera.org>.
Zoltan Borok-Nagy has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 1:

(2 comments)

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
File fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java:

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java@52
PS1, Line 52:   // But we have to set sleep interval not beyond 60 seconds for carrying through the
            :   // unit test case TestAcid.test_acid_heartbeats (IMPALA-9775).
> It's better to set an upper limit. Otherwise user may set an unreasonable v
Normally we should use the same "hive.txn.timeout" value that HMS uses to abort transactions and locks, so sending heartbeats with timeout/3 intervals should be fine. But I don't feel too strongly about it, I'm OK with setting an upper limit.


http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py
File tests/query_test/test_acid.py:

http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py@191
PS1, Line 191: (sleep(200000)
> For current code, TestAcid.test_acid_heartbeats take 13 minutes. When incre
Yeah, that's why I suggested above to remove the @pytest.mark.execute_serially annotation. This way it can run in parallel with other tests. However, it'd be possible that this test pass if other queries send heartbeats during this test's runtime (currently we don't have such tests besides this one). This might not be a problem since here we only care about Impala's capability for heartbeating.

However, there's a better solution to make this test run faster. The real reason this test takes a lot of time is that it's being run with all the compressions in the test vector. There's absolutely no reason to execute this test with different compressions since we won't even use them at all. So the easiest way to reduce the execution time is to add

     table_format = vector.get_value('table_format')
     if table_format.compression_codec != 'none': pytest.skip()

I think it's still worth to add these lines even if you keep the 1 minute upper limit.



-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 1
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Tue, 26 May 2020 18:30:56 +0000
Gerrit-HasComments: Yes

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Wenzhe Zhou (Code Review)" <ge...@cloudera.org>.
Wenzhe Zhou has uploaded a new patch set (#2). ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................

IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats

The failure was caused by IMPALA-9764, which change the sleep
interval between heartbeats. To fix it, add an upper limit of
the sleep interval as 100 seconds, and increase the execution
time for the query in test case TestAcid::test_acid_heartbeats.
Skip the test for table formats with compression to reduce the
total execution time.

Testing:
 - Ran following command to verify that the bug was fixed:
     ./bin/impala-py.test tests/query_test/test_acid.py\
       ::TestAcid::test_acid_heartbeats \
       --workload_exploration_strategy=functional-query:exhaustive
 - Passed all exhaustive tests.

Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
---
M fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
M tests/query_test/test_acid.py
2 files changed, 11 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/84/15984/2
-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 2: Verified+1


-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Wed, 27 May 2020 03:18:04 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 1:

Build Successful 

https://jenkins.impala.io/job/gerrit-code-review-checks/6134/ : Initial code review checks passed. Use gerrit-verify-dryrun-external or gerrit-verify-dryrun to run full precommit tests.


-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 1
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Mon, 25 May 2020 05:08:51 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 2:

Build Successful 

https://jenkins.impala.io/job/gerrit-code-review-checks/6137/ : Initial code review checks passed. Use gerrit-verify-dryrun-external or gerrit-verify-dryrun to run full precommit tests.


-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Tue, 26 May 2020 21:56:56 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Zoltan Borok-Nagy (Code Review)" <ge...@cloudera.org>.
Zoltan Borok-Nagy has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 2: Code-Review+2

Thanks for applying the changes, LGTM!


-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Tue, 26 May 2020 21:56:47 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has submitted this change and it was merged. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................

IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats

The failure was caused by IMPALA-9764, which change the sleep
interval between heartbeats. To fix it, add an upper limit of
the sleep interval as 100 seconds, and increase the execution
time for the query in test case TestAcid::test_acid_heartbeats.
Skip the test for table formats with compression to reduce the
total execution time.

Testing:
 - Ran following command to verify that the bug was fixed:
     ./bin/impala-py.test tests/query_test/test_acid.py\
       ::TestAcid::test_acid_heartbeats \
       --workload_exploration_strategy=functional-query:exhaustive
 - Passed all exhaustive tests.

Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Reviewed-on: http://gerrit.cloudera.org:8080/15984
Reviewed-by: Zoltan Borok-Nagy <bo...@cloudera.com>
Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
M fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
M tests/query_test/test_acid.py
2 files changed, 11 insertions(+), 5 deletions(-)

Approvals:
  Zoltan Borok-Nagy: Looks good to me, approved
  Impala Public Jenkins: Verified

-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 3
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Wenzhe Zhou (Code Review)" <ge...@cloudera.org>.
Wenzhe Zhou has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 1:

(3 comments)

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
File fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java:

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java@52
PS1, Line 52:   // But we have to set sleep interval not beyond 60 seconds for carrying through the
            :   // unit test case TestAcid.test_acid_heartbeats (IMPALA-9775).
> Normally we should use the same "hive.txn.timeout" value that HMS uses to a
Will change the upper limit to 100000 millisecond.


http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py
File tests/query_test/test_acid.py:

http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py@177
PS1, Line 177: @pytest.mark.execute_serially
> I think this can be removed.
Agree, will remove it.


http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py@191
PS1, Line 191: (sleep(200000)
> Yeah, that's why I suggested above to remove the @pytest.mark.execute_seria
Agree, will increase sleep time to 320000, and MAX_ATTEMPTS to 16. And skip the table formats with compression. With these changes, the execution time for this test case reduce to about 3 minutes.



-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 1
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Tue, 26 May 2020 20:46:32 +0000
Gerrit-HasComments: Yes

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Zoltan Borok-Nagy (Code Review)" <ge...@cloudera.org>.
Zoltan Borok-Nagy has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 1:

(3 comments)

Thanks for working on it!

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
File fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java:

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java@52
PS1, Line 52:   // But we have to set sleep interval not beyond 60 seconds for carrying through the
            :   // unit test case TestAcid.test_acid_heartbeats (IMPALA-9775).
Hive's heartbeat wait time (timeout / 2) is even greater than Impala's (timeout / 3), so I think there's no reason to put an upper limit on it. Probably it'd be better to adjust the test.


http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py
File tests/query_test/test_acid.py:

http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py@177
PS1, Line 177: @pytest.mark.execute_serially
I think this can be removed.


http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py@191
PS1, Line 191: (sleep(200000)
You need to increase this value and MAX_ATTEMPTS. It'd be nice to do it based on the Hive Configuration.



-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 1
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Mon, 25 May 2020 07:42:45 +0000
Gerrit-HasComments: Yes

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Wenzhe Zhou (Code Review)" <ge...@cloudera.org>.
Wenzhe Zhou has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 1:

(2 comments)

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java
File fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java:

http://gerrit.cloudera.org:8080/#/c/15984/1/fe/src/main/java/org/apache/impala/common/TransactionKeepalive.java@52
PS1, Line 52:   // But we have to set sleep interval not beyond 60 seconds for carrying through the
            :   // unit test case TestAcid.test_acid_heartbeats (IMPALA-9775).
> Hive's heartbeat wait time (timeout / 2) is even greater than Impala's (tim
It's better to set an upper limit. Otherwise user may set an unreasonable value.


http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py
File tests/query_test/test_acid.py:

http://gerrit.cloudera.org:8080/#/c/15984/1/tests/query_test/test_acid.py@191
PS1, Line 191: (sleep(200000)
> You need to increase this value and MAX_ATTEMPTS. It'd be nice to do it bas
For current code, TestAcid.test_acid_heartbeats take 13 minutes. When increase sleep time from 200000 to 320000, the test take 20 minutes.



-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 1
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Mon, 25 May 2020 19:47:53 +0000
Gerrit-HasComments: Yes

[Impala-ASF-CR] IMPALA-9775: Fix test failure in TestAcid.test acid heartbeats

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/15984 )

Change subject: IMPALA-9775: Fix test failure in TestAcid.test_acid_heartbeats
......................................................................


Patch Set 2:

Build started: https://jenkins.impala.io/job/gerrit-verify-dryrun/5892/ DRY_RUN=false


-- 
To view, visit http://gerrit.cloudera.org:8080/15984
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7922797d7e3ce94a2c8948211245f4e77fdb08b7
Gerrit-Change-Number: 15984
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Tim Armstrong <ta...@cloudera.com>
Gerrit-Reviewer: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <bo...@cloudera.com>
Gerrit-Comment-Date: Tue, 26 May 2020 21:57:12 +0000
Gerrit-HasComments: No