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

morningman pushed a change to branch branch-2.1-lakehouse
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard ac05972a74a [opt](udf-cache) cache more udf classes #40404
     new 2c38dee218c [opt](udf-cache) cache more udf classes #40404
     new 00e395d43dd [tmp] downgrade guavatest to 32.1.2 to avoid compile 
failure
     new ec05f68cb1b Revert "[branch-2.1](ORC) fix predicate filter failed when 
use hive 1.x version (#45809)"
     new da212850cc9 Revert "branch-2.1: [Fix](ORC) Not push down fixed char 
type in orc reader #45484 (#45525)"
     new e1f869d9cd7 Revert "Revert #43255 & #44615 (#45096)"
     new c8f733dbe83 [Fix](ORC) Not push down fixed char type in orc reader  
(#45484)
     new a98f28916fc [improvement](mem)Dereference for executor (#40800)
     new f04ba345104 Revert "[enchement](utf8)import enable_text_validate_utf8 
session var (#45537) (#46070)"
     new d888c9390ca [feature](hive)support hive catalog read json table.  
(#43469)
     new a8d9c9fef19 [enchement](utf8)import enable_text_validate_utf8 session 
var (#45537)
     new 2e5fe2e2e4b [enhencement](hive-catalog) add 
`hive.recursive_directories_table` and `hive.ignore_absent_partitions` configs 
for HiveCatalog (#39494)
     new 4a721e445b9 [Opt](multi-catalog)Improve performance by introducing 
cache of list directory files when getting split for each query. (#43913)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ac05972a74a)
            \
             N -- N -- N   refs/heads/branch-2.1-lakehouse (4a721e445b9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 12 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/runtime/exec_env.h                          |   1 +
 .../vec/data_types/serde/data_type_array_serde.h   |   2 +
 be/src/vec/data_types/serde/data_type_map_serde.h  |   4 +
 .../data_types/serde/data_type_nullable_serde.h    |   2 +
 be/src/vec/data_types/serde/data_type_serde.h      |  12 +-
 .../vec/data_types/serde/data_type_struct_serde.h  |   2 +
 be/src/vec/exec/format/json/new_json_reader.cpp    | 556 ++++++++++++----
 be/src/vec/exec/format/json/new_json_reader.h      |  32 +-
 be/src/vec/exec/format/orc/vorc_reader.cpp         | 497 ++++++++++-----
 be/src/vec/exec/format/orc/vorc_reader.h           |  45 +-
 be/src/vec/exec/scan/vfile_scanner.cpp             |   4 +-
 be/test/exec/test_data/orc_scanner/orders.orc      | Bin 0 -> 1293 bytes
 be/test/testutil/desc_tbl_builder.cpp              |  29 +-
 be/test/testutil/desc_tbl_builder.h                |  17 +-
 be/test/vec/exec/orc_reader_test.cpp               | 158 +++++
 .../scripts/create_preinstalled_scripts/run69.hql  |  35 +
 .../scripts/create_preinstalled_scripts/run70.hql  |  73 +++
 .../scripts/create_preinstalled_scripts/run71.hql  |  13 +
 .../hive_config_test/create_table.hql              |  31 +
 .../data/multi_catalog/hive_config_test/run.sh     |  14 +
 .../json/json_all_complex_types/dt=dt1/000000_0    |   3 +
 .../json/json_all_complex_types/dt=dt2/000000_0    |   1 +
 .../json/json_all_complex_types/dt=dt3/000000_0    |   2 +
 .../preinstalled_data/json/json_load_data_table/1  |  13 +
 .../json/json_nested_complex_table/1               |   2 +
 .../json/json_nested_complex_table/2               |   1 +
 .../json/json_nested_complex_table/modify_2        |   2 +
 .../doris/common/classloader/ScannerLoader.java    |   2 +-
 .../doris/common/jni/utils/UdfClassCache.java      |  17 +
 .../main/java/org/apache/doris/common/Config.java  |   4 +
 fe/fe-core/pom.xml                                 |   5 +
 .../java/org/apache/doris/common/EmptyCache.java   | 247 +++++++
 .../org/apache/doris/common/EvictableCache.java    | 466 ++++++++++++++
 .../apache/doris/common/EvictableCacheBuilder.java | 286 +++++++++
 .../doris/datasource/hive/HMSExternalTable.java    |   4 +-
 .../doris/datasource/hive/HiveMetaStoreCache.java  |  68 +-
 .../datasource/hive/HiveMetaStoreClientHelper.java |   3 +
 .../doris/datasource/hive/source/HiveScanNode.java |  62 +-
 .../doris/datasource/hudi/source/HudiScanNode.java |   5 +-
 .../fs/{RemoteFiles.java => DirectoryLister.java}  |  20 +-
 ...teFiles.java => FileSystemDirectoryLister.java} |  22 +-
 .../org/apache/doris/fs/FileSystemIOException.java |  65 ++
 ...oteFiles.java => RemoteFileRemoteIterator.java} |  24 +-
 .../PlClass.java => fs/RemoteIterator.java}        |  10 +-
 ...{RemoteFiles.java => SimpleRemoteIterator.java} |  24 +-
 .../TransactionDirectoryListingCacheKey.java}      |  59 +-
 .../fs/TransactionScopeCachingDirectoryLister.java | 216 +++++++
 ...nsactionScopeCachingDirectoryListerFactory.java |  59 ++
 .../glue/translator/PhysicalPlanTranslator.java    |  19 +-
 .../apache/doris/planner/SingleNodePlanner.java    |  14 +-
 .../apache/doris/qe/AutoCloseConnectContext.java   |   1 +
 .../org/apache/doris/qe/MysqlConnectProcessor.java |   2 +
 .../apache/doris/common/TestEvictableCache.java    | 708 +++++++++++++++++++++
 ...TransactionScopeCachingDirectoryListerTest.java | 174 +++++
 fe/pom.xml                                         |   2 +-
 .../external_table_p0/hive/hive_config_test.out    | Bin 0 -> 399 bytes
 .../hive/hive_json_basic_test.out                  | Bin 0 -> 31779 bytes
 .../data/external_table_p0/hive/test_hive_orc.out  | Bin 90753 -> 91283 bytes
 .../external_table_p0/hive/hive_config_test.groovy | 124 ++++
 ...ker_scan.groovy => hive_json_basic_test.groovy} |  46 +-
 .../external_table_p0/hive/test_hive_orc.groovy    |  12 +
 .../hive/test_hive_orc_predicate.groovy            |   2 +-
 62 files changed, 3840 insertions(+), 483 deletions(-)
 create mode 100644 be/test/exec/test_data/orc_scanner/orders.orc
 create mode 100644 be/test/vec/exec/orc_reader_test.cpp
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/create_preinstalled_scripts/run69.hql
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/create_preinstalled_scripts/run70.hql
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/create_preinstalled_scripts/run71.hql
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/data/multi_catalog/hive_config_test/create_table.hql
 create mode 100755 
docker/thirdparties/docker-compose/hive/scripts/data/multi_catalog/hive_config_test/run.sh
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_all_complex_types/dt=dt1/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_all_complex_types/dt=dt2/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_all_complex_types/dt=dt3/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_load_data_table/1
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_nested_complex_table/1
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_nested_complex_table/2
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/json/json_nested_complex_table/modify_2
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/common/EmptyCache.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/common/EvictableCache.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/common/EvictableCacheBuilder.java
 copy fe/fe-core/src/main/java/org/apache/doris/fs/{RemoteFiles.java => 
DirectoryLister.java} (68%)
 copy fe/fe-core/src/main/java/org/apache/doris/fs/{RemoteFiles.java => 
FileSystemDirectoryLister.java} (59%)
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/fs/FileSystemIOException.java
 copy fe/fe-core/src/main/java/org/apache/doris/fs/{RemoteFiles.java => 
RemoteFileRemoteIterator.java} (53%)
 copy fe/fe-core/src/main/java/org/apache/doris/{plsql/objects/PlClass.java => 
fs/RemoteIterator.java} (75%)
 copy fe/fe-core/src/main/java/org/apache/doris/fs/{RemoteFiles.java => 
SimpleRemoteIterator.java} (55%)
 copy fe/fe-core/src/main/java/org/apache/doris/{nereids/types/VariantType.java 
=> fs/TransactionDirectoryListingCacheKey.java} (52%)
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/fs/TransactionScopeCachingDirectoryLister.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/fs/TransactionScopeCachingDirectoryListerFactory.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/common/TestEvictableCache.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/fs/TransactionScopeCachingDirectoryListerTest.java
 create mode 100644 
regression-test/data/external_table_p0/hive/hive_config_test.out
 create mode 100644 
regression-test/data/external_table_p0/hive/hive_json_basic_test.out
 create mode 100644 
regression-test/suites/external_table_p0/hive/hive_config_test.groovy
 copy 
regression-test/suites/external_table_p0/hive/{test_hive_broker_scan.groovy => 
hive_json_basic_test.groovy} (59%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to