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 017175558 IMPALA-12123: Fix crash triggered by incomplete HDFS cache
reads
new e54c63638 IMPALA-12035: Impala accepts very big numbers but fails to
store them correctly
new 1d0b111bc IMPALA-12091: Control scan parallelism by its processing cost
new 63d13a35f IMPALA-11880: Adds support for authenticating to Impala
using JWTs.
The 3 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/exec/blocking-join-node.h | 2 +-
be/src/exec/data-sink.h | 4 +-
be/src/exec/exec-node.cc | 12 +
be/src/exec/exec-node.h | 16 +-
be/src/exec/hdfs-scanner.h | 3 +-
be/src/exec/scan-node.cc | 61 +-
be/src/exec/scan-node.h | 12 +-
be/src/exprs/cast-functions-ir.cc | 154 ++
be/src/exprs/cast-functions.h | 7 +
be/src/exprs/expr-test.cc | 168 ++-
be/src/exprs/literal.cc | 18 +-
be/src/scheduling/scheduler.cc | 115 +-
be/src/scheduling/scheduler.h | 9 +-
be/src/service/query-options-test.cc | 7 +-
be/src/service/query-options.cc | 22 +-
be/src/service/query-options.h | 4 +-
bin/rat_exclude_files.txt | 3 +
common/thrift/ImpalaService.thrift | 10 +-
common/thrift/Planner.thrift | 6 +-
common/thrift/Query.thrift | 6 +
.../java/org/apache/impala/analysis/Analyzer.java | 35 +
.../java/org/apache/impala/analysis/CastExpr.java | 21 +-
.../org/apache/impala/planner/AggregationNode.java | 3 +-
.../apache/impala/planner/DistributedPlanner.java | 10 +-
.../org/apache/impala/planner/EmptySetNode.java | 5 -
.../org/apache/impala/planner/HashJoinNode.java | 13 +-
.../org/apache/impala/planner/HdfsScanNode.java | 7 +-
.../org/apache/impala/planner/HdfsTableSink.java | 3 +-
.../org/apache/impala/planner/KuduScanNode.java | 2 +-
.../org/apache/impala/planner/PlanFragment.java | 218 +--
.../java/org/apache/impala/planner/PlanNode.java | 19 +-
.../java/org/apache/impala/planner/Planner.java | 64 +-
.../org/apache/impala/planner/ProcessingCost.java | 27 +-
.../java/org/apache/impala/planner/ScanNode.java | 61 +-
.../java/org/apache/impala/planner/UnionNode.java | 7 -
.../java/org/apache/impala/service/Frontend.java | 69 +-
.../org/apache/impala/planner/PlannerTest.java | 2 +-
fe/src/test/resources/llama-site-3-groups.xml | 4 +-
shell/ImpalaHttpClient.py | 18 +
shell/impala_client.py | 6 +-
shell/impala_shell.py | 101 +-
shell/option_parser.py | 6 +
testdata/bin/jwt-generate.sh | 49 +
testdata/bin/jwt-util.py | 146 ++
.../java_home.sh => bin/jwt_requirements.txt} | 3 +-
testdata/jwt/jwks_signing.json | 12 +
testdata/jwt/jwt_expired | 1 +
testdata/jwt/jwt_signed | 1 +
testdata/jwt/jwt_signed_untrusted | 1 +
.../queries/PlannerTest/tpcds-processing-cost.test | 1535 ++++++++++----------
tests/custom_cluster/test_executor_groups.py | 233 +--
tests/custom_cluster/test_shell_commandline.py | 7 +-
tests/custom_cluster/test_shell_jwt_auth.py | 224 +++
tests/query_test/test_insert.py | 29 +-
tests/query_test/test_tpcds_queries.py | 7 +-
tests/shell/test_shell_commandline_jwt_auth.py | 104 ++
56 files changed, 2432 insertions(+), 1260 deletions(-)
create mode 100755 testdata/bin/jwt-generate.sh
create mode 100644 testdata/bin/jwt-util.py
copy testdata/{cluster/ranger/java_home.sh => bin/jwt_requirements.txt} (96%)
mode change 100755 => 100644
create mode 100644 testdata/jwt/jwks_signing.json
create mode 100644 testdata/jwt/jwt_expired
create mode 100644 testdata/jwt/jwt_signed
create mode 100644 testdata/jwt/jwt_signed_untrusted
create mode 100644 tests/custom_cluster/test_shell_jwt_auth.py
create mode 100644 tests/shell/test_shell_commandline_jwt_auth.py