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 99e1a39  Bump CDP_BUILD_NUMBER to 1056671
     new f5e89d6  IMPALA-8477: [DOCS] SHOW GRANT GROUP for Ranger authorization
     new 2ece4c9  IMPALA-8341: Data cache for remote reads
     new 84addd2  IMPALA-8485: Authorization policy file clean up
     new 3fb3657  IMPALA-5351: Support storing column comment of kudu table

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/exec/hdfs-scan-node-base.cc                 |  17 +
 be/src/exec/hdfs-scan-node-base.h                  |   7 +
 be/src/runtime/io/CMakeLists.txt                   |   2 +
 be/src/runtime/io/data-cache-test.cc               | 489 ++++++++++++++
 be/src/runtime/io/data-cache.cc                    | 707 +++++++++++++++++++++
 be/src/runtime/io/data-cache.h                     | 354 +++++++++++
 be/src/runtime/io/disk-io-mgr.cc                   |  13 +
 be/src/runtime/io/disk-io-mgr.h                    |  16 +
 be/src/runtime/io/hdfs-file-reader.cc              |  86 ++-
 be/src/runtime/io/hdfs-file-reader.h               |  38 +-
 be/src/runtime/io/request-context.h                |  27 +
 be/src/util/filesystem-util-test.cc                |  36 ++
 be/src/util/filesystem-util.cc                     | 133 +++-
 be/src/util/filesystem-util.h                      |  37 +-
 be/src/util/impalad-metrics.cc                     |  22 +-
 be/src/util/impalad-metrics.h                      |  18 +-
 bin/create-test-configuration.sh                   |   1 -
 bin/start-impala-cluster.py                        |  19 +-
 common/thrift/metrics.json                         |  40 ++
 docs/topics/impala_show.xml                        |  76 +--
 fe/.gitignore                                      |   3 -
 .../impala/analysis/AlterTableAlterColStmt.java    |   4 -
 .../java/org/apache/impala/catalog/KuduColumn.java |   7 +-
 .../apache/impala/service/CatalogOpExecutor.java   |  22 +-
 .../impala/service/KuduCatalogOpExecutor.java      |  12 +-
 .../org/apache/impala/analysis/AnalyzeDDLTest.java |  15 +-
 .../queries/QueryTest/data-cache.test              |  49 ++
 .../queries/QueryTest/kudu_describe.test           |   2 +-
 tests/authorization/test_authorization.py          |   6 +-
 tests/common/custom_cluster_test_suite.py          |   4 +-
 tests/common/impala_test_suite.py                  |  24 +
 tests/custom_cluster/test_data_cache.py            |  43 ++
 tests/custom_cluster/test_krpc_metrics.py          |  24 -
 tests/metadata/test_ddl.py                         |  42 ++
 tests/metadata/test_ddl_base.py                    |   2 +-
 tests/query_test/test_kudu.py                      |  15 +-
 36 files changed, 2287 insertions(+), 125 deletions(-)
 create mode 100644 be/src/runtime/io/data-cache-test.cc
 create mode 100644 be/src/runtime/io/data-cache.cc
 create mode 100644 be/src/runtime/io/data-cache.h
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/data-cache.test
 create mode 100644 tests/custom_cluster/test_data_cache.py

Reply via email to