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

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


    from c955276  IMPALA-4271: Introduce the new Kudu storage handler
     new a838aaf  IMPALA-8559 : Support config validation for event processor 
on HMS-3
     new 9ee4a5e  acid: Filter unwanted files based on ACID state.

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:
 fe/pom.xml                                         |   7 +
 .../hadoop/hive/common/ValidWriteIdList.java       |   2 +-
 .../apache/impala/catalog/FileMetadataLoader.java  |  91 ++++++---
 .../java/org/apache/impala/catalog/HdfsTable.java  |   7 +-
 .../main/java/org/apache/impala/catalog/Table.java |  11 +-
 .../impala/catalog/events/ConfigValidator.java     |  71 +++++++
 .../catalog/events/DefaultConfigValidator.java     |  70 +++++++
 .../events/EventProcessorConfigValidator.java      | 213 ---------------------
 .../events/EventPropertyRegexValidator.java        |  83 ++++++++
 .../events/MetastoreEventProcessorConfig.java      |  67 +++++++
 .../catalog/events/MetastoreEventsProcessor.java   |  48 ++++-
 .../impala/catalog/local/DirectMetaProvider.java   |   5 +-
 .../org/apache/impala/common/FileSystemUtil.java   |  56 ++++--
 .../java/org/apache/impala/util/AcidUtils.java     | 167 ++++++++++++++++
 .../impala/analysis/StmtMetadataLoaderTest.java    |  13 +-
 .../impala/catalog/FileMetadataLoaderTest.java     |  11 +-
 .../apache/impala/catalog/HdfsPartitionTest.java   |   2 +-
 .../events/MetastoreEventsProcessorTest.java       | 212 +++++++-------------
 .../java/org/apache/impala/util/AcidUtilsTest.java | 182 ++++++++++++++++++
 fe/src/test/resources/hive-site.xml.py             |  11 +-
 testdata/bin/run-hive-server.sh                    |  34 ++--
 .../queries/QueryTest/acid-compaction.test         |  39 ++++
 .../queries/QueryTest/acid-negative.test           |  22 +++
 .../functional-query/queries/QueryTest/acid.test   |  38 ++++
 tests/common/impala_connection.py                  |  41 ++--
 tests/common/impala_test_suite.py                  | 184 +++++++++++-------
 tests/common/skip.py                               |   5 +
 .../query_test/{test_local_fs.py => test_acid.py}  |  36 ++--
 tests/util/test_file_parser.py                     |   5 +-
 29 files changed, 1182 insertions(+), 551 deletions(-)
 create mode 100644 
fe/src/main/java/org/apache/impala/catalog/events/ConfigValidator.java
 create mode 100644 
fe/src/main/java/org/apache/impala/catalog/events/DefaultConfigValidator.java
 delete mode 100644 
fe/src/main/java/org/apache/impala/catalog/events/EventProcessorConfigValidator.java
 create mode 100644 
fe/src/main/java/org/apache/impala/catalog/events/EventPropertyRegexValidator.java
 create mode 100644 
fe/src/main/java/org/apache/impala/catalog/events/MetastoreEventProcessorConfig.java
 create mode 100644 fe/src/test/java/org/apache/impala/util/AcidUtilsTest.java
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/acid-compaction.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/acid-negative.test
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/acid.test
 copy tests/query_test/{test_local_fs.py => test_acid.py} (50%)

Reply via email to