TiDB 3.0 Beta Release Notes
On January 19, 2019, TiDB 3.0 Beta is released. The corresponding TiDB Ansible 3.0 Beta is also released. TiDB 3.0 Beta builds on TiDB 2.1 with an added focus in stability, the SQL optimizer, statistics, and the execution engine.
TiDB
- New Features
- Support Views
- Support Window Functions
- Support Range Partitioning
- Support Hash Partitioning
- SQL Optimizer
- Re-support the optimization rule of
AggregationElimination#7676 - Optimize the
NOT EXISTSsubquery and convert it to Anti Semi Join #7842 - Add the
tidb_enable_cascades_plannervariable to support the new Cascades optimizer. Currently, the Cascades optimizer is not yet fully implemented and is turned off by default #7879 - Support using Index Join in transactions #7877
- Optimize the constant propagation on the Outer Join, so that the filtering conditions related to the Outer table in the Join result can be pushed down through the Outer Join to the Outer table, reducing the useless calculation of the Outer Join and improving the execution performance #7794
- Adjust the optimization rule of Projection Elimination to the position after the Aggregation Elimination, to avoid redundant
Projectoperators #7909 - Optimize the
IFNULLfunction and eliminate this function when the input parameter has a non-NULL attribute #7924 - Support Range for
_tidb_rowidconstruction queries, to avoid full table scan and reduce cluster stress #8047 - Optimize the
INsubquery to do the Inner Join after the aggregation, and add thetidb_opt_insubq_to_join_and_aggvariable to control whether to enable this optimization rule and open it by default #7531 - Support using subqueries in the
DOstatement #8343 - Add the optimization rule of Outer Join elimination to reduce unnecessary table scan and Join operations and improve execution performance #8021
- Modify the Hint behavior of the
TIDB_INLJoptimizer, and the optimizer will use the table specified in Hint as the Inner table of Index Join #8243 - Use
PointGetin a wide range so that it can be used when the execution plan cache of thePreparestatement takes effect #8108 - Introduce the greedy
Join Reorderalgorithm to optimize the join order selection when joining multiple tables #8394 - Support View #8757
- Support Window Function #8630
- Return warning to the client when
TIDB_INLJis not in effect, to enhance usability #9037 - Support deducing the statistics for filtered data based on filtering conditions and table statistics #7921
- Improve the Partition Pruning optimization rule of Range Partition #8885
- Re-support the optimization rule of
- SQL Executor
- Optimize the
Merge Joinoperator to support the emptyONcondition #9037 - Optimize the log and print the user variables used when executing the
EXECUTEstatement #7684 - Optimize the log to print slow query information for the
COMMITstatement #7951 - Support the
EXPLAIN ANALYZEfeature to make the SQL tuning process easier #7827 - Optimize the write performance of wide tables with many columns #7935
- Support
admin show next_row_id#8242 - Add the
tidb_init_chunk_sizevariable to control the size of the initial Chunk used by the execution engine #8480 - Improve
shard_row_id_bitsand cross-check the auto-increment ID #8936
- Optimize the
PrepareStatement- Prohibit adding the
Preparestatement containing subqueries to the query plan cache to guarantee the query plan is correct when different user variables are input #8064 - Optimize the query plan cache to guarantee the plan can be cached when the statement contains non-deterministic functions #8105
- Optimize the query plan cache to guarantee the query plan of
DELETE/UPDATE/INSERTcan be cached #8107 - Optimize the query plan cache to remove the corresponding plan when executing the
DEALLOCATEstatement #8332 - Optimize the query plan cache to avoid the TiDB OOM issue caused by caching too many plans by limiting the memory usage #8339
- Optimize the
Preparestatement to support using the?placeholder in theORDER BY/GROUP BY/LIMITclause #8206
- Prohibit adding the
- Privilege Management
- Server
- Support the
Tracefeature #9029 - Support the plugin framework #8788
- Support using
unix_socketand TCP simultaneously to connect to the database #8836 - Support the
interactive_timeoutsystem variable #8573 - Support the
wait_timeoutsystem variable #8346 - Support splitting a transaction into multiple transactions based on the number of statements using the
tidb_batch_commitvariable #8293 - Support using the
ADMIN SHOW SLOWstatement to check slow logs #7785
- Support the
- Compatibility
- Support the
ALLOW_INVALID_DATESSQL mode #9027 - Improve
LoadDatafault-tolerance for the CSV file #9005 - Support the MySQL 320 handshake protocol #8812
- Support using the unsigned
bigintcolumn as the auto-increment column #8181 - Support the
SHOW CREATE DATABASE IF NOT EXISTSsyntax #8926 - Abandon the predicate pushdown operation when the filtering condition contains a user variable to improve the compatibility with MySQL’s behavior of using user variables to mock the Window Function behavior #8412
- Support the
- DDL
Tools
- TiDB Lightning
PD
- Add
RegionStorageto store Region metadata separately #1237 - Add shuffle hot Region scheduler #1361
- Add scheduling parameter related metrics #1406
- Add cluster label related metrics #1402
- Add the importing data simulator #1263
- Fix the
Watchissue about leader election #1396
TiKV
- Support distributed GC #3179
- Check RocksDB Level 0 files before applying snapshots to avoid Write Stall #3606
- Support reverse
raw_scanandraw_batch_scan#3742 - Support using HTTP to obtain monitoring information #3855
- Support DST better #3786
- Support receiving and sending Raft messages in batch #3931
- Introduce a new storage engine Titan #3985
- Upgrade gRPC to v1.17.2 #4023
- Support receiving the client requests and sending replies in batch #4043
- Support multi-thread Apply #4044
- Support multi-thread Raftstore #4066