This is an automated email from the ASF dual-hosted git repository. prozsa pushed a change to branch branch-4.5.0 in repository https://gitbox.apache.org/repos/asf/impala.git
omit d76b45196 Release 4.5.0 new e4b5f3600 IMPALA-13747: Use fresh HS2 client for unique_database fixture new fb4c504d9 IMPALA-13201: Remove Unused Parameter from Test retry Function new d28434b6b IMPALA-13201: System Table Queries Execute When Admission Queues are Full new 71b7d2af3 Release 4.5.0 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (d76b45196) \ N -- N -- N refs/heads/branch-4.5.0 (71b7d2af3) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: be/src/scheduling/admission-controller.cc | 12 +- be/src/scheduling/cluster-membership-mgr-test.cc | 52 ++++- be/src/scheduling/cluster-membership-mgr.cc | 88 +++++--- be/src/scheduling/cluster-membership-mgr.h | 8 +- be/src/scheduling/cluster-membership-test-util.cc | 13 ++ be/src/scheduling/cluster-membership-test-util.h | 5 + be/src/scheduling/executor-group-test.cc | 32 ++- be/src/scheduling/executor-group.cc | 13 ++ be/src/scheduling/executor-group.h | 6 + be/src/service/client-request-state.cc | 2 +- be/src/util/webserver.cc | 4 +- bin/save-version.sh | 2 +- bin/start-impala-cluster.py | 4 +- common/thrift/ImpalaInternalService.thrift | 6 + docs/topics/impala_admission_config.xml | 43 +++- .../java/org/apache/impala/service/Frontend.java | 29 ++- .../org/apache/impala/util/RequestPoolService.java | 2 + .../apache/impala/util/TestRequestPoolService.java | 12 +- .../test/resources/fair-scheduler-onlycoords.xml | 25 +++ fe/src/test/resources/fair-scheduler-test.xml | 2 + fe/src/test/resources/llama-site-onlycoords.xml | 66 ++++++ .../scheduler/fair/AllocationConfiguration.java | 10 + .../fair/AllocationFileLoaderService.java | 58 ++--- tests/common/custom_cluster_test_suite.py | 57 +++-- tests/common/impala_cluster.py | 8 + tests/common/impala_test_suite.py | 35 ++- tests/conftest.py | 42 ++-- tests/custom_cluster/test_admission_controller.py | 234 +++++++++++++++++++++ tests/custom_cluster/test_query_live.py | 2 +- tests/custom_cluster/test_query_log.py | 8 +- tests/metadata/test_ddl.py | 72 ++++--- tests/query_test/test_udfs.py | 41 ++-- tests/util/retry.py | 12 +- 33 files changed, 817 insertions(+), 188 deletions(-) create mode 100644 fe/src/test/resources/fair-scheduler-onlycoords.xml create mode 100644 fe/src/test/resources/llama-site-onlycoords.xml