- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 2x 700 000 条记录插入到 InnoDB 表中,但在我看来这相当慢。
我已经尝试了几件事,但我不确定实现最有效插入方式的最佳方式是什么。
创建表sql:
DROP TABLE IF EXISTS `booking_daily_analysis`;
CREATE TABLE IF NOT EXISTS `booking_daily_analysis` (
`id` INT NOT NULL AUTO_INCREMENT,
`booking_id` INT NULL,
`action_id` INT NOT NULL,
`creative_id` INT NULL,
`position_id` INT NULL,
`profile_id` INT NULL,
`start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`end` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`hits` INT NOT NULL DEFAULT 0,
`uniqueHits` INT NOT NULL DEFAULT 0 COMMENT 'contacts van vroeger',
PRIMARY KEY (`id`,`action_id`)
#INDEX `booking_id_idx` (`booking_id` ASC),
#FOREIGN KEY (`booking_id`) REFERENCES `booking` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
#INDEX `creative_id_idx` (`creative_id` ASC),
#FOREIGN KEY (`creative_id`) REFERENCES `creative` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
#INDEX `position_id_idx` (`position_id` ASC),
#FOREIGN KEY (`position_id`) REFERENCES `position` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
#INDEX `action_id_idx` (`action_id` ASC),
#FOREIGN KEY (`action_id`) REFERENCES `action` (`id`) ON DELETE NO ACTION ON UPDATE CASCADE,
#INDEX `profile_id_idx` (`profile_id` ASC),
#FOREIGN KEY (`profile_id`) REFERENCES `profile` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
如您所见,有很多索引和外键(innoDb 需要为每个外键创建一个索引)但索引会减慢插入速度,因此我尝试在插入后通过 alter 语句添加它们:
START TRANSACTION;
alter table `booking_daily_analysis` add index `booking_id_idx` (`booking_id` ASC), add constraint `fk_booking_id` foreign key (`booking_id`) REFERENCES `booking` (`id`) on delete set null on update cascade;
alter table `booking_daily_analysis` add index `creative_id_idx` (`creative_id` ASC), add constraint `fk_creative_id` foreign key (`creative_id`) references `creative` (`id`) on delete set null on update cascade;
alter table `booking_daily_analysis` add index `position_id_idx` (`position_id` ASC), add constraint `fk_position_id` foreign key (`position_id`) references `position` (`id`) on delete set null on update cascade;
alter table `booking_daily_analysis` add index `action_id_idx` (`action_id` ASC), add constraint `fk_action_id` foreign key (`action_id`) references `action` (`id`) on delete set null on update cascade;
alter table `booking_daily_analysis` add index `profile_id_idx` (`profile_id` ASC), add constraint `fk_profile_id` foreign key (`profile_id`) references `profile` (`id`) on delete set null on update cascade;
COMMIT;
不确定是否需要交易。
在脚本的顶部,我指定了这些选项:
SET foreign_key_checks=0;
SET unique_checks=0;
底部:
SET unique_checks = 1;
SET foreign_key_checks = 1;
还有 2x 700 000 插入语句(只有 2 行)
START TRANSACTION;
insert into nrc.booking_daily_analysis (id, action_id, start, end, hits, uniqueHits, position_id, booking_id, creative_id, profile_id)
select id, 1, start, end, impressions, contacts, position_id, booking_id, creative_id, new_profile_id from adhese_nrc.temp_ad_slot_ids;
COMMIT;
START TRANSACTION;
-- Insert clicks for click action (click action is 2)
insert into nrc.booking_daily_analysis (id, action_id, start, end, hits, uniqueHits, position_id, booking_id, creative_id, profile_id)
select id, 2, start, end, clicks, 0, position_id, booking_id, creative_id, new_profile_id from adhese_nrc.temp_ad_slot_ids;
COMMIT;
如您所见,插入中的唯一区别是操作 ID (1 -> 2)。
所以我想知道,这是要走的路还是我在这里遗漏了什么?
MySQL 工作台的最新输出:
14:32:13 START TRANSACTION 0 row(s) affected 0.000 sec
14:32:13 FIRST INSERT 717718 row(s) affected Records: 717718 @ 11.263 sec
14:32:24 COMMIT 0 row(s) affected 0.020 sec
14:32:24 START TRANSACTION 0 row(s) affected 0.000 sec
14:32:24 SECOND INSERT 717718 row(s) affected Records: 717718 @ 21.268 sec
14:32:46 COMMIT 0 row(s) affected 0.011 sec
14:32:46 START TRANSACTION 0 row(s) affected 0.000 sec
14:32:46 add index `booking_id_idx` 1435436 row(s) affected Records: 1435436 @ 39.393 sec
14:33:25 add index `creative_id_idx 1435436 row(s) affected Records: 1435436 @ 68.801 sec
14:34:34 add index `position_id_idx` 1435436 row(s) affected Records: 1435436 Duplicates: 0 Warnings: 0 @ 142.877 sec
14:36:57 add index `action_id_idx` 1435436 row(s) affected Records: 1435436 Duplicates: 0 Warnings: 0 @ 162.160 sec
14:40:00 add index `profile_id_idx` 1435436 row(s) affected Records: 1435436 Duplicates: 0 Warnings: 0 @ 763.309 sec
最佳答案
This manual page还建议更改 innodb_autoinc_lock_mode
。
如果您不需要该功能,disable binary logging .
增加一些 InnoDB buffers 的大小也可以提供帮助(特别是 innodb_buffer_pool_size
)。
我认为在这种情况下使用事务是不可取的。如果需要在同一个事务中应用少量连续更改,则可以通过将这些更改合并到一个单独的写入中来优化这些更改。就您而言,我相信您只会无用地加载重做日志。
这让我想到了另一个建议:尝试一次插入较少数量的行,如下所示:
INSERT INTO destination
SELECT * FROM source LIMIT 0, 10000;
INSERT INTO destination
SELECT * FROM source LIMIT 10000, 10000; -- and so on
最后,如果您有大量可用内存,您可能希望手动将整个数据加载到一个临时内存表中,然后从该内存表中插入到您的目的地(可能是小批量):
CREATE TEMPORARY TABLE destination_tmp LIKE source;
ALTER destination_tmp ENGIN=MEMORY;
INSERT INTO destination_tmp SELECT * FROM source;
INSERT INTO destination SELECT * FROM destination_tmp;
确保 max_heap_table_size
的值足够大.
关于MySQL InnoDB : Best practice bulk insert,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17044470/
我正在开发一些用于计费的数据库项目(PHP/MySQL)。 每当创建新账单时,我想生成一个由年、周和增量编号组成的账单编号。我想用触发器来做到这一点。触发器将使用现有的账单编号来查找增量编号,或者从新
我有一个 MySQL 插入,我正在使用 RAND 生成随机 INT 值问题是它不会插入到数据库中,因为该列接受 TINYINT ,如何将输出转换为 TINYINT。代码示例如下: INSERT INT
如果我想从单个插入中保存主键 (mytable_id),我已完成以下操作: CREATE OR REPLACE FUNCTION myfunct(ownerid text) RETURNS void
为了简单起见,假设我有两个表 用户表(id,email) 用户日志表(id, date) 无论 id 被插入到 user 表中,相同的 id 也应该被插入到 user_log 表中,否则事务应该失败。
为了简单起见,假设我有两个表 用户表(id,email) 用户日志表(id, date) 无论 id 被插入到 user 表中,相同的 id 也应该被插入到 user_log 表中,否则事务应该失败。
我知道在触发器中 - 至少对于 SQL Server - 人们永远不应该假设插入的表只有一行,这意味着触发器中这样的 SQL 通常是不好的: select @UserID = ID from inse
我正在使用 bigquery 对象中的方法 tabledata().insertAll 更新行列表。执行后,返回显示没有错误。但是,我的表仍然继续,没有写入任何数据。 可能是权限问题。如果是这样,为什
这是一个扩展 F# Recursive Tree Validation 的问题,我昨天已经很好地回答了。 这个问题涉及在现有树中插入一个 child 。这是我想使用的更新类型: type Name
我有 2 个表:用户和照片(在 mysql 数据库中)。 在这里你可以看到两个表之间的关系 User Photos -------------
我试图同时在不同的表上插入两行。 子查询INSERT INTO的AUTO_INCRMENT或id的值(如果已经存在)应该写入主查询中。 目前我有这个(仅用 3 个值简化),但它不起作用。我想知道是否有
我有一个 900 万行的表,由于其庞大的规模,我正在努力处理所有这些数据。 我想做的是在不覆盖数据的情况下将 IMPORT 一个 CSV 添加到表中。 在我做这样的事情之前; INSERT if no
我正在写新闻并将其插入到我的数据库中,我在 3 年前构建了代码并且运行良好,但我不能再插入了,我不明白为什么: $insert=mysqli_query($co,"INSERT INTO articl
我正在尝试编写一个简单的 INSERT 语句来将新用户添加到数据库中,但它不起作用,这意味着,我尝试插入到表中的数据都没有被插入。几个小时以来,我一直在尝试解决此问题,但没有成功。我尝试编写插入语句的
所以我有这个表格: http://i.imgur.com/vZYssQy.png 现在 ID、First Name、Last Name、DOB、Address、Phone Number 和 Post
在控制台中运行查询(SELECT 语句)时,从数据库检索到的数据以表格格式显示在数据库控制台工具窗口的结果 Pane 中。 我已经搜索过 datagrip Help我只是想知道是否有任何方法可以用于为
每当使用触发器插入行时,我都试图将另一行插入表中,但收到以下错误消息: The target table 'EDDSDBO.Redaction' of the DML statement cannot
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 6 年前。 Improve
我有以下代码片段: $get_data = mysqli_query ($connect, "SELECT * FROM users WHERE username = '$username'");
情况:需要向 SQLite 数据库中插入大量数据。 问题:我们可以使用两个语句来插入数据 - data = [("111", "222", "333"), ("AAA", "BBB", "CCC"),
我的数据库中有一个表 Teacher: TABLE Teacher ( ID CHAR (7) NOT NULL , name
我是一名优秀的程序员,十分优秀!