很快乐向大家发表,StoneDB-5.7-V1.0.4 版本明天正式公布了! 自三月份公布 1.0.3-GA 版本后,咱们的研发同学把大量的精力投入到了 1.0.4 版本的研发中,在本次版本中,咱们对 StoneDB 的稳定性做了大幅的优化晋升,新增了一些实用个性并修复了一批已知Bug,欢送大家返回 Github/Gitee 下载体验:

Github:

https://github.com/stoneatom/stonedb/releases/tag/5.7-v1.0.4-alpha

Gitee:

https://gitee.com/StoneDB/stonedb/releases/tag/5.7-v1.0.4-alpha

当然,从上游讯息和将来趋势上看,MySQL 5.7 版本的生命周期曾经靠近序幕(存量市场是否会被疾速迭代有待察看,不过增量市场势必会用新、用好、用低成本、用高效能),所以,StoneDB 团队在过来的一年里除了踊跃做 5.7 版本的存量市场,咱们其实很早就开始布局了 8.0 的版本布局,在往年的 6 月初,咱们就顺利地公布了 StoneDB-8.0-V1.0.1 版本,后续的研发重点也会逐步以 8.0 为主代替 5.7 的骨干开发地位,同步上游,继续加强 AP 能力,趁势而行,满足更多的增量市场需求。以下,是本次版本的公布日志:

Release Notes for StoneDB-5.7-V1.0.4-alpha

