mysql 性能下降 拆表,MySQL插入性能在大表上下降

I'm working with a huge table which has 250+ million rows. The schema is simple.

CREATE TABLE MyTable (

id BIGINT PRIMARY KEY AUTO_INCREMENT,

oid INT NOT NULL,

long1 BIGINT NOT NULL,

str1 VARCHAR(30) DEFAULT NULL,

str2 VARCHAR(30) DEFAULT NULL,

str2 VARCHAR(200) DEFAULT NULL,

str4 VARCHAR(50) DEFAULT NULL,

int1 INT(6) DEFAULT NULL,

str5 VARCHAR(300) DEFAULT NULL,

date1 DATE DEFAULT NULL,

date2 DATE DEFAULT NULL,

lastUpdated TIMESTAMP NOT NULL,

hashcode INT NOT NULL,

active TINYINT(1) DEFAULT 1,

KEY oid(oid),

KEY lastUpdated(lastUpdated),

UNIQUE KEY (hashcode, active),

KEY (active)

) ENGINE=InnoDB DEFAULT CHARSET=utf8 MAX_ROWS=1000000000;

The performance of insert has dropped significantly. Upto 150 million rows in the table, it used to take 5-6 seconds to insert 10,000 rows. Now it has gone up by 2-4 times. Innodb's ibdata file has grown to 107 GB. Innodb configuration parameters are as follows.

innodb_buffer_pool_size = 36G # Machine has 48G memory

innodb_additional_mem_pool_size = 20M

innodb_data_file_path = ibdata1:10M:autoextend

innodb_log_file_size = 50M

innodb_log_buffer_size = 20M

innodb_log_files_in_group=2

innodb_flush_log_at_trx_commit = 1

innodb_lock_wait_timeout = 50

innodb_thread_concurrency = 8

innodb_flush_method = O_DIRECT

expire_logs_days = 4

IO wait time has gone up as seen with top. I have tried changing the flush method to O_DSYNC, but it didn't help. The disk is carved out of hardware RAID 10 setup. In an earlier setup with single disk, IO was not a problem.

Is partitioning the table only option? Can splitting single 100G file into "smaller" files help? Are there any variables that need to be tuned for RAID?

Update: This is a test system. I have the freedom to make any changes required.

解决方案

You didn't say whether this was a test system or production; I'm assuming it's production.

It is likely that you've got the table to a size where its indexes (or the whole lot) no longer fits in memory.

This means that InnoDB must read pages in during inserts (depending on the distribution of your new rows' index values). Reading pages (random reads) is really slow and needs to be avoided if possible.

Partitioning seems like the most obvious solution, but MySQL's partitioning may not fit your use-case.

You should certainly consider all possible options - get the table on to a test server in your lab to see how it behaves.

Your primary key looks to me as if it's possibly not required (you have another unique index), so eliminating that is one option.

Also consider the innodb plugin and compression, this will make your innodb_buffer_pool go further.

You really need to analyse your use-cases to decide whether you actually need to keep all this data, and whether partitioning is a sensible solution.

Making any changes on this application are likely to introduce new performance problems for your users, so you want to be really careful here. If you find a way to improve insert performance, it is possible that it will reduce search performance or performance of other operations. You will need to do a thorough performance test on production-grade hardware before releasing such a change.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值