Alice52 / database

ddf13ad8d4be76a80a336418b5cf5727bf6e3059
gitee.com
MIT License
0 stars 0 forks source link

[db] bluk insert #27

Closed Alice52 closed 3 years ago

Alice52 commented 3 years ago

超大数据量的插入

  1. 可以考虑使用 TokuDB 引擎
    • InnoDB需要花大概是TokuDB3-4倍时间
  2. 将 TokuDB 引擎 转换为 InnoDB 引擎
  3. mybatis 下的真批量问题
Alice52 commented 1 year ago

unique insert

  1. insert into t() values() where not exist (select * from xx);
  2. insert into t value() on duplicate key update xx=xx;