This is an automated email from the ASF dual-hosted git repository.
stigahuang pushed a change to branch branch-3.4.2
in repository https://gitbox.apache.org/repos/asf/impala.git
from 2963b29a3 IMPALA-12565: Fix crash triggered by calling pmod() UDF
new 54faec052 IMPALA-10057: Fix log spew by using jars in the classpath
new 8e9c5a5d1 IMPALA-10262: RPM/DEB Packaging Support
The 2 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:
CMakeLists.txt | 105 ++++++++++
be/src/service/CMakeLists.txt | 4 +
bin/bootstrap_system.sh | 2 +-
bin/impala-config.sh | 13 ++
bin/jenkins/build-all-flag-combinations.sh | 2 +
bin/rat_exclude_files.txt | 3 +
bin/save-version.sh | 2 +-
bin/set-classpath.sh | 8 +-
bin/validate-java-pom-versions.sh | 68 +++++++
buildall.sh | 12 ++
common/yarn-extras/pom.xml | 4 +-
docker/install_os_packages.sh | 212 +++++++++++++++++++++
ext-data-source/api/pom.xml | 4 +-
ext-data-source/pom.xml | 4 +-
ext-data-source/sample/pom.xml | 4 +-
ext-data-source/test/pom.xml | 6 +-
fe/pom.xml | 4 +-
impala-parent/CMakeLists.txt | 4 +
impala-parent/pom.xml | 6 +-
package/bin/impala-env.sh | 85 +++++++++
.../bin/start-catalogd.sh | 30 +--
package/bin/start-impalad.sh | 49 +++++
.../bin/start-statestored.sh | 29 +--
.../bin/stop-catalogd.sh | 6 +-
.../bin/stop-impalad.sh | 6 +-
.../bin/stop-statestored.sh | 6 +-
package/conf/catalogd_flags | 13 ++
package/conf/core-site.xml | 20 ++
.../conf/fair-scheduler.xml | 4 +-
package/conf/hdfs-site.xml | 40 ++++
package/conf/hive-site.xml | 20 ++
package/conf/impalad_flags | 16 ++
.../conf/llama-site.xml | 1 +
package/conf/statestore_flags | 7 +
query-event-hook-api/pom.xml | 4 +-
shaded-deps/pom.xml | 2 +-
testdata/TableFlattener/pom.xml | 4 +-
testdata/pom.xml | 4 +-
tests/test-hive-udfs/pom.xml | 2 +-
39 files changed, 752 insertions(+), 63 deletions(-)
create mode 100755 bin/validate-java-pom-versions.sh
create mode 100755 docker/install_os_packages.sh
create mode 100644 package/bin/impala-env.sh
copy tests/run-process-failure-tests.sh => package/bin/start-catalogd.sh (52%)
create mode 100755 package/bin/start-impalad.sh
copy tests/run-process-failure-tests.sh => package/bin/start-statestored.sh
(55%)
copy testdata/bin/kill-mini-dfs.sh => package/bin/stop-catalogd.sh (87%)
copy testdata/bin/kill-mini-dfs.sh => package/bin/stop-impalad.sh (87%)
copy testdata/bin/kill-mini-dfs.sh => package/bin/stop-statestored.sh (87%)
create mode 100644 package/conf/catalogd_flags
create mode 100644 package/conf/core-site.xml
copy fe/src/test/resources/fair-scheduler-empty.xml =>
package/conf/fair-scheduler.xml (55%)
create mode 100644 package/conf/hdfs-site.xml
create mode 100644 package/conf/hive-site.xml
create mode 100644 package/conf/impalad_flags
copy fe/src/test/resources/llama-site-empty.xml => package/conf/llama-site.xml
(98%)
create mode 100644 package/conf/statestore_flags