Releases: StarRocks/starrocks
Release list
3.5.19
Release date: June 26, 2026
Behavior Changes
parse_jsonnow respectsALLOW_THROW_EXCEPTION: malformed JSON fails the query instead of silently producingNULL, mirroring the earlierget_json_stringchange. #74976FILES()and Broker Load now honor the ParquetisAdjustedToUTC=falseflag forINT64timestamps, so such timestamps are no longer shifted by the session time zone. #73674SHOW FUNCTIONSnow surfaces theisolationproperty (sharedorisolated) for Java UDFs and UDAFs. #75255- The non-reserved keywords
FLOORandCEILare now allowed as column names. #75241
Improvements
- Supports loading Arrow
LARGE_LISTandFIXED_SIZE_LISTcolumns intoJSONcolumns viaFILES()and Broker Load. #73714 #73718 - Added an opt-in
statistics_large_string_column_merge_thresholdto isolate wideCHAR/VARCHARcolumns into dedicated statistics collection. #73258 - Optimized
base64_to_bitmapfor constant inputs and hardened it against invalid base64-encoded bitmaps. #74684 - Added new metrics for lake vacuum batch size and retry counts, and gauges for
CatalogRecycleBinsize. #74112 #74440 - Supports auditing a statement twice. #73896
Bug fixes
The following issues have been fixed:
- Several wrong-result and planning issues: low-cardinality dictionary translation for expressions where
f(NULL)is notNULL; aMultiple entries with same keyerror from common-subexpression elimination of commutativeAND/OR; anAGGREGATE has mismatch typeserror; a compound predicate with an always-false nested branch underUNIONreturning no rows; and an off-by-one that dropped a row inRANKTopN at a chunk boundary. #69376 #72823 #74159 #74218 #75045 - Materialized view rewrite issues that could return incorrect results: aggregate MVs with a
HAVINGclause rewriting queries without (or with weaker)HAVING, andavg(DISTINCT x)being rewritten through asum/countMV. #73610 #75071 - Incorrect window-function results when
enable_push_down_pre_agg_with_ranksplit a window count into local pre-aggregation and global analytic merge, and an empty window operator generated after pushing down distinct aggregation. #74453 #74810 - Partition TopN losing a child operator's output column, and silently swallowing sort or pre-aggregation errors and returning wrong or partial results. #72848 #74693
- Iceberg equality-delete rows with
NULLidentity-column values were not applied. #67321 - A spurious strict-mode cast overflow error raised from undefined data in
NULLrows. #74903 - Decimal scale could be lost when a column is entirely
NULL. #73789 - BE crashes in
to_base64(stack overflow), JSON load of nested types via partial append, local partition TopN with a non-nullable aggregate result, partitioned join (out-of-bounds from inaccurate memory accounting), runtime profile serialization (counter min/max race), JIT compilation failure (use-after-free ofLLVMContext), invalid JIT IR forCASE WHENwith mixed float/integer types, and partial column updates under schema drift. #70623 #73715 #69752 #74315 #72904 #74396 #74382 #74005 - An out-of-bounds read and potential oversized allocation in
split,split_part, andstr_to_mapwhen the input ends with a truncated UTF-8 byte. #75068 - A memory leak from the UDAF context cache and inflated query-pool memory accounting in
OlapTableSink. #74025 #73807 - Unexpected backend process restarts. #74424
- Materialized view issues: a slot-nullability crash for MVs defined with
FULL OUTER JOINunder late materialization, an NPE refreshing nested MVs, a duplicated warehouse property inSHOW CREATE MATERIALIZED VIEW, and a vector ANN query polluting a shared table schema and breaking unrelated statements. #72621 #73644 #69418 #74785 - Querying Paimon tables whose
DATEpartition column containsNULLvalues. #73950 - Reading Hudi MOR tables with
char/varcharcolumns whenhudi_mor_force_jni_readeris enabled. #58521 - Nested
INT96timestamps (insideARRAY,MAP, orSTRUCT) were shifted by the session time zone duringFILES()/Broker Load. #74868 - Incorrect bytes-read statistics in the audit log for connector scans, and incremental connector scan ranges being assigned to driver sequences absent from the deployed fragment, which could drop part of the scan. #73799 #74674
- Meta scan could fail after schema changes such as
ADD COLUMN, which could fail background statistics collection. #72901 - Slow broker RPCs held the per-job Routine Load write lock and blocked admin RPCs and
SHOW ROUTINE LOAD. #73591 ALTER ROUTINE LOADpersisted an invalid statement for reserved-keyword table names, which could drop the load clause on FE restart. #74188GRANT/REVOKEon thepublicrole did not invalidate cached merged privileges, leaving stale authorization. #73717- A race allowing concurrent operations to observe torn state during table and materialized-view
RENAMEandSWAP, and a data race onMaterializedIndexMetaschema-update tracking. #74100 #74412 - Database-level UDFs were missing on FE followers after
RESTORE ... AS <new_db>. #74313 - Queries could become unkillable when a coordinator held its lock during external resource cleanup. #72830
- A permanent version hole on non-primary-key replicas could cause queries to fail with
version not found. #74408 - Force-killed
SUBMIT TASKruns disappeared from task-run history (and session-prefixed task-run timeouts are now honored), and an illegal running-to-running edit log could wedge subsequent task runs. #74146 #73882 ADMIN SHOW REPLICA STATUSemitted a misaligned row for missing replicas, which could hang or disconnect the client. #74393CatalogRecycleBinhalted all deletions in shared-data mode when cluster snapshots kept failing, causing unbounded FE memory growth. #74379- An NPE in statistics calculation when a partition is dropped concurrently, and zero row counts written into partition statistics after
INSERT OVERWRITEcorrupting cardinality estimates. #73711 #74801 - Colocate tablets with all replicas on dead BEs were reported as healthy when
tablet_sched_disable_colocate_balanceis enabled. #73550 - An
IllegalMonitorStateExceptionfrom a lock mismatch in the tablet checker could abort a checker round. #74596 - Reduced lock contention by narrowing several full-database
WRITElocks to table-scoped locks in shared-nothing mode, and skipped unnecessary locking inTabletInvertedIndex.deleteTabletsfor empty input. #74523 [#73955](https://github...
4.0.12
4.0.12
Release Date: June 25, 2026
Behavior Changes
- When reading INT64 timestamps from Parquet files written with
isAdjustedToUTC=false(timezone-naive),SELECT FROM FILES()and broker/stream LOAD no longer shift the values by the session timezone offset. Such timestamps are now read as wall-clock values, consistent with Trino, Spark, and Impala. Previously the values drifted whenever the session timezone was not UTC. #73674 - CTAS (
CREATE TABLE AS SELECT) now preserves the declaredVARCHAR(N)length when the source carries an explicit user length (a catalog column reference,CAST AS VARCHAR(N), or a string literal), instead of widening it toVARCHAR(1048576). This keeps the length constraint enforceable and aligns DDL with dbt schema contracts. Materialized view materialization still widens columns as before. #73498 - The Paimon connector now respects the session variable
connector_max_split_sizewhen calculating scan splits, instead of always using the default value, so tuning it now affects Paimon scan parallelism. #71756
Improvements
- Optimized
base64_to_bitmapby folding the conversion at constant-evaluation time for constant inputs. #74684 ngram_searchnow supports a non-constant needle (the search term can be a column expression rather than only a constant). #74675- The Arrow-to-JSON converter now supports
LARGE_LISTandFIXED_SIZE_LISTtypes. #73714 - Added an opt-in option to isolate wide-string columns during statistics collection to reduce memory pressure. #73258
information_schema.COLUMNSnow populates theDATETIME_PRECISIONfield. #74623- Relaxed database read locks to table-scoped intensive locks in
InformationSchemaDataSourceandFrontendServiceImplto improve concurrency. #73936 #73913 - Narrowed database write locks to table-scoped intensive write locks for shared-nothing clusters, and scoped replica row-count updates to the table lock. #74523 #74521
- Moved the routine-load broker RPC out of the per-job write lock to reduce contention. #73591
- Deferred JDBC
REMARKSfetching out of thegetTable()hot path to speed up metadata access for JDBC catalogs. #73488 - Pushed down the
table_namepredicate forinformation_schema.tables_configqueries. #73210 - Skipped per-replica scans on single-medium BEs in
BackendLoadStatistic. #73555 - Added a write timeout to the MySQL channel result send path to prevent stuck connections. #73646
- Added catalog recycle bin size gauge metrics. #74440
- Added vacuum batch-size and retry-count metrics, and added decorrelated jitter to the lake vacuum retry backoff to reduce retry storms. #74112 #74108
- Upgraded third-party dependencies to address security vulnerabilities (CVE): Netty to 4.1.135.Final, Tomcat to 9.0.118, and Thrift to 0.23.0. #74668 #73797 #73625
Bug Fixes
The following issues have been fixed:
- Successfully committed multi-statement transaction stream loads were shown as
PREPARINGforever ininformation_schema.loadsandSHOW STREAM LOAD. #74386 - Rows were silently dropped from
information_schema.loadson clusters whose session timezone differs from Asia/Shanghai, because load times were exchanged as naive wall-clock strings across the BE/FE thrift boundary. #73365 - The
COMMITof an explicit transaction waited onlyquery_timeoutmilliseconds (instead of seconds) for the database write lock due to a unit mismatch. #73549 current_timestamp/now()column defaults were displayed as a frozen literal afterALTER TABLE ... ADD COLUMNand could be lost across FE restarts or edit-log replay. #73455- Querying
sys.fe_memory_usage/sys.fe_lockswithout theOPERATE ON SYSTEMprivilege returned a misleading RPC-failure message instead of a clear access-denied error. #73567 - Automatic per-key Hive partition stats refresh could overload the Hive Metastore for tables with many partitions. #73563
- A null-pointer issue when reading the GTID during a schema change. #74855
- An empty analytic operator was not pruned after pushing down a distinct aggregation. #74810
- Zero row counts could corrupt partition statistics. #74801
- Vector index rewrite could pollute the shared table schema. #74785
- An
IllegalStateExceptionduring parallel profile collection, fixed by making Tracers fork-aware. #74746 - BE vacuum tasks were not aborted once the FE caller's timeout elapsed. #74694
- Partition consumer errors in
ChunksPartitionerwere lost instead of being propagated. #74693 - A lock mismatch in
blockingAddTabletCtxToScheduler. #74596 - A typo in the
azure_adls2_oauth2_client_endpointconfiguration field name. #74581 - Pipeline observers were not notified on missed operator state transitions. #74557
- The reported vacuum watermark was incorrect when retain-boundary metadata was gone. #74429
- A data race on
MaterializedIndexMetaduringupdateSchemaBackendId. #74412 - A non-primary-key replica could get stuck with a permanent version hole; it now self-heals. #74408
- A use-after-free of
LLVMContextwhen JIT compilation fails. #74396 - A column mismatch in the missing-replica row of
ADMIN SHOW REPLICA STATUS. #74393 - Invalid JIT IR generated for
CASE WHENwith mixed float/int WHEN and result types. #74382 - The
CatalogRecycleBinwas frozen when a cluster snapshot kept failing. #74379 - A partial update targeting a table modified earlier in the same explicit transaction is now rejected with a clear error. #74344
- Immutable-partition updates did not use the transaction's compute resource. #74316
- A potential out-of-bounds error caused by partitioned join. #74315
- Database-level UDFs were not restored to the renamed target database for FE followers. #74313
- Non-root compound predicates yielded
EOFinstead ofNotPushDown. #74218 - Table names were not backquoted when persisting the routine load
origStmt. #74188 - An assertion name lookup error in assert-num-rows. #74178
- Aggregation used type-mismatched aggregate functions. #74159
- Force-killed task runs were not archived, and session-prefixed task-run timeouts were not honored. #74146
RENAMEandSWAP(for tables and materialized views) now take the database write lock to avoid concurrent-modification issues. #74100- Composite-rowset stats were not summed when batching op_writes in primary-key multi-statement transactions. #74059
- The sink was not notified when a distinct aggregate source finished. #74055
pipe_file_listwas not recreated when_statistics_was dropped. #73970- A crash in
TabletInvertedIndex.deleteTablets, fixed by fast-path skipping empty input. #73955 - The task manager could write an illegal edit log for a task run. [#73882](#73882...
3.5.18
Release date: June 5, 2026
Behavior Changes
SHOWstatements are now allowed inside explicit transactions. #72954get_json_stringnow respectsALLOW_THROW_EXCEPTIONwhen handling JSON parsing errors. #73199IGNORE NULLSis now preserved in view definitions when the window function argument is an expression. #69971- Ranger row filter and masking policies are now correctly applied to Hive views and to base tables expanded from Hive view definitions. #73265
- Hive partition statistics are no longer automatically refreshed per partition. Existing cached stats are preserved while a table-level asynchronous refresh updates the cache in batches. #73563
Improvements
- Supports caching Java UDAF class-level initialization so shared UDAFs can reuse loaded classes and generated stubs across aggregator and window-function instances. #72038
- Supports Paimon time types and improves Paimon materialized view handling. #58292
- Added an Avro schema cache for shadowed
PartitionDataduring partition load. #72215 - Added a configurable FE write timeout
mysql_send_packet_timeout_msfor the MySQL result send path to prevent indefinitely blocked result sending to slow clients. #73646 - Optimized
CatalogRecycleBinadjusted recycle timestamp lookup. #72128 - Reduced metadata and lock overhead in load balancing, compaction scheduling, consistency checks, and StarMgr metadata synchronization paths. #73555 #72218 #72178 #72108
- Improved diagnostics for filesystem copy failures and Parquet broker load errors by surfacing the underlying cause and file/column/row context. #73414 #73236
- Reduced external catalog and information schema metadata overhead by deferring JDBC REMARKS fetching, avoiding redundant Paimon snapshot lookups, and pushing down
table_namepredicates forinformation_schema.tables_config. #73488 #72892 #73210 - Simplified the scalar-function merge implementation by using
merge()directly. #69575
Bug fixes
The following issues have been fixed:
- Empty
ALTER TABLEstatements could be parsed as OPTIMIZE clauses, and replaying malformed OPTIMIZE jobs could clear a table's default distribution. #73352 - Decimal-valued unit counters in runtime profiles could cause query progress parsing failures and noisy FE warnings. #73683
- Concurrent
SegmentFlushTaskrace inDeltaWriter::commit()and loss ofmerge_conditionduring normal rowset commit. #73371 #72542 - Crashes, hangs, or unsafe cleanup in
SinkBuffergraceful exit,PipelineTimerTask, runtime filter workers, spillable hash join probe,information_schema.warehouse_queries, lake vacuum, HTTP connection unregister paths, and query queue timeout handling. #73202 #73082 #72058 #72626 #72397 #72019 #73088 #72006 #65802 - Materialized view issues involving JDBC SQL Server tables, lost index properties, cached plan context memory leaks, Paimon tables, and incorrect shuffle distribution after MV rewrite. #72962 #69187 #72300 #58292 #71075
- Query planning and rewrite issues in Spark connector external scans,
INSERT OVERWRITEre-planning, aggregation spill with small LIMIT, and generated columns produced byUNNEST. #73225 #72832 #72705 #72027 - Paimon Primary Key columns could be incorrectly marked as non-nullable when querying external catalogs. #71660
- Primary Key and tablet metadata issues including partial tablet schema short-key mismatch, rowset metadata cache warmup deadlock, disk data cache expansion failure, Azure filesystem client cache issues in Starlet, and colocate-heavy cluster-balance performance issues in StarOS. #70586 #71459 #58206 #73145 #72391
- Locker rollback and unlock-order issues during partial intensive-lock acquisition. #72789 #72423
- Dependency CVEs and broker dependency regressions. #72905 #72797 #72184 #72191
- JNI local-reference leaks in JDBC scanner initialization. #72913
- Arrow dictionary values in Parquet scanner and Apache Parquet namespace ambiguity during scanner builds. #71855 #72284
- NPE in Iceberg
getPartitionLastUpdatedTimewhen the snapshot is expired. #68925
4.0.11
Release Date: June 5, 2026
Behavior Changes
get_json_stringand the otherget_json_*functions now return the JSON parse error instead of NULL when implicit VARCHAR-to-JSON parsing fails underALLOW_THROW_EXCEPTION. The default behavior (returning NULL when the mode is disabled) is unchanged. #73199pipeline_enable_large_column_checkeris now enabled by default. #72798
Improvements
- Lake write-path load spill files now use a flat, single-level directory layout with the transaction ID baked into each filename, and are reclaimed by a txn-id-based vacuum pass. This moves bulk deletes off the write hot path and lets vacuum clean up spill files leaked by BE crashes. #73064
- SHOW statements (such as
SHOW GRANTSandSHOW WAREHOUSES) are now allowed inside an explicit transaction, so BI/JDBC clients that automatically issue SHOW no longer break the transaction flow. #72954 - Java UDAF and UDTF now support STRUCT arguments and return types. #72911
- Scalar Java UDF now supports STRUCT arguments. #72620
- Java UDF now supports DATE and DATETIME types. #72337
- Java UDF now supports nested ARRAY/MAP types. #72283
- Added the FE configuration
deploy_serialization_min_thread_pool_size. #72274 - Skipped redundant partition key expression building when an
add_partition_valuededuplication hit occurs. #73156 - Avoided a redundant
latestSnapshot()call inPaimonMetadata#getTableVersionRange. #72892 - Deduplicated commutative AND/OR expressions in scalar operator common subexpression elimination. #72823
Bug Fixes
The following issues have been fixed:
- A memory leak introduced by the UDAF cache. #74025
- An incorrect implementation in aggregate combined functions. #74169
- An issue in shared-data combined txn log mode where the per-partition coordinator claim was not re-recorded on every sender's open, which could drop txn logs. #73962
- A read failure on Iceberg tables that use a custom
LocationProvider, fixed by lazily initializing theLocationProviderinSerializableTable. #73482 - A serialization failure caused by the
de.javakaffeeUnmodifiableCollectionsSerializer, now replaced with a Java 17-compatible version. #73458 HdfsFsManagercopy error messages now include the underlying cause. #73414- A concurrent
SegmentFlushTaskrace inDeltaWriter::commit(). #73371 - Sort merge provider errors are now propagated to the fragment context instead of being lost. #73337
- An issue where Ranger row-filter/masking policies on Hive views were skipped, so policies on the view or its base tables were not applied. #73265
- Upgraded libthrift to 0.23.0 to address a security vulnerability (CVE). #73243
- An FE file-descriptor leak, fixed by reusing
HttpClientinstances. #73239 - Parquet broker load errors now include file/column/row context. #73236
- A slot lookup failure for output slots with an empty
col_namein the Spark connector external scan. #73225 - A crash in
SinkBufferduring graceful exit. #73202 - Query cache conflicts with local shuffle aggregation. #73194
- A use-after-free of the Hive partition descriptor across fragment teardown. #73176
- A thread-safety issue in lake vacuum, fixed by using
localtime_r. #73088 - A race condition between
PipelineTimerTaskdoRunand unscheduling during query context destruction. #73082 - Lock contention on read-only query-engine paths, reduced by relaxing DB locks. #73067
- An materialized view refresh failure with SQL Server tables in a JDBC catalog. #72962
- A JNI local-reference leak in
JDBCScanner::_init_jdbc_scanner. #72913 - An issue where partition TopN could lose a child's output column. #72848
- An incorrect plan caused by not clearing
LambdaArgument.transformedOpbefore INSERT OVERWRITE re-planning. #72832 - The coordinator lock was held during external resource cleanup. #72830
Lockerrollback is now exception-safe and the unlock order is fixed. #72789- An incorrect byte order in
ColumnDict.merge, now using unsigned byte order. #72778 - A stack-buffer-overflow when formatting into a temporary
std::string. #72728 - The HAVING clause is now checked when disabling aggregation spill on a small LIMIT. #72705
- A hang caused by joining forwarded RPCs when draining the runtime_filter worker. #72626
- Incorrect lazy-materialization slot nullability for a materialized view over an outer join. #72621
merge_conditionwas not preserved when applying a normal rowset commit. #72542- Lock contention in
TabletScheduler/TabletSchedCtxhot paths during clone, reduced by relaxing DB locks. #72475 Lockerdid not roll back a partial intensive-lock acquisition. #72423- A spillable hash join probe crash. #72397
- COALESCE children are now cast to a common type in the JOIN USING transformer. #72338
- DB READ lock was held too broadly for single-table proc directories, now relaxed to per-table. #72334
- A memory leak when caching the materialized view plan context. #72300
- FSE-v2 did not set the schema for shared-data sorted schema change. #72235
ConsistencyCheckerheld a DB READ lock too broadly in periodic scans, now relaxed to per-table READ. #72218- A BE crash when querying
information_schema.warehouse_queries. #72019 - A trailing
\rwas not stripped before the closing enclose in CRLF CSV inputs. #71866 - Paimon primary key columns were incorrectly marked as non-nullable when querying an external catalog. #71660
- A redundant double slash was created when constructing the JDBC URL if the URI already ended with a trailing slash, breaking strict drivers such as ClickHouse. #70992
4.1.1
4.1.1
Release Date: May 29, 2026
Container Image Issue (v4.1.0): Due to an unstable load order issue in the v4.1.0 container image, BE processes may fail to start reliably in container environments. Container environment users should NOT upgrade to v4.1.0; use v4.1.1, which includes the fix (#71825).
Downgrade Notes: After upgrading StarRocks to v4.1, DO NOT downgrade to any v4.0 version below v4.0.6. Due to internal data-layout changes in v4.1 (tablet splitting and distribution), downgrade from v4.1 is only supported to v4.0.6 or later.
Behavior Changes
- The Hive connector now uses a native C++ Avro scanner instead of the JNI Avro scanner by default. #73237 #73569
- Query rewrite over INCREMENTAL/AUTO materialized views is now disabled, and FORCE refresh and partition refresh are rejected for INCREMENTAL/AUTO materialized views. #72890 #72336 #71355
Improvements
- Java UDF/UDAF/UDTF now support more types: STRUCT arguments and return values for UDAF/UDTF, nested ARRAY/MAP types, DATE/DATETIME, DECIMAL, and varargs. #72911 #72283 #72337 #72208 #68596
- Scalar UDFs now support STRUCT arguments. #72620
- Python UDFs now support nested ARRAY/MAP types. #72210
- UDAFs are now loaded and initialized once and reused across queries, reducing per-query overhead. #72038
- Replaced the JNI Avro scanner with a native C++ scanner for the Hive connector, with direct binary decoding and support for
avro.schema.literalandavro.schema.url. #73237 #73283 #73257 #73569 - Supports the Trino
WITHclause in CTAS statements. #71960 - Completed Iceberg
timestamptzpartition transform support on the sink path. #73397 - Enabled TopN runtime filter pushdown for Iceberg table aggregation. #72332
- Supports Iceberg datetime min/max optimization. #71870
- Allows HDFS HA configuration passthrough in Catalog and BE to support accessing multiple HDFS clusters. #71521
- Added a partition scan number limit for external table queries. #68480
- Fails fast for unsupported Iceberg V3 features. #70242
- Supports
csv.encloseandcsv.escapefor CSV exports via INSERT INTO FILES. #71589 - Added the
enable_push_down_schemaINSERT property for full schema push-down tofiles(). #70978 - Routine Load jobs are now paused on non-retryable errors (for example, primary key size exceeded). #71161
- Supports join reorder for complex expressions from two children. #71615
- Improved CBO statistics estimation, including MCV/null-fraction propagation for
date_trunc,array_map, CASE WHEN, IS NULL, UNION, and constants. #72233 #70372 #70221 #70865 #70989 #71000 - Improved skew join detection: skew is only detected when all join keys are skewed, and a
force_group_by_skew_eliminate_when_skewedswitch was added to force the skew rule. #72753 #71382 - Supports constant folding for
regexp_replacein the FE. #70804 - Optimized MIN/MAX on date partition columns with constant partition values. #69880
- Introduced the
SCHEDULEkeyword as a synonym forASYNCin materialized view refresh. #72329 - Supports tablet creation retry for Lake tables in shared-data mode. #71068
- Supports conditional update for Lake column-mode partial update. #71961
- Parallelized partial-update publish, persistent index initialization, and SSTable opening to improve ingestion throughput. #71652 #71217 #72112 #71145 #72986
- Supports DCG file synchronization during shared-nothing to shared-data replication. #69339
- Supports schema evolution for widening VARCHAR length on both key and non-key columns. #70747
- Added the
snapshot_meta.jsonmarker for cluster snapshot integrity checks. #71209 - Supports LDAP direct bind authentication via a DN pattern. #71559
- Added the
get_query_dump_from_query_idmeta function for easier query troubleshooting. #72875 - Supports auditing queried relations in the audit log. #71596
- Added session variables for MySQL binary result encoding. #71415
- Added metrics for better observability, including
tablet_numfor shared-data clusters,MemtableIOSpeed,staros_shard_count, and Iceberg metadata-table query metrics. #71444 #69842 #73096 #70825 - Added the FE configuration
deploy_serialization_min_thread_pool_size. #72274 - Added the
tablet_reshard_enable_tablet_mergeconfiguration to disable MergeTabletJob creation. #70906 - Eliminated HTTP-server accept thundering-herd via
SO_REUSEPORT. #72956
Security
- [CVE] Upgraded Netty to 4.1.133.Final. #72905
- [CVE-2026-42198] [CVE-2026-5598] Bumped pgjdbc to 42.7.11 (client-side DoS via unbounded SCRAM PBKDF2 iteration count) and BouncyCastle to 1.84 (FrodoKEM private-key leakage). #72797
- [CVE-2026-32280] [CVE-2026-32282] Built pprof with go1.25.9 to eliminate Golang CVEs. #71944 #73545
- Upgraded jetty-http to 9.4.58.v20250814. #71762
- Cleaned up Broker dependency CVEs and removed
wildfly-openssl. #72184 #71908 - Redacted credentials in INSERT INTO FILES error messages. #71245
Bug Fixes
The following issues have been fixed:
- CN segfault on startup caused by
hash_utilstatic initialization order. #71825 - CN crash when scanning an empty tablet with physical split enabled. #70281
- BE crash when querying
information_schema.warehouse_queries. #72019 - SIGFPE in Lake compaction when rowset
num_rowsis zero. #71742 - Division-by-zero in ExecutionDAG fragment connection. #67918
- Graceful-exit crash in SinkBuffer. #73202
- Spillable hash join probe crash. #72397
- Stack-buffer-overflow when formatting into a temporary
std::string. #72728 - Crash in
reverse(DecimalV3). #71834 - Use-after-free in
LoadChannel::get_load_replica_statuscaused by temporaryshared_ptrdestruction. #71843 - Use-after-free in
ThreadPool::do_submitwhen thread creation fails. #71276 - Hive partition descriptor use-after-free across fragment teardown. #73176
- An information schema sink use-after-free. #71513
- An FE file descriptor leak by reusing HttpClient instances. #73239
- JNI local-reference leak in
JDBCScanner::_init_jdbc_scanner. #72913 - Memory leak when caching the MV plan context. #72300
- Unexpected memory overuse in local exchange. #72262
- Race on
response->tablet_metasin Lakepublish_version. https://github.com/StarRocks/star...
4.0.10
4.0.10
Release Date: May 9, 2026
Behavior Changes
- Cloud storage credentials are now redacted in error messages produced by
INSERT INTO FILES, preventing accidental exposure of secrets in error logs andSHOW LOADoutput. #71245 - StarRocks no longer permits queries against insert-only ACID Hive tables in Hive catalog. Previously such queries could silently return more rows than actually visible because INSERT OVERWRITE operations were not recognized. Affected tables now return an explicit error instead of incorrect results. #71460
Improvements
- Added an Avro schema cache in Iceberg
PartitionDataconstruction to remove redundant JacksonObjectMapperallocations during partition load on tables with many partitions. #72215 - Optimized
CatalogRecycleBin.getAdjustedRecycleTimestampto avoid rebuilding the table-id map on every call, reducing recycle-bin cleanup and tablet scheduling overhead. #72128 OlapTableSink.createLocationnow batches tablet-location lookups in shared-data mode, removing per-tablet StarOS RPCs that previously stalled the planner critical section. #72041- Java UDAF instances are now loaded and initialized once per query and reused across pipeline driver instances, removing the linear driver-preparation overhead at high
pipeline_dop. #72038 - Added BE metrics
starrocks_be_staros_shard_info_fallback_totalandstarrocks_be_staros_shard_info_fallback_failed_totalto track when the StarOS worker falls back to fetching shard info fromstarmgrbecause the local cache missed. #71620 - File-bundle writes now prefer a tablet-local aggregator so the bundled tablet metadata path does not require cross-node shard-info lookups. #71613
- Audit log entries now include the queried tables and views referenced by each query. #71596
INSERT INTO FILESCSV export now supportscsv.encloseandcsv.escapeproperties for controlling field quoting and escaping. #71589- Added LDAP direct bind authentication via DN pattern, removing the requirement for an admin search account in single-tenant LDAP setups. #71559
- Added the
starrocks_fe_tablet_nummetric for shared-data clusters to match the shared-nothing metric set. #71444 star_mgr_meta_sync_interval_secis now runtime-mutable viaADMIN SET FRONTEND CONFIG; the new interval takes effect on the next sync cycle without an FE restart. #71675
Bug Fixes
The following issues have been fixed:
- A race in shared-data combined txn log mode where INSERT into per-partition coordinator dispatch could classify legitimate txn logs as orphan and drop them, leaving the transaction stuck in non-VISIBLE state. #72237
- An issue where
_incremental_open_node_channelchannels in shared-data combined txn log mode silently dropped txn logs because the legacy "sender_id == 0 collects all logs" rule did not apply to incremental channels. #71992 - An issue where
RuntimeProfile::to_thrift()could crash BE withstd::bad_optional_accesswhen another thread reset counter min/max values during profile serialization. #72904 - An inconsistency in flat JSON merge results when one side contributed empty values. #72973
- An issue where
CREATE TABLEfor an Iceberg table failed with "Multiple entries with same key: format-version" when the user explicitly specifiedformat-versioninPROPERTIES. #72828 - A
CompactionScheduler.startCompactionlock scope that held a DB-wide READ lock across single-table critical work, blocking concurrent DDL on other tables in the same database. Switched to IS on DB plus READ on the target table. #72178 - An issue where
StarMgrMetaSyncer.syncTableMetaInternalandsyncTableColocationInfoheld DB READ/WRITE locks across external StarOS RPCs, freezing CREATE/DROP/ALTER/RENAME on every table in the database for the duration of each RPC. #72108 - An issue where
StarMgrMetaSyncer.getAllPartitionShardGroupIdheld the DB READ lock for full iteration over all cloud-native tables and physical partitions, stalling FE threads waiting for the DB write lock on large catalogs. #71614 - A redundant DB READ lock in
getTableNamesViewWithLock. The underlyingnameToTableis aConcurrentHashMap, so the enclosing lock added contention without correctness benefit. #72042 - A DB WRITE lock in the read-only
/api/{db}/{table}/_countREST endpoint that was unnecessary for computingproximateRowCount(). #72053 - A batch publish deadlock caused by partition version gaps that operations like tablet split, schema change, and alter jobs reserved by advancing
nextVersionwithout a matching publish. #71483 - A deadlock in shared-nothing mode when warming up the LRU cache for rowset metadata while the cache was full. #71459
- A
PipelineTimerTaskthat could remain stuck inwaitUtilFinisheddue to incorrect ordering between consumer registration and finished signaling. #72058 - A condition race in
ConnectorSinkPassthroughExchanger::acceptthat crashed BE with SIGSEGV via out-of-bounds vector access on_writer_count. #71848 - A use-after-free in
LoadChannel::get_load_replica_statuscaused by destruction of a temporaryshared_ptr. #71843 - A use-after-free in the information schema sink due to a missing reference count increment in async RPC closure handling. #71513
- A BE crash in
reverse(DecimalV3)caused by improper handling of decimal value width. #71834 - A BE crash when
UNNESTproduced columns whose define-expression carried an ARRAY type, which was incompatible with global dictionary generation downstream. #72027 - An NPE in FE when creating an Iceberg external table with invalid transform argument order such as
bucket(4, region); FE now returns a normal analyzer error. #71917 - An issue where Iceberg manifest data file cache entries were missing column statistics when the first query against a table did not request stats (for example
SELECT *). #71913 - An issue where the Iceberg min/max optimization was silently skipped when the table was partitioned by
bucket(col, N)becausePruneHDFSScanColumnRuleinjected a placeholder materialized column. #71863 - An issue where
AggregateJoinPushDownRulefailed to rewrite materialized views over Iceberg base tables becauseTable.getId()was compared instead of identity, and connector-table ids can shift across plan rebuilds. #71856 - An issue where INSERT OVERWRITE into Hive dynamic partitions failed when the metastore listed a partition whose location no longer existed on the file system; the missing partition directory is now created before commit. #71810
- A Parquet scanner failure (
Illegal converting from arrow type(dictionary) ...) when Arrow returned dictionary-typed columns, including dictionaries nested inside arrays, structs, and maps. #71855 - An issue where stale scan ranges from earlier batches persisted across
ColocatedBackendSelector.Assignmentincremental batches, causing files to be re-deployed and re-scanned. #71789 - An issue where
PruneShuffleColumnRuledid not update the JoinoutputPropertyafter pruning Exchange shuffle columns, leading to incorrect downstream distribution. #72003 - Incorrect shuffle distribution caused by a missing project node when
PushDownJoinOnExpressionToChildProjectwas disabled during the first stage of multi-stage MV rewrite. #71075 - Duplicate
Applyattachments inReplaceSubqueryRewriteRulewhen predicate normalization made the same scalar-subquery placeholder appear multiple times. #71155 - A short-circuit issue in
EventSchedulerwhere a finished join probe could prevent the pipeline from transitioning to the finished state. #71740 - An issue where AWS assume-role configured via
aws.s3.iam_role_arnwas not applied to JNI scanners (RCFile / A...
3.5.17
Release date: May 13, 2026
Behavior Changes
SHOW CREATE TABLEandDESCnow show Primary Keys for Paimon tables. #70535- Disallowed INSERT into insert-only ACID Hive tables in Hive catalogs. #71460
START_TIMEandEND_TIMEin Profile are now displayed using the session time zone. #71429
Improvements
- Supports
csv.encloseandcsv.escapeinINSERT INTO FILESCSV export. #71589 - Added query relation information (directly queried tables and viewa) to audit logs. #71596
- Made the FE configuration
star_mgr_meta_sync_interval_secruntime mutable. #71675 - Reduced metadata and lock overhead in table metadata and row-count paths. #72053 #72042 #71672
- Improved build and dependency hygiene by merging the broker builder into the FE build and removing WildFly OpenSSL. #71823 #71908
Bug fixes
The following issues have been fixed:
- Wrong results for local-shuffle aggregate queries with OFFSET. #71997
- Incorrect Join output properties after Exchange shuffle columns are pruned. #72003
- Several dependency CVE issues. #71762 #71914
- Oracle JDBC NLS format handling issue. #71412
- Missing Iceberg column statistics in manifest data file cache. #71913
- Missing Hive partition directory before INSERT OVERWRITE commit. #71810
- Aggregate-join-pushdown materialized view rewrite and min/max optimization issues on Iceberg base tables. #71856 #71863
- Race conditions in
ConnectorSinkPassthroughExchangerandLoadChannel::get_load_replica_status. #71848 #71843 - Credential redaction issue in INSERT FILES operations. #71245
- Incorrect
reverse(DecimalV3)results. #71834 - Missing JNI exception handling checks in Java UDF code. #71734
- Incorrect short-circuit checks in
EventScheduler. #71740 - Incorrect Arrow Flight column name for empty result sets. #71534
- Batch publish deadlock caused by partition version gaps. #71483
- Repeated Apply attachments in scalar-subquery plans. #71155
4.0.9
4.0.9
Release Date: April 16, 2026
Behavior Changes
- When VARBINARY columns appear inside nested types (ARRAY, MAP, or STRUCT), StarRocks now correctly encodes the values in binary format in MySQL result sets. Previously, raw bytes were emitted directly, which could break text-protocol parsing for null bytes or non-printable characters. This change may affect downstream clients or tools that process VARBINARY data inside nested types. #71346
- Routine Load jobs now automatically pause when a non-retryable error is encountered, such as a row causing the Primary Key size limit to be exceeded. Previously, the job would retry indefinitely because such errors were not recognized as non-retryable by the FE transaction status handler. #71161
SHOW CREATE TABLEandDESCstatements now display the Primary Key columns for Paimon external tables. #70535- Cloud-native tablet metadata fetch operations (such as
get_tablet_statsandget_tablet_metadatas) now use a dedicated thread pool instead of the sharedUPDATE_TABLET_META_INFOpool. This prevents metadata fetch contention from impacting repair and other tasks. The new thread pool size is configurable via a new BE parameter. #70492
Improvements
- Added session variables to control the encoding behavior of VARBINARY values in MySQL protocol responses, providing fine-grained control over binary result encoding in client connections. #71415
- Added a
snapshot_meta.jsonmarker file to cluster snapshots to support integrity validation before snapshot restoration. #71209 - Added warning logs for silently swallowed exceptions in
WarehouseManagerto improve observability of silent failures. #71215 - Added metrics for Iceberg metadata table queries to support performance monitoring and diagnosis. #70825
- The
regexp_replace()function now supports constant folding during FE query planning, reducing planning overhead for queries with constant string arguments. #70804 - Added categorized metrics for Iceberg time travel queries to improve monitoring and performance analysis. #70788
- Added log output when update compaction is suspended, improving visibility into compaction lifecycle. #70538
SHOW COLUMNSnow returns column comments for PostgreSQL external tables. #70520- Added support for dumping query execution plans when a query encounters an exception, improving diagnosability of runtime failures. #70387
- Tablet deletion during DDL operations is now batched, reducing write lock contention on tablet metadata. #70052
- Added a Force Drop recovery mechanism for synchronous materialized views that are stuck in an error state and cannot be dropped through normal means. #70029
Bug Fixes
The following issues have been fixed:
- An issue where the profile
START_TIMEandEND_TIMEwere not displayed in the session timezone. #71429 - A shared-object mutation bug in
PushDownAggregateRewriterwhen processing CASE-WHEN/IF expressions, which could cause incorrect query results. #71309 - A use-after-free bug in
ThreadPool::do_submittriggered when thread creation fails. #71276 - An issue where
information_schema.tablesdid not properly escape special characters in equality predicates, causing incorrect results. #71273 - An issue where the materialized view scheduler continued to run after the materialized view became inactive. #71265
- Fixed a task signature collision in
UpdateTabletSchemaTaskacross concurrent ALTER jobs that could cause schema update tasks to be skipped. #71242 - An issue where row count estimation produced NaN values for histograms that contained only MCV (Most Common Values) entries. #71241
- A missing dependency on the AWS S3 Transfer Manager in the AWS SDK integration. #71230
- An issue where
TaskManagerscheduler callbacks did not verify whether the current node is the leader, potentially causing duplicate task execution on follower nodes. #71156 - A thread-local context pollution issue where
ConnectContextinformation was not cleared after a leader-forwarded request completed. #71141 - An issue where the partition predicate was missing in short-circuit point lookups, causing incorrect query results. #71124
- A NullPointerException when analyzing generated columns during Stream Load or Broker Load if a column referenced by the generated column expression was absent from the load schema. #71116
- A use-after-free bug in the error handling path of parallel segment and rowset loading. #71083
- An issue where delvec orphan entries were left behind when a write operation preceded compaction in the same publish batch. #71049
- An issue where queries appeared in the
current_queriesresult via HTTP loopback when checking query progress internally. #71032 - CVE-2026-33870 and CVE-2026-33871. #71017
- A read lock leak in
SharedDataStorageVolumeMgr. #70987 - An issue where the input and result columns of the
locate()function shared the same NullColumn reference inside BinaryColumns, causing incorrect results. #70957 - An issue where safe tablet deletion checks were incorrectly applied during ALTER operations in share-nothing mode. #70934
- A race condition in
_all_global_rf_ready_or_timeoutthat could prevent global runtime filters from being applied correctly. #70920 - An int32 overflow in the
ACCUMULATEDmetric macro that caused metric values to silently overflow. #70889 - Incorrect aggregation results in dictionary-encoded merge GROUP BY queries. #70866
- CVE-2025-54920. #70862
- A potential data loss issue in aggregation spill caused by incorrect hash table state handling during
set_finishing. #70851 - An issue where the
content-lengthheader was not reset whenproxy_pass_request_bodyis disabled. #70821 - An issue where the spill directory for load operations was cleaned up in the object destructor rather than during
DeltaWriter::close(), potentially causing premature deletion of spill data. #70778 - An issue where
INSERT INTO ... BY NAMEfromFILES()did not correctly push down the schema for partial column sets. #70774 - An issue where connector scan nodes did not reset the scan range source on query retry, causing incorrect results upon retry. #70762
- A potential rowset metadata loss for Primary Key model tablets caused by a GC race during disk re-migration of the form A→B→A. #70727
- An issue where a query-scoped warehouse hint leaked the
ComputeResourceobject inConnectContext, potentially affecting subsequent queries on the same connection. #70706 - An issue where redundant conjuncts in
MySqlScanNodeandJDBCScanNodecaused BE errors related toVectorizedInPredicatetype mismatches. #70694 - A missing
libssl-devdependency in the Ubuntu runtime environment. #70688 - An issue where Iceberg manifest cache completeness was not validated on read, leading to incorrect scan results when the cache was partially populated. #70675
- A duplicate closure reference in
_tablet_multi_get_rpcthat could cause use-after-free. #70657 - Partial manifest cache writes in the Iceberg
ManifestReaderthat could result in incomplete cache entries and incorrect scan behavior. #70652 - A crash in
array_map()when processing arrays that contain null literal elements. #70629 - A ...
4.1.0
4.1.0
Release Date: April 13, 2026
Shared-data Architecture
-
New Multi-Tenant Data Management
Shared-data clusters now support opt-in range-based data distribution with automatic tablet splitting. When enabled via
enable_range_distribution = true(defaultfalse), tablets that exceed the configured size threshold (tablet_reshard_target_size, default 10 GB) are automatically split — without requiring schema changes, SQL modifications, or data re-ingestion. Tablet merge is also implemented and ships behind a separate config flag (tablet_reshard_enable_tablet_merge, defaultfalse); broader default-on rollout follows in subsequent releases. This feature significantly improves usability and directly addresses data skew and hotspot issues in multi-tenant workloads. #65199 #66342 #67056 #67386 #68342 #68569 #66743 #67441 #68497 #68591 #66672 #69155 -
Large-Capacity Tablet Support
Supports significantly larger per-tablet data capacity for shared-data clusters, with a long-term target of 100 GB per tablet. Enables parallel Compaction and parallel MemTable finalization within a single Lake tablet, reducing ingestion and Compaction overhead as tablet size grows. #66424 #66522 #66778 #66586 #67432 #67478 #67554 #66796 #67392 #67878 #65908 #68677 #68123 #69865
-
Fast Schema Evolution V2
Shared-data clusters now support Fast Schema Evolution V2, which enables second-level DDL execution for schema operations, and further extends the support to materialized views. #65726 #66774 #67915
-
[Beta] Inverted Index on shared-data
Enables built-in inverted indexes for shared-data clusters to accelerate text filtering and full-text search workloads. #66541
-
Cache Observability
Query-level cache hit ratio is now exposed in audit logs and the monitoring system for better cache transparency and latency diagnosis. Additional Data Cache metrics include memory and disk quota usage, and page cache statistics. #63964
-
Added segment metadata filter for Lake tables to skip irrelevant segments based on sort key range during scans, reducing I/O for range-predicate queries. #68124
-
Supports fast cancel for Lake DeltaWriter, reducing latency for cancelled ingestion jobs in shared-data clusters. #68877
-
Added support for interval-based scheduling for automated cluster snapshots. #67525
-
Supports pipeline execution for MemTable flush and merge, improving ingestion throughput for cloud-native tables in shared-data clusters. #67878
-
Supports
dry_runmode for repairing cloud-native tables, allowing users to preview repair actions before execution. #68494 -
Added a thread pool for publish transactions in shared-nothing clusters, improving publish throughput. #67797
Data Lake Analytics
-
Iceberg DELETE Support
Supports writing position delete files for Iceberg tables, enabling DELETE operations on Iceberg tables directly from StarRocks. The support covers the full pipeline of Plan, Sink, Commit, and Audit. #67259 #67277 #67421 #67567
-
TRUNCATE for Hive and Iceberg Tables
Supports TRUNCATE TABLE on external Hive and Iceberg tables. #64768 #65016
-
Incremental materialized view on Iceberg
Extends the support for incremental materialized view refresh to Iceberg append-only tables, enabling query acceleration without full table refresh. #65469 #62699
-
VARIANT Type for Semi-Structured Data in Iceberg
Supports the VARIANT data type in Iceberg Catalog for flexible, schema-on-read storage and querying of semi-structured data. Supports read, write, type casting, and Parquet integration. #63639 #66539
-
Iceberg v3 Support
Added support for Iceberg v3 default value feature and row lineage. #69525 #69633
-
Iceberg Table Maintenance Procedures
Added support for
rewrite_manifestsprocedure and extendedexpire_snapshotsandremove_orphan_filesprocedures with additional arguments for finer-grained table maintenance. #68817 #68898 -
Iceberg
$propertiesMetadata TableAdded support for querying Iceberg table properties via the
$propertiesmetadata table. #68504 -
Supports reading file path and row position metadata columns from Iceberg tables. #67003
-
Supports reading
_row_idfrom Iceberg v3 tables, and supports global late materialization for Iceberg v3. #62318 #64133 -
Supports creating Iceberg views with custom properties, and displays properties in SHOW CREATE VIEW output. #65938
-
Supports querying Paimon tables with a specific branch, tag, version, or timestamp. #63316
-
Supports complex types (ARRAY, MAP, STRUCT) for Paimon tables. #66784
-
Supports Paimon views. #56058
-
Supports TRUNCATE for Paimon tables. #67559
-
Supports Partition Transforms with parentheses syntax when creating Iceberg tables. #68945
-
Supports ALTER TABLE REPLACE PARTITION COLUMN for Iceberg tables. #70508
-
Supports Iceberg global shuffle based on Transform Partition for improved data organization. #70009
-
Supports dynamically enabling global shuffle for Iceberg table sink. #67442
-
Introduced a Commit queue for Iceberg table sink to avoid concurrent Commit conflicts. #68084
-
Added host-level sorting for Iceberg table sink to improve data organization and reading performance. #68121
-
Enabled additional optimizations in ETL execution mode by default, improving performance for INSERT INTO SELECT, CREATE TABLE AS SELECT, and similar batch operations without explicit configuration. #66841
-
Added commit audit information for INSERT and DELETE operations on Iceberg tables. #69198
-
Supports enabling or disabling view endpoint operations in Iceberg REST Catalog. #66083
-
Optimized cache lookup efficiency in CachingIcebergCatalog. #66388
-
Supports EXPLAIN on various Iceberg catalog types. #66563
-
Supports partition projection for tables in AWS Glue Catalog tables. #67601
-
Added resource share type support for AWS Glue
GetDatabasesAPI. #69056 -
Supports Azure ABFS/WASB path mapping with endpoint injection (
azblob/adls2). #67847 -
Added a database metadata cache for JDBC catalog to reduce re...
3.5.15
Behavior Changes
- Improved
sql_modehandling: whenDIVISION_BY_ZEROorFAIL_PARSE_DATEmode is set, division by zero and date parse failures instr_to_date/str2datenow return an error instead of being silently ignored. #70004 - When
sql_modeis set toFORBID_INVALID_DATE, invalid dates inINSERT VALUESclauses are now correctly rejected instead of being bypassed. #69803 - Expression partition generated columns are now hidden from
DESCandSHOW CREATE TABLEoutput. #69793 - Client ID is no longer included in audit logs. #69383
- The
FORCEoption forREFRESH EXTERNAL TABLEhas been reverted and is no longer supported. #70428
Improvements
- Allowed disabling split and reverse scan ranges for descending TopN by setting
desc_hint_split_rangeto0or less. #70307 information_schemanow shows comments for external catalog tables. #70197- Added
EXPLAINandEXPLAIN ANALYZEsupport forINSERTstatements in Trino dialect. #70174 - Added configurable parameters for
CatalogRecycleBinto control recycle bin behavior. #69838 - Improved
ADMIN REPAIR TABLEandSHOW TABLET STATUSto provide better repair and status information. #69656 - Blacklisted queries are now excluded from error metrics. #69621
- Added support for
SHOW TABLET STATUSfor cloud-native tablets in shared-data deployments. #69616 - Reduced overhead of Primary Key tablet statistics collection in shared-data clusters. #69548
- Added support for dynamic configuration of the execution state report thread pool size. #69142
Bug Fixes
Fixed the following bugs:
- Data version not set when restoring a tablet. #70373
- Table comment not set when creating a Hive table. #70318
- Constant folding with double precision arithmetic producing
INFinstead of returning an error. #70309 - Iceberg materialized view refresh failing when snapshot timestamps are non-monotonic. #70382
toIcebergTablefunction usingcommoninstead ofcommentin property mapping. #70267- Root user not correctly bypassing Ranger permission checks in all scenarios. #70254
AuditEventProcessorthread exiting unexpectedly when anOutOfMemoryExceptionoccurs. #70206- Out-of-bounds access in
cal_new_base_versionduring schema change publish. #70132 - Partition predicates pruned unexpectedly due to type mismatch in boundary comparison. #70097
str_to_datelosing microsecond precision in BE runtime. #70068- Crash in join spill process when
set_callback_functionis called. #70030 - DCHECK failure in
DeltaWriter::close()when called from a bthread context. #69960 - Use-after-free race condition in
AsyncDeltaWriterclose/finish lifecycle. #69940 - Journal replay not awaited in
changeCatalogDbon follower FE, causing consistency issues. #69834 - Race condition causing missed write transaction finished editlog. #69899
- Several known CVEs addressed. #69863
- Incorrect LIKE pattern matching with backslash escape sequences. #69775
- Expression analysis failing after renaming a partition column. #69771
- Use-after-free crash in
AsyncDeltaWriter::close. #69770 - Potential bugs in
PartitionColumnMinMaxRewriteRulecaused by incorrectPartition.hasStorageDataresults. #69751 - Duplicated CSV compression suffix in file sink output file names. #69749
- Lake
capture_tablet_and_rowsetsoperation accessible without experimental config flag. #69748 - Corrupted cache for Primary Key SST tables. #69693
- Use-after-free in
AsyncFlushOutputStream. #69688 - Incorrect retention clock reset and incomplete scan in
disableRecoverPartitionWithSameName. #69677 - Tablet info not fetched correctly based on run mode in
SchemaBeTabletsScanner. #69645 - Incorrect minimum partition pruning with shadow partitions. #69641
- Different transactions publishing the same version after graceful exit. #69639
- Iterator undefined behavior in
get_column_valueswhenrssidis not found. #69617 KILL ANALYZEstatement sometimes not stopping a runningANALYZE TABLEoperation. #69592- Materialized view force refresh bugs for partition tables. #69488