稳定性

  1. 修复在导入数据时候,增量数据导致的 crash(「#1805」)
  2. 修复在 union all 字句后果集导致的 crash(「#1875」)
  3. 修复在大数据量状况下应用聚合函数导致的 crash(「#1855」)
  4. 修复主从复制下的内存溢出导致的 crash(「#1549」)

新个性

2.1  反对 insert/update ignore 语法个性

当更新 Tianmu 时候,对于主键抵触的记录将被跳过,而后执行后续的更新操作。例如:

CREATE TABLE t1  (id int(11) NOT NULL auto_increment,parent_id int(11) DEFAULT '0' NOT NULL,level tinyint(4)  DEFAULT '0' NOT NULL, PRIMARY KEY (id)) engine=tianmu;  INSERT INTO t1 VALUES (3,1,1),(4,1,1);

执行 update ignore t1 set id=id+1; 语句会疏忽  PK=3  的更新,因为更新后的主键会与  PK=4 抵触。继续执行 PK=4 的更新,更新后 PK=5。

mysql>  CREATE TABLE t1  (id int(11) NOT NULL auto_increment,  parent_id int(11) DEFAULT '0' NOT NULL,  level tinyint(4)      ->  DEFAULT '0' NOT NULL, PRIMARY KEY (id)) engine=tianmu;  Query OK, 0 rows affected (0.01 sec)    mysql>  INSERT INTO t1 VALUES (3,1,1),(4,1,1);  Query OK, 2 rows affected (0.01 sec)  Records: 2  Duplicates: 0  Warnings: 0    mysql> update t1 set id=id+1;  ERROR 1062 (23000): Duplicate entry '4' for key 'PRIMARY'  mysql> select * from t1;  +----+-----------+-------+  | id | parent_id | level |  +----+-----------+-------+  |  3 |         1 |     1 |  |  4 |         1 |     1 |  +----+-----------+-------+  2 rows in set (0.00 sec)    mysql> update ignore t1 set id=id+1;  Query OK, 2 rows affected (0.00 sec)  Rows matched: 2  Changed: 2  Warnings: 0    mysql> select * from t1;  +----+-----------+-------+  | id | parent_id | level |  +----+-----------+-------+  |  3 |         1 |     1 |  |  5 |         1 |     1 |  +----+-----------+-------+  2 rows in set (0.00 sec)

2.2 ROW 格局反对 Load 语句转换为 write row

当 StoneDB 作为主机时候,Load 语句将以 insert into 的形式被写进 binlog。

/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;  /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;  DELIMITER /*!*/;  # at 4  #230630 10:50:51 server id 1 end_log_pos 123 CRC32 0x050a2c27 Start: binlog v 4, server v 5.7.36-StoneDB-v1.0.1.42e5a3ad4 created 230630 10:50:51 at startup  # Warning: this binlog is either in use or was not closed properly.  ROLLBACK/*!*/;  BINLOG '  C0OeZA8BAAAAdwAAAHsAAAABAAQANS43LjM2LVN0b25lREItdjEuMC4xLjQyZTVhM2FkNAAAAAAA  AAAAAAAAAAAAAAAAAAALQ55kEzgNAAgAEgAEBAQEEgAAXwAEGggAAAAICAgCAAAACgoKKioAEjQA  AScsCgU=  '/*!*/;  # at 123  #230630 10:50:51 server id 1 end_log_pos 154 CRC32 0x3407f97c Previous-GTIDs  # [empty]  # at 154  #230630 10:50:51 server id 1 end_log_pos 219 CRC32 0x1631cab7 Anonymous_GTID last_committed=0 sequence_number=1 rbr_only=no  SET @@SESSION.GTID_NEXT= 'ANONYMOUS'/*!*/;  # at 219  #230630 10:50:51 server id 1 end_log_pos 334 CRC32 0x1b721a4f Query thread_id=2 exec_time=0 error_code=0  use `test`/*!*/;  SET TIMESTAMP=1688093451/*!*/;  SET @@session.pseudo_thread_id=2/*!*/;  SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/;  SET @@session.sql_mode=1436549152/*!*/;  SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;  /*!\C latin1 *//*!*/;  SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;  SET @@session.lc_time_names=0/*!*/;  SET @@session.collation_database=DEFAULT/*!*/;  create table t1(id int, name varchar(10))  /*!*/;  # at 334  #230630 10:50:51 server id 1 end_log_pos 399 CRC32 0x092fa235 Anonymous_GTID last_committed=1 sequence_number=2 rbr_only=yes  /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;  SET @@SESSION.GTID_NEXT= 'ANONYMOUS'/*!*/;  # at 399  #230630 10:50:51 server id 1 end_log_pos 471 CRC32 0x417b2366 Query thread_id=2 exec_time=0 error_code=0  SET TIMESTAMP=1688093451/*!*/;  BEGIN  /*!*/;  # at 471  #230630 10:50:51 server id 1 end_log_pos 519 CRC32 0x563c6d07 Table_map: `test`.`t1` mapped to number 108  # at 519  #230630 10:50:51 server id 1 end_log_pos 580 CRC32 0x99df1dba Write_rows: table id 108 flags: STMT_END_F  BINLOG '  C0OeZBMBAAAAMAAAAAcCAAAAAGwAAAAAAAEABHRlc3QAAnQxAAIDDwIKAAMHbTxW  C0OeZB4BAAAAPQAAAEQCAAAAAGwAAAAAAAEAAgAC//wBAAAAB0FBQUFBQUH8AgAAAAdCQkJCQkJC  uh3fmQ==  '/*!*/;  ### INSERT INTO `test`.`t1`  ### SET  ### @1=1 /* INT meta=0 nullable=1 is_null=0 */  ### @2='AAAAAAA' /* VARSTRING(10) meta=10 nullable=1 is_null=0 */  ### INSERT INTO `test`.`t1`  ### SET  ### @1=2 /* INT meta=0 nullable=1 is_null=0 */  ### @2='BBBBBBB' /* VARSTRING(10) meta=10 nullable=1 is_null=0 */  # at 580  #230630 10:50:51 server id 1 end_log_pos 611 CRC32 0x8ee952db Xid = 3  COMMIT/*!*/;  # at 611  #230630 10:50:51 server id 1 end_log_pos 676 CRC32 0x5d2a5859 Anonymous_GTID last_committed=2 sequence_number=3 rbr_only=no  SET @@SESSION.GTID_NEXT= 'ANONYMOUS'/*!*/;  # at 676  #230630 10:50:51 server id 1 end_log_pos 791 CRC32 0x929d7148 Query thread_id=2 exec_time=0 error_code=0  SET TIMESTAMP=1688093451/*!*/;  DROP TABLE `t1` /* generated by server */  /*!*/;  SET @@SESSION.GTID_NEXT= 'AUTOMATIC' /* added by mysqlbinlog */ /*!*/;  DELIMITER ;  # End of log file  /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;  /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;

2.3  反对  AggregatorGroupConcat  函数

mysql> select GROUP_CONCAT(t.id) from sequence t;  +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+  | GROUP_CONCAT(t.id)                                                                                                                                                                         |  +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+  | 3000000000010000,3000000000010001,3000000000010002,3000000000010003,3000000000010004,3000000000010005,3000000000010006,3000000000010007,3000000000010008,3000000000010009,3000000000010010 |  +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+  1 row in set (0.01 sec)

2.4  反对  uion/union all  中应用  select 111  或者  select 111 from dual  场景

mysql>  select id from tt union all select 2222 c1 from dual;  +------+  | id   |  +------+  | 1111 |  | 2222 |  +------+    mysql>  select id from tt union all select 2222 ;  +------+  | id   |  +------+  | 1111 |  | 2222 |  +------+    -- PS:select 111( from dual) 呈现地位非第一子句地位

其余  Bug fixs

  1. 修复主备场景下,新增列默认值问题(「#1187」)
  2. 修复 derived table 中应用 case...when... 后果集不正确问题(「#1784」)
  3. 修复类型为 TIME 时候,位操作时因为精度失落导致后果不正确问题(「#1173」)
  4. 修复类型为 BIGINT 时候,因为类型溢出导致查问后果不正确问题(「#1564」)
  5. 修复当过滤条件为十六进制时候,后果不正确问题(「#1625」)
  6. 修复应用 load 命令导入数据时候,表上缺省值未失效问题(「#1865」)
  7. 批改 load 命令默认字段分隔符,使其与 MySQL 行为统一(「#1609」)
  8. 修复因为元数据异样导致,查问谬误(「#1822」)
  9. 修复主动提交被敞开导致数据无奈写入的问题(「#1510」)
  10. 晋升 GitHub 上 MTR 稳定性,欠缺代码覆盖率测试流程。

反对平台

  • CentOS 7.6  以上
  • Ubuntu 20

<p align=center><img src="https://p6-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/c86ac5bbf63146e3ac3ce67ed2f64f2c~tplv-k3u1fbpfcp-watermark.image?" alt="image.png" />退出StoneDB社区</p>

Github: https://github.com/stoneatom/stonedb

Gitee: https://gitee.com/StoneDB/stonedb

社区官网: https://stonedb.io/

哔哩哔哩: https://space.bilibili.com/1154290084

Twitter: https://twitter.com/StoneDataBase

Linkedin: https://www.linkedin.com/in/stonedb/