8.2.5.1 Optimizing INSERT Statements
To optimize insert speed, combine many small operations into a single large operation. Ideally, you make a single connection, send the data for many new rows at once, and delay all index updates and consistency checking until the very end.https://dev.mysql.com/doc/refman/8.0/en/insert-optimization.html
mysql Docs
insert 속도의 최적화를 위해
작은단위의 연산을 다량으로 엮어서, 큰 연산 하나로 만들자
(인간친화적 관점에서)이상적으로 하나의 연결로 만드는 것은
각 row에 정보를 한번에 보내고, 모든 index update와 일관성 checking을 지연시킨다(아주 오래)