mysql 5.7 海量数据,海量数据库和mysql

我们正在开展的一个新项目需要大量的数据分析,但我们发现这非常慢,我们正在寻找改变软件和/或硬件方法的方法.

我们目前正在运行亚马逊ec2实例(linux):

High-CPU Extra Large Instance

7 GB of memory

20 EC2 Compute Units (8 virtual cores with 2.5 EC2 Compute Units each)

1690 GB of instance storage

64-bit platform

I/O Performance: High

API name: c1.xlarge

processor : 7

vendor_id : GenuineIntel

cpu family : 6

model : 26

model name : Intel(R) Xeon(R) CPU E5506 @ 2.13GHz

stepping : 5

cpu MHz : 2133.408

cache size : 4096 KB

MemTotal: 7347752 kB

MemFree: 728860 kB

Buffers: 40196 kB

Cached: 2833572 kB

SwapCached: 0 kB

Active: 5693656 kB

Inactive: 456904 kB

SwapTotal: 0 kB

SwapFree: 0 kB

db的一部分是文章和实体以及链接表,例如:

mysql> DESCRIBE articles_entities;

+------------+--------------+------+-----+---------+-------+

| Field | Type | Null | Key | Default | Extra |

+------------+--------------+------+-----+---------+-------+

| id | char(36) | NO | PRI | NULL | |

| article_id | char(36) | NO | MUL | NULL | |

| entity_id | char(36) | NO | MUL | NULL | |

| created | datetime | YES | | NULL | |

| modified | datetime | YES | | NULL | |

| relevance | decimal(5,4) | YES | MUL | NULL | |

| analysers | text | YES | | NULL | |

| anchor | varchar(255) | NO | | NULL | |

+------------+--------------+------+-----+---------+-------+

8 rows in set (0.00 sec)

从下表中可以看出,我们有很多协会以每天10万的速度增长

mysql> SELECT count(*) FROM articles_entities;

+----------+

| count(*) |

+----------+

| 2829138 |

+----------+

1 row in set (0.00 sec)

像下面这样的简单查询花费了太多时间(12秒)

mysql> SELECT count(*) FROM articles_entities WHERE relevance <= .4 AND relevance > 0;

+----------+

| count(*) |

+----------+

| 357190 |

+----------+

1 row in set (11.95 sec)

我们应该考虑什么来改善查询时间?不同的DB存储?不同的硬件.

解决方法:

正如mrorigo所说,请提供SHOW CREATE TABLE articles_entities,以便我们可以看到表的实际索引.

If the table has a multiple-column index, any leftmost prefix of the index can be used by the optimizer to find rows.

For example, if you have a three-column index on (col1, col2, col3), you have indexed search capabilities on (col1), (col1, col2), and (col1, col2, col3).

MySQL cannot use an index if the columns do not form a leftmost prefix of the index

因此,如果相关性是多列索引的一部分,但不是该索引的最左列,则索引不会用于您的查询.

这是一个经常被忽视的常见问题.

标签:mysql,optimization,database-design,nosql

来源: https://codeday.me/bug/20190827/1737701.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值