This is an automated email from the ASF dual-hosted git repository.

tmarshall pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git.


    from a7b8c1e  IMPALA-8049: [DOCS] Ranger authz support in impala
     new 9e13fd7  IMPALA-8538 (part 1) Copied THttp(Server|Transport) from 
thrift-0.9.3
     new b1cb879  IMPALA-1653: Don't close hiveserver2 session when connection 
is closed
     new 487547e  IMPALA-6042: Allow Impala shell to use a global impalarc 
config
     new cce709a  IMPALA-8538: HS2 + HTTP(S) + BASIC/LDAP based thrift server 
endpoint

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/rpc/auth-provider.h                         |  54 ++++-
 be/src/rpc/authentication-test.cc                  |  30 +--
 be/src/rpc/authentication.cc                       | 143 ++++++++---
 be/src/rpc/thrift-server.cc                        |  29 ++-
 be/src/rpc/thrift-server.h                         |  46 +++-
 be/src/service/impala-beeswax-server.cc            |  36 +--
 be/src/service/impala-hs2-server.cc                |  29 ++-
 be/src/service/impala-server.cc                    | 175 +++++++++++---
 be/src/service/impala-server.h                     |  67 ++++-
 be/src/service/impalad-main.cc                     |   5 +-
 be/src/testutil/in-process-servers.cc              |  23 +-
 be/src/testutil/in-process-servers.h               |   4 +-
 be/src/transport/CMakeLists.txt                    |   4 +-
 be/src/transport/THttpServer.cpp                   | 199 +++++++++++++++
 be/src/transport/THttpServer.h                     |  95 ++++++++
 be/src/transport/THttpTransport.cpp                | 269 +++++++++++++++++++++
 be/src/transport/THttpTransport.h                  | 109 +++++++++
 bin/rat_exclude_files.txt                          |   1 +
 bin/start-impala-cluster.py                        |   5 +-
 common/thrift/generate_error_codes.py              |   6 +
 common/thrift/metrics.json                         |  40 +++
 .../apache/impala/customcluster/LdapHS2Test.java   | 159 ++++++++++++
 .../apache/impala/customcluster/LdapJdbcTest.java  |  28 ++-
 .../java/org/apache/impala/service/JdbcTest.java   |  13 +-
 .../org/apache/impala/service/JdbcTestBase.java    |  34 ++-
 .../apache/impala/testutil/ImpalaJdbcClient.java   |  41 +++-
 fe/src/test/resources/users.ldif                   |  12 +-
 shell/impala_shell.py                              |  66 +++--
 shell/impala_shell_config_defaults.py              |   5 +-
 shell/option_parser.py                             |   6 +-
 tests/common/impala_cluster.py                     |   1 +
 tests/common/impala_connection.py                  |   6 +
 tests/custom_cluster/test_hs2.py                   | 103 ++++++++
 tests/hs2/test_hs2.py                              |  57 +++--
 tests/shell/good_impalarc2                         |   7 +
 tests/shell/impalarc_with_query_options            |   3 +
 tests/shell/test_shell_commandline.py              |  44 +++-
 tests/shell/test_shell_interactive.py              |   2 +
 tests/shell/util.py                                |  10 +-
 39 files changed, 1710 insertions(+), 256 deletions(-)
 create mode 100644 be/src/transport/THttpServer.cpp
 create mode 100644 be/src/transport/THttpServer.h
 create mode 100644 be/src/transport/THttpTransport.cpp
 create mode 100644 be/src/transport/THttpTransport.h
 create mode 100644 
fe/src/test/java/org/apache/impala/customcluster/LdapHS2Test.java
 create mode 100644 tests/custom_cluster/test_hs2.py
 create mode 100644 tests/shell/good_impalarc2

Reply via email to