[Release Note 2.1.1](https://github.com/apache/doris/issues/32736) # Behavior Changed 1. Set the default value of the data_consistence property of EXPORT to partition to make export more stable during load. https://github.com/apache/doris/pull/32830 2. Some of mysql connector (eg, dotnet MySQL.Data) rely on variable's column type to make connection. eg, select @@autocommit should with column type BIGINT, not BIT, otherwise it will throw error. So we change column type of @@autocommit to BIGINT. https://github.com/apache/doris/pull/33282 # Upgrade Problem 1. Normal workload group is not created when upgrade from 2.0 or other old versions. https://github.com/apache/doris/pull/33197 # New Feature 1. Add processlist table in information_schema database, users could use this table to query active connections. https://github.com/apache/doris/pull/32511 2. Add a new table valued function local to allow access file system like shared storage. https://github.com/apache/doris-website/pull/494 # Optimization 1. Skip some useless process to make graceful stop more quickly in k8s env. https://github.com/apache/doris/pull/33212 3. Add rollup table name in profile to help find the mv selection problem. https://github.com/apache/doris/pull/33137 4. Add test connection function to DB2 database to allow user check the connection when create DB2 catalog. https://github.com/apache/doris/pull/33335 5. Add DNS Cache for FQDN to accelerate the connect process among BEs in k8s env. https://github.com/apache/doris/pull/32869 6. Refresh external table's rowcount async to make the query plan more stable. https://github.com/apache/doris/pull/32997 # Bugfix 1. Fix iceberg catalog of hms and hadoop do not support iceberg properties like "io.manifest.cache-enabled" to enable manifest cache in iceberg. https://github.com/apache/doris/pull/33113 2. The offset params in lead/lag function could use 0 as offset. https://github.com/apache/doris/pull/33174 3. Fix some timeout issues with load. https://github.com/apache/doris/pull/33077 https://github.com/apache/doris/pull/33260 4. Fix core problem related with array/map/struct compaction process. https://github.com/apache/doris/pull/33130 https://github.com/apache/doris/pull/33295 5. Fix runtime filter wait timeout. https://github.com/apache/doris/pull/33369 6. Fix unix_timestamp core for string input in auto partition. https://github.com/apache/doris/pull/32871
Release Note 2.1.1
Behavior Changed
data_consistenceproperty of export topartition#32830eg, select @@autocommit should with column type BIGINT, not BIT, otherwise it will throw error. So we change column type of @@autocommit to BIGINT. [fix](variables) change column type of @@autocommit to BIGINT #33282
Upgrade Problem
New Feature
Optimization
Bugfix