Apache Doris version 1.1.3 is officially released!

Dear community friends, we are happy to tell you that on October 17, 2022, we ushered in the official release of Apache Doris version 1.1.3 . As a bugfix version based on version 1.1 LTS, more than 80 issues or performance optimization items have been incorporated in version 1.1.3, and the system stability and performance have been further enhanced . It is recommended for all users to download and use it.

Download and use

GitHub download: https://github.com/apache/doris/releases

Official website download page: https://doris.apache.org/download

Source address: https://github.com/apache/doris/releases/tag/1.1.3-rc02

important hint

PageCache and ChunkAllocator are disabled by default to reduce memory usage, and users can re-enable them by modifying configuration items disable_storage_page_cacheand . chunk_reserved_bytes_limitStorage Page Cache and Chunk Allocator cache user data blocks and memory preallocation respectively. These two functions will occupy a certain percentage of memory and will not be released. This part of the memory usage cannot be flexibly allocated, resulting in insufficient memory for other tasks due to this part of the memory usage in some scenarios, affecting system stability and availability. So we turned off these two features by default in version 1.1.3. However, in some latency-sensitive reporting scenarios, disabling this feature may increase query latency. If the user is concerned about the impact of this function on the business after the upgrade, the following parameters can be added to be.conf to keep the behavior consistent with the previous version.

disable_storage_page_cache=false
chunk_reserved_bytes_limit=10%

disable_storage_page_cache: Whether to close Storage Page Cache. Versions before 1.1.2 (inclusive), the default is false, that is, open. Version 1.1.3 defaults to true, which is closed.

chunk_reserved_bytes_limit: Chunk Allocator reserved memory size. For versions before 1.1.2 (inclusive), the default is 10% of the overall memory. Version 1.1.3 defaults to 209715200 (200MB).

new features

  • Support for SQLServer and PostgreSQL escaped identifiers in ODBC tables
  • Support for using Parquet as export file format

Optimization and improvement

  • Optimize the Flush strategy and avoid too many small segment files #12706 #12716
  • Refactor Runtime Filter to reduce initial preparation time #13127
  • Fixed several memory control issues during query or import #12682 #12688 #12708 #12776 #12782 #12791 #12794 #12820 #12932 #12954 #12951

BUG fix

  • Fixed the problem that the Largeint type caused Core during the Compaction process #10094
  • Fixed the problem that Grouping set caused BE Core or returned incorrect results #12313
  • Fixed the orthogonal_bitmap_union_countproblem that the execution plan PREAGGREGATION displayed incorrectly when using the function #12581
  • Fixed the memory leak problem caused by Level1Iterator not being released #12592
  • Fixed the problem that decommissioning a node fails when there is a Colocation table in 2 BE #12644
  • Fixed BE Core issue caused by stack buffer overflow when TBrokerOpenReaderResponse is too large #12658
  • Fixed the problem that the BE node may OOM when there is a -238 error #12666
  • Fixed an issue with the wrong subexpression of a LEAD()function #12587 **
  • Fixed an issue where related queries failed in the row query engine code #12712
  • Fixed an CURDATE()/CURRENT_DATE()issue where functions produced incorrect results #12720
  • Fixed an lateral view explode_splitissue where the function had an incorrect result #13643
  • Fixed the problem of incorrect Bucket Shuffle Join plan in two identical tables #12930
  • Fixed an issue where the Tablet version might be wrong during update or import #13070
  • Fixed the problem that BE may cause Core when importing data with Broker under encryption function #13009

Feedback

If you have any problems upgrading to Apache Doris 1.1.3, post in the forum below, and community experts will help you locate and solve the problem faster. GitHub forum: https://github.com/apache/doris/discussions/12134

Guess you like

Origin www.oschina.net/news/213914/apache-doris-1-1-3-released