Starrocks

Latest version: v1.2.2

Safety actively analyzes 723954 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 22

3.2.0rc01

Release date: November 15, 2023

New Features
Shared-data cluster
- Supports [the persistent index for Primary Key tables](../table_design/table_types/primary_key_table.md) on local disks.
- Supports the even distribution of Data Cache among multiple local disks.

Data Lake Analytics
- Supports creating and dropping databases and managed tables in [Hive catalogs](../data_source/catalog/hive_catalog.md), and supports exporting data to Hive's managed tables using INSERT or INSERT OVERWRITE.
- Supports [Unified Catalog](../data_source/catalog/unified_catalog.md), with which users can access different table formats (Hive, Iceberg, Hudi, and Delta Lake) that share a common metastore like Hive metastore or AWS Glue.

Storage engine, data ingestion, and export
- Added the following features of loading with the table function [FILES()](../sql-reference/sql-functions/table-functions/files.md):
- Loading Parquet and ORC format data from Azure or GCP.
- Extracting the value of a key/value pair from the file path as the value of a column using the parameter `columns_from_path`.
- Loading complex data types including ARRAY, JSON, MAP, and STRUCT.
- Supports the dict_mapping column property, which can significantly facilitate the loading process during the construction of a global dictionary, accelerating the exact COUNT DISTINCT calculation.
- Supports unloading data from StarRocks to Parquet-formatted files stored in AWS S3 or HDFS by using INSERT INTO FILES. For detailed instructions, see [Unload data using INSERT INTO FILES](../unloading/unload_using_insert_into_files.md).

SQL reference
Added the following functions:
- String functions: substring_index, url_extract_parameter, url_encode, url_decode, and translate
- Date functions: dayofweek_iso, week_iso, quarters_add, quarters_sub, milliseconds_add, milliseconds_sub, date_diff, jodatime_format, str_to_jodatime, to_iso8601, to_tera_date, and to_tera_timestamp
- Pattern matching function: regexp_extract_all
- hash function: xx_hash3_64
- Aggregate functions: approx_top_k
- Window functions: cume_dist, percent_rank and session_number
- Utility functions: dict_mapping and get_query_profile

Privileges and security
StarRocks supports access control through Apache Ranger, providing a higher level of data security and allowing the reuse of existing Ranger Service of external data sources. After integrating with Apache Ranger, StarRocks enables the following access control methods:
- When accessing internal tables, external tables, or other objects in StarRocks, access control can be enforced based on the access policies configured for the StarRocks Service in Ranger.
- When accessing an external catalog, access control can also leverage the corresponding Ranger service of the original data source (such as Hive Service) to control access (currently, access control for exporting data to Hive is not yet supported).

For more information, see [Manage permissions with Apache Ranger](../administration/ranger_plugin.md).

Improvements
Materialized View
Asynchronous materialized view
- Creation:
Supports automatic refresh for an asynchronous materialized view created upon views or materialized views when schema changes occur on the views, materialized views, or their base tables.
- Observability:
Supports Query Dump for asynchronous materialized views.
- The Spill to Disk feature is enabled by default for the refresh tasks of asynchronous materialized views, reducing memory consumption.
- Data consistency:
- Added the property `query_rewrite_consistency` for asynchronous materialized view creation. This property defines the query rewrite rules based on the consistency check.
- Add the property `force_external_table_query_rewrite` for external catalog-based asynchronous materialized view creation. This property defines whether to allow force query rewrite for asynchronous materialized views created upon external catalogs.
For detailed information, see [CREATE MATERIALIZED VIEW](../sql-reference/sql-statements/data-definition/CREATE_MATERIALIZED_VIEW.md).
- Added a consistency check for materialized views' partitioning key.
When users create an asynchronous materialized view with window functions that include a PARTITION BY expression, the partitioning column of the window function must match that of the materialized view.

