Open gavinchou opened 1 month ago
fe.log
的默认打印模式(异步)现在包含文件行号信息。如果遇到因行号输出导致的性能问题,请选择BRIEF模式。#39419 ENABLE_PREPARED_STMT_AUDIT_LOG
的值从true
更改为false
,不再打印prepare语句的审计日志。#38865 max_allowed_packet
的默认值从1MB调整为16MB,与MySQL 8.4保持一致。#38697 ALTER
语句变更storage vault。#38685 #37606 enable_segment_cache
控制查询时是否使用segment cache(默认为true
)。#37141 catalog_meta_cache_statistics
,用于查看External Catalog中各类元数据缓存的使用情况。#40155 is [not] true/false
表达式。#38623 workload_group_privileges
以查看workload group相关的权限信息。#38436 workload_group_resource_usage
以监控workload group的资源统计信息。#39177 information_schema.partitions
以查看一些建表属性。#40636 SHOW
语句展示BE的配置信息,例如SHOW BACKEND CONFIG LIKE ${pattern}
。#36525 ReceiveDataTimeMs
,可以快速判断网络原因导致的stream load慢问题。#40735 /MetaService/http/show_meta_ranges
,便于统计FDB中KV分布组成。#39208 version_comment
(Cloud Mode)来显示当前部署模式为存算分离模式。#38269 /api/file_cache?op=hash
,方便计算segment文件在盘上的hash文件名。#40831 SHOW CACHE HOTSPOT
的输出,使其和其他SHOW
语句的列名风格统一。#41322 latest_fs()
以规避同个表绑定不同的存储后端。#40516 keep_carriage_return
设置对\r
符号的读取行为。#39980 hive.recursive_directories_table
和hive.ignore_absent_partitions
属性,用于指定是否递归遍历数据目录,以及是否忽略缺失的分区。#39494 SHOW CREATE DATABASE
和SHOW CREATE TABLE
针对外部数据源,增加了location信息显示。#39179 INSERT INTO
命令将数据插入到JDBC外表。#41511 IN/NOT IN
谓词下推。#38390 GROUP_CONCAT
现在支持同时使用DISTINCT
和ORDER BY
。#38080 IN
过滤条件的计算性能。#40917 explode_json_array
支持二进制JSON类型。#37278 add inverted index file size for open file
。#37482 abortTransaction
没有处理返回码的问题。#41275 afterCommit/afterAbort
的问题。#41267 begin; insert into values; commit
新优化器可能的列错位问题。#39295 Thanks all who contribute to this release:
924060929 BePPPower BiteTheDDDDt ByteYue CalvinKirs Ceng23333 ChenPeng2013 DarvenDuan Gabriel39 HappenLee Jibing-Li Johnnyssc Lchangliang LiBinfeng-01 Mryange SWJTU-ZhangLei TangSiyang2001 Toms1999 Vallishp WinkerDu Yukang-Lian Yulei-Yang airborne12 amorynan biohazard4321 bobhan1 caiconghui cambyzju catpineapple cjj2010 csun5285 dataroaring deardeng eldenmoon elon-X englefly feiniaofeiafei felixwluo freemandealer gavinchou glzhao89 hello-stephen htyoung hubgeter hust-hhb jacktengg justfortaste kaijchen kaka11chen liaoxin01 liutang123 lsy3993 luwei16 morningman morrySnow mrhhsg mymeiyi nextdreamblue platoneko qidaye qzsee seawinde smallx sollhui starocean999 superdiaodiao suxiaogang223 w41ter wangbo wangshuo128 wsjz wuwenchi wyxxxcat xiaokang xinyiZzz xzj7019 yagagagaga yiguolei yujun777 zclllyybb zddr zfr9527 zhangstar333 zhannngchen zhiqiang-hhhh zy-kkk zzzxl1993
This version is product ready release. We strongly recommend to use this version instead of other previous 3.0.x (x<2) for compute-storage decoupled mode.
Behavioral Changes
Storage
SHOW PARTITIONS
command now displays theCommittedVersion
of partitions. #28274Other
fe.log
now includes file line number information. If performance issues are encountered due to line number output, please switch to BRIEF mode. #39419ENABLE_PREPARED_STMT_AUDIT_LOG
has been changed fromtrue
tofalse
, and the audit log of prepare statements will no longer be printed. #38865max_allowed_packet
has been adjusted from 1MB to 16MB to align with MySQL 8.4. #38697New Features
Storage
Compute-Storage Decoupled
ALTER
statements. #38685 #37606enable_segment_cache
has been added to control whether to use segment cache during queries (default istrue
). #37141Lakehouse
catalog_meta_cache_statistics
has been added to view the usage of various metadata caches in External Catalog. #40155Asynchronous Materialized Views
Query Optimizer
is [not] true/false
expressions. #38623Query Execution
workload_group_privileges
has been added to view permission information related to workload groups. #38436workload_group_resource_usage
has been added to monitor resource statistics of workload groups. #39177information_schema.partitions
has been added to view some table creation attributes. #40636Semi-Structured Data Management
Other
SHOW
statement to display BE's configuration information, such asSHOW BACKEND CONFIG LIKE ${pattern}
. #36525Improvements
Load
ReceiveDataTimeMs
, which can quickly determine slow stream load issues caused by network reasons. #40735Storage
Compute-Storage Decoupled
/MetaService/http/show_meta_ranges
to facilitate the statistics of KV distribution in FDB. #39208version_comment
(Cloud Mode) to display the current deployment mode as compute-storage decoupled. #38269/api/file_cache?op=hash
to facilitate the calculation of the hash file names of segment files on disk. #40831SHOW CACHE HOTSPOT
to unify the column name style with otherSHOW
statements. #41322latest_fs()
to avoid binding different storage backends to the same table. #40516Lakehouse
keep_carriage_return
setting to control the reading behavior of the\r
symbol. #39980hive.recursive_directories_table
andhive.ignore_absent_partitions
properties to specify whether to recursively traverse data directories and whether to ignore missing partitions. #39494SHOW CREATE DATABASE
andSHOW CREATE TABLE
for external data sources now display location information. #39179INSERT INTO
statement. #41511IN/NOT IN
predicates. #38390Asynchronous Materialized Views
MySQL Compatibility
Query Optimizer
GROUP_CONCAT
now supports the use of bothDISTINCT
andORDER BY
. #38080Query Execution
IN
filtering conditions. #40917Semi-Structured Data Management
explode_json_array
now supports binary JSON types. #37278add inverted index file size for open file
. #37482Compatibility
Other
Bug Fixes
Load
abortTransaction
did not handle return codes. #41275afterCommit/afterAbort
. #41267Storage
begin; insert into values; commit
. #39295Compute-Storage Decoupled
Lakehouse
MySQL Compatibility
Asynchronous Materialized Views
Synchronous Materialized Views
Query Optimizer
Query Execution
Semi-Structured Data Management
Other