This is an automated email from the ASF dual-hosted git repository.
joemcdonnell pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from 6b571eb7e IMPALA-12184: Java UDF increment on an empty string is
inconsistent
new a82830896 IMPALA-12150: Use protocol version to isolate cluster
components
new bad064dbe IMPALA-12224: Improve error handling for shell interactive
tests
new 234d641d7 IMPALA-11961/IMPALA-12207: Add Redhat 9 / Ubuntu 22 support
new 07d5a93de IMPALA-12220: pip install ext-py dependencies in the shell
tarball
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/CMakeLists.txt | 5 +-
be/src/catalog/catalog-server.cc | 72 ++-
be/src/catalog/catalog-server.h | 16 +-
be/src/common/global-flags.cc | 9 +
be/src/exec/catalog-op-executor.cc | 35 +-
be/src/rpc/thrift-server-test.cc | 3 +
be/src/runtime/exec-env.cc | 79 ++-
be/src/runtime/exec-env.h | 35 ++
be/src/runtime/test-env.cc | 5 +
be/src/scheduling/admissiond-env.cc | 3 +-
be/src/service/client-request-state.cc | 14 +-
be/src/service/impala-server.cc | 10 +-
be/src/service/impala-server.h | 4 +
.../statestore/statestore-service-client-wrapper.h | 8 +
be/src/statestore/statestore-subscriber-catalog.h | 61 +++
.../statestore-subscriber-client-wrapper.h | 8 +
be/src/statestore/statestore-subscriber.cc | 527 ++++++++++++++++-----
be/src/statestore/statestore-subscriber.h | 418 ++++++++++------
be/src/statestore/statestore-test.cc | 9 +-
be/src/statestore/statestore.cc | 240 +++++++++-
be/src/statestore/statestore.h | 118 ++++-
bin/bootstrap_build.sh | 4 +-
bin/bootstrap_system.sh | 126 +++--
bin/bootstrap_toolchain.py | 6 +-
bin/cmake_aux/create_py3_virtualenv.sh | 53 +++
bin/impala-config.sh | 13 +-
common/thrift/CatalogService.thrift | 31 +-
common/thrift/StatestoreService.thrift | 113 ++++-
common/thrift/generate_error_codes.py | 10 +-
common/thrift/metrics.json | 68 ++-
docker/CMakeLists.txt | 8 +-
docker/entrypoint.sh | 5 +-
.../impala/catalog/ImpaladTableUsageTracker.java | 4 +-
.../impala/customcluster/LdapImpalaShellTest.java | 2 +-
.../impala_py_lib/jenkins/junitxml_prune_notrun.py | 2 +-
shell/CMakeLists.txt | 54 ++-
shell/impala-shell | 29 +-
shell/impala_shell.py | 26 +-
shell/make_shell_tarball.sh | 48 +-
.../catalog_service/test_catalog_service_client.py | 8 +
tests/custom_cluster/test_client_ssl.py | 13 +-
tests/custom_cluster/test_custom_statestore.py | 205 +++++++-
tests/custom_cluster/test_services_rpc_errors.py | 11 +
tests/shell/util.py | 41 +-
tests/statestore/test_statestore.py | 5 +-
45 files changed, 2082 insertions(+), 482 deletions(-)
create mode 100644 be/src/statestore/statestore-subscriber-catalog.h
create mode 100755 bin/cmake_aux/create_py3_virtualenv.sh