Storage engine, data ingestion, and export
- Optimized the persistent index for Primary Key tables by improving memory usage logic while reducing I/O read and write amplification. [24875](https://github.com/StarRocks/starrocks/pull/24875) [#27577](https://github.com/StarRocks/starrocks/pull/27577) [#28769](https://github.com/StarRocks/starrocks/pull/28769)
- Supports data re-distribution across local disks for Primary Key tables.
- Partitioned tables support automatic cooldown based on the partition time range and cooldown time. For detailed information, see [Set initial storage medium and automatic storage cooldown time](../sql-reference/sql-statements/data-definition/CREATE_TABLE.mdspecify-initial-storage-medium-automatic-storage-cooldown-time-replica-number).
- The Publish phase of a load job that writes data into a Primary Key table is changed from asynchronous mode to synchronous mode. As such, the data loaded can be queried immediately after the load job finishes. For detailed information, see [enable_sync_publish](../administration/Configuration.mdenable_sync_publish).

Query
- Optimized StarRocks' compatibility with Metabase and Superset. Supports integrating them with external catalogs.

SQL Reference
- array_agg supports the keyword DISTINCT.

Developer tools
- Supports Trace Query Profile for asynchronous materialized views, which can be used to analyze its transparent rewrite.
Compatibility Changes

Parameters
- Added new parameters for Data Cache.

Bug Fixes
Fixed the following issues:
- BEs crash when libcurl is invoked. [31667](https://github.com/StarRocks/starrocks/pull/31667)
- Schema Change may fail if it takes an excessive period of time, because the specified tablet version is handled by garbage collection. [31376](https://github.com/StarRocks/starrocks/pull/31376)
- Failed to access the Parquet files in MinIO or AWS S3 via file external tables. [29873](https://github.com/StarRocks/starrocks/pull/29873)
- The ARRAY, MAP, and STRUCT type columns are not correctly displayed in `information_schema.columns`. [33431](https://github.com/StarRocks/starrocks/pull/33431)
- `DATA_TYPE` and `COLUMN_TYPE` for BINARY or VARBINARY data types are displayed as `unknown` in the `information_schema.columns` view. [32678](https://github.com/StarRocks/starrocks/pull/32678)

3.1.17

Release Date: January 3, 2025

Bug Fixes

Fixed the following issues:

- Cross-cluster Data Migration Tool caused the Follower FE to crash during data synchronization and commit, due to not accounting for the deletion of partitions in the target cluster. [54061](https://github.com/StarRocks/starrocks/pull/54061)
- BE in the target cluster might crash when synchronizing tables with DELETE operations using Cross-cluster Data Migration Tool. [54081](https://github.com/StarRocks/starrocks/pull/54081)
- A bug in the BDBJE handshake mechanism where Leader FE would reject reconnection attempts from Follower FE when connection is being re-established, causing Follower FE nodes to exit. [50412](https://github.com/StarRocks/starrocks/pull/50412)
- Duplicate memory statistics in FE leads to excessive memory usage. [53055](https://github.com/StarRocks/starrocks/pull/53055)
- The statuses of the asynchronous materialized view refresh tasks are inconsistent across multiple FE nodes, which lead to inaccurate states of the materialized view during queries. [54236](https://github.com/StarRocks/starrocks/pull/54236)

3.1.16

Release date: December 16, 2024

Improvements

- Optimized table-related statistics. [50316](https://github.com/StarRocks/starrocks/pull/50316)

Bug Fixes

Fixed the following issues:

- Insufficient granularity in error code handling for disk full scenarios caused the BE to mistakenly identify disk errors and delete data. [51411](https://github.com/StarRocks/starrocks/pull/51411)
- Stream Load failures when submitted using HTTP 1.0. [53010](https://github.com/StarRocks/starrocks/pull/53010) [#53008](https://github.com/StarRocks/starrocks/pull/53008)
- Routine Load tasks were canceled due to expired transactions (now tasks are canceled only if the database or table no longer exists and paused when transactions expired). [50334](https://github.com/StarRocks/starrocks/pull/50334)
- Unloading data using `EXPORT` with Broker to `file://` resulted in a file rename error, causing the export to fail. [52544](https://github.com/StarRocks/starrocks/pull/52544)
- If the join condition in an equal-join is an expression based on a low-cardinality column, the system may incorrectly push down a Runtime Filter predicate, leading to a BE crash. [50690](https://github.com/StarRocks/starrocks/pull/50690)

3.1.15

Release date: September 4, 2024

Bug Fixes

Fixed the following issues:

- During query rewrite with asynchronous materialized views, `count(*)` on certain tables returns NULL. [49288](https://github.com/StarRocks/starrocks/pull/49288)
- `partition_linve_nubmer` does not take effect. [49213](https://github.com/StarRocks/starrocks/pull/49213)
- FE throws a tablet exception: BE disk offline, and cannot migrate tablets. [47833](https://github.com/StarRocks/starrocks/pull/47833)

3.1.14

Release date: July 29, 2024

Improvements

- Stream Load now supports using `\t` and `\n` as row and column delimiters. Users do not need to convert them to their hexadecimal ASCII codes. [47302](https://github.com/StarRocks/starrocks/pull/47302)

Bug Fixes

Fixed the following issues:

- Frequent INSERT and UPDATE operations on Primary Key tables may cause write and query delays in the database. [47838](https://github.com/StarRocks/starrocks/pull/47838)
- When a Primary Key table encounters data persistence failures, the persistent index may fail to capture the error, leading to data loss and reporting the error "Insert found duplicate key". [48045](https://github.com/StarRocks/starrocks/pull/48045)
- Materialized views may report insufficient permissions when refreshed. [47561](https://github.com/StarRocks/starrocks/pull/47561)
- Materialized view reports the error "For input string" when refreshed. [46131](https://github.com/StarRocks/starrocks/pull/46131)
- During materialized view refresh, the lock is held excessively long, causing the Leader FE to be restarted by the deadlock detection script. [48256](https://github.com/StarRocks/starrocks/pull/48256)
- Queries against views with the IN clause in its definition may return inaccurate results. [47484](https://github.com/StarRocks/starrocks/pull/47484)
- Global Runtime Filter causes incorrect results. [48496](https://github.com/StarRocks/starrocks/pull/48496)
- MySQL protocol `COM_CHANGE_USER` does not support `conn_attr`. [47796](https://github.com/StarRocks/starrocks/pull/47796)

Behavior Changes

- When users create a non-partitioned table without specifying the bucket number, the minimum bucket number the system sets for the table is `16` (instead of `2` based on the formula `2*BE or CN count`). If users want to set a smaller bucket number when creating a small table, they must set it explicitly. [47005](https://github.com/StarRocks/starrocks/pull/47005)

3.1.13

Release date: June 26, 2024

Improvements

- The Broker process supports access to Tencent Cloud COS Posix buckets. Users can load data from COS Posix buckets using Broker Load or unload data to COS Posix buckets using the SELECT INTO OUTFILE statement. [46597](https://github.com/StarRocks/starrocks/pull/46597)
- Supports viewing comments of Hive tables in Hive Catalogs using SHOW CREATE TABLE. [37686](https://github.com/StarRocks/starrocks/pull/37686)
- Optimized the evaluation time of Conjunct in WHERE clauses, such as multiple LIKE clauses on the same column or CASE WHEN expressions. [46914](https://github.com/StarRocks/starrocks/pull/46914)

Bug Fixes

Fixed the following issues:

- DELETE statements fail in shared-data clusters if there are excessive number of partitions to be deleted. [46229](https://github.com/StarRocks/starrocks/pull/46229)

Page 6 of 22

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.