This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
from d752946faa [hotfix] fix load with close wait failed error new d0c4b5c503 [fix](resource-tag) Consider resource tags when assigning tasks for broker & routine load (#9492) new 0dce0ff70c [bugfix]teach BufferedBlockMgr2 track memory right (#9722) new 37410280c8 [fix](function) If function adds type inference (#9728) new e34be8663d [bugfix] fix memleak in olapscannode(#9736) new 5bfc8e9cb1 [feature] add zstd compression codec (#9747) new 1cc0693a00 [security] update canal version to fix fastjson security issue (#9763) new 93f0d50bc6 [config] Add backend_rpc_timeout_second in FE config (#9779) new d2a8a399be [fix] Fix bug of bloom filter hash value calculation error (#9802) The 8 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/es_http_scan_node.cpp | 2 +- be/src/exec/olap_scan_node.cpp | 2 +- be/src/exec/olap_scanner.h | 2 +- be/src/exec/scan_node.cpp | 5 +- be/src/exec/scan_node.h | 1 + be/src/olap/bloom_filter_predicate.h | 8 +- be/src/olap/schema.cpp | 2 +- be/src/runtime/buffered_block_mgr2.cc | 11 +- be/src/util/block_compression.cpp | 149 +++++++++++++++++++++ be/src/vec/columns/column_dictionary.h | 24 +++- be/src/vec/exec/join/vhash_join_node.cpp | 14 +- be/src/vec/exec/volap_scanner.cpp | 8 ++ be/src/vec/exec/volap_scanner.h | 2 + be/src/vec/exprs/vexpr.h | 5 +- be/src/vec/exprs/vexpr_context.h | 4 + be/src/vec/utils/util.hpp | 12 +- be/test/util/block_compression_test.cpp | 2 + docs/en/administrator-guide/config/fe_config.md | 10 ++ docs/en/administrator-guide/multi-tenant.md | 12 ++ docs/zh-CN/administrator-guide/config/fe_config.md | 10 ++ fe/fe-core/pom.xml | 4 +- .../apache/doris/analysis/FunctionCallExpr.java | 8 +- .../java/org/apache/doris/common/ClientPool.java | 5 +- .../main/java/org/apache/doris/common/Config.java | 3 + .../doris/load/loadv2/LoadingTaskPlanner.java | 2 +- .../load/routineload/KafkaRoutineLoadJob.java | 8 +- .../doris/load/routineload/RoutineLoadJob.java | 15 ++- .../doris/load/routineload/RoutineLoadManager.java | 73 +++++++++- .../load/routineload/RoutineLoadTaskScheduler.java | 3 +- .../mysql/privilege/UserResourceProperty.java | 31 ----- .../org/apache/doris/planner/BrokerScanNode.java | 40 ++++-- .../load/routineload/KafkaRoutineLoadJobTest.java | 19 ++- .../doris/load/routineload/RoutineLoadJobTest.java | 9 +- .../load/routineload/RoutineLoadManagerTest.java | 26 ++-- .../load/routineload/RoutineLoadSchedulerTest.java | 7 +- .../transaction/GlobalTransactionMgrTest.java | 10 +- .../data/correctness/test_select_constant.out | 3 + 37 files changed, 436 insertions(+), 115 deletions(-) delete mode 100644 fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/UserResourceProperty.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org