爲何要優化java
如何優化node
原則:儘可能使用整型表示字符串mysql
# INET_ATON(str),address to number # INET_NTOA(number),number to address
enum
原則:定長和非定長數據類型的選擇linux
# decimal不會損失精度,存儲空間會隨數據的增大而增大。double佔用固定空間,較大數的存儲會損失精度。非定長的還有varchar、text
金額redis
# 對數據的精度要求較高,小數的運算和存儲存在精度問題(不能將全部小數轉換成二進制)
# price decimal(8,2)有2位小數的定點數,定點數支持很大的數(甚至是超過int,bigint存儲範圍的數)
# 定長char,非定長varchar、text(上限65535,其中varchar還會消耗1-3字節記錄長度,而text使用額外空間記錄長度)
原則:儘量選擇小的數據類型和指定短的長度算法
null
字段的處理要比null
字段的處理高效些!且不須要判斷是否爲null
。null
在MySQL中,很差處理,存儲須要額外空間,運算也須要特殊的運算符。如select null = null
和select null <> null
(<>
爲不等號)有着一樣的結果,只能經過is null
和is not null
來判斷字段是否爲null
。null
。所以一般使用特殊的數據進行佔位,好比int not null default 0
、string not null default ‘’
原則:字段註釋要完整,見名知意spring
原則:單表字段不宜過多sql
原則:能夠預留字段數據庫
# 在使用以上原則以前首先要知足業務需求
# 外鍵foreign key只能實現一對一或一對多的映射
item
)和商品的詳細信息(item_intro
),一般使用相同的主鍵或者增長一個外鍵字段(item_id
)
# 數據表的設計規範,一套愈來愈嚴格的規範體系(若是須要知足N範式,首先要知足N-1範式)。N
java
的文章)第二範式:消除對主鍵的部分依賴vim
course_name | course_class | weekday(周幾) | course_teacher |
---|---|---|---|
MySQL | 教育大樓1525 | 週一 | 張三 |
Java | 教育大樓1521 | 週三 | 李四 |
MySQL | 教育大樓1521 | 週五 | 張三 |
id
做爲主鍵,而消除對主鍵的部分依賴。第三範式:消除對主鍵的傳遞依賴
id
。所以須要將此表拆分爲兩張表日程表和課程表(獨立數據獨立建表):id | weekday | course_class | course_id |
---|---|---|---|
1001 | 週一 | 教育大樓1521 | 3546 |
course_id | course_name | course_teacher |
---|---|---|
3546 | Java | 張三 |
course_id:3546
出現了7次)
# 早期問題:如何選擇MyISAM和Innodb? # 如今不存在這個問題了,Innodb不斷完善,從各個方面趕超MyISAM,也是MySQL默認使用的。
存儲引擎Storage engine:MySQL中的數據、索引以及其餘對象是如何存儲的,是一套文件系統的實現。
show engines
Engine | Support | Comment |
---|---|---|
InnoDB | DEFAULT | Supports transactions, row-level locking, and foreign keys |
MyISAM | YES | MyISAM storage engine |
MyISAM | Innodb | |
---|---|---|
文件格式 | 數據和索引是分別存儲的,數據.MYD ,索引.MYI |
數據和索引是集中存儲的,.ibd |
文件可否移動 | 能,一張表就對應.frm 、MYD 、MYI 3個文件 |
否,由於關聯的還有data 下的其它文件 |
記錄存儲順序 | 按記錄插入順序保存 | 按主鍵大小有序插入 |
空間碎片(刪除記錄並flush table 表名 以後,表文件大小不變) |
產生。定時整理:使用命令optimize table 表名 實現 |
不產生 |
事務 | 不支持 | 支持 |
外鍵 | 不支持 | 支持 |
鎖支持(鎖是避免資源爭用的一個機制,MySQL鎖對用戶幾乎是透明的) | 表級鎖定 | 行級鎖定、表級鎖定,鎖定力度小併發能力高 |
鎖擴展
table-level lock
):lock tables <table_name1>,<table_name2>... read/write
,unlock tables <table_name1>,<table_name2>...
。其中read
是共享鎖,一旦鎖定任何客戶端都不可讀;write
是獨佔/寫鎖,只有加鎖的客戶端可讀可寫,其餘客戶端既不可讀也不可寫。鎖定的是一張表或幾張表。row-level lock
):鎖定的是一行或幾行記錄。共享鎖:select * from <table_name> where <條件> LOCK IN SHARE MODE;
,對查詢的記錄增長共享鎖;select * from <table_name> where <條件> FOR UPDATE;
,對查詢的記錄增長排他鎖。這裏值得注意的是:innodb
的行鎖,實際上是一個子範圍鎖,依據條件鎖定部分範圍,而不是就映射到具體的行上,所以還有一個學名:間隙鎖。好比select * from stu where id < 20 LOCK IN SHARE MODE
會鎖定id
在20
左右如下的範圍,你可能沒法插入id
爲18
或22
的一條新紀錄。選擇依據
Innodb
便可。
索引檢索爲何快?
key
),惟一索引(unique key
),主鍵索引(primary key
),全文索引(fulltext key
)索引管理語法
show create table 表名
:desc 表名
建立索引
create TABLE user_index( id int auto_increment primary key, first_name varchar(16), last_name VARCHAR(16), id_card VARCHAR(18), information text ); # -- 更改表結構 alter table user_index # -- 建立一個first_name和last_name的複合索引,並命名爲name add key name (first_name,last_name), # -- 建立一個id_card的惟一索引,默認以字段名做爲索引名 add UNIQUE KEY (id_card), # -- 雞肋,全文索引不支持中文 add FULLTEXT KEY (information);
show create table user_index
:CREATE TABLE user_index2 ( id INT auto_increment PRIMARY KEY, first_name VARCHAR (16), last_name VARCHAR (16), id_card VARCHAR (18), information text, KEY name (first_name, last_name), FULLTEXT KEY (information), UNIQUE KEY (id_card) );
alter table 表名 drop KEY 索引名
alter table user_index drop KEY name;
alter table user_index drop KEY id_card;
alter table user_index drop KEY information;
alter table 表名 drop primary key
(由於主鍵只有一個)。這裏值得注意的是,若是主鍵自增加,那麼不能直接執行此操做(自增加依賴於主鍵索引):alter table user_index # -- 從新定義字段 MODIFY id int, drop PRIMARY KEY
執行計劃explain
CREATE TABLE innodb1 ( id INT auto_increment PRIMARY KEY, first_name VARCHAR (16), last_name VARCHAR (16), id_card VARCHAR (18), information text, KEY name (first_name, last_name), FULLTEXT KEY (information), UNIQUE KEY (id_card) ); insert into innodb1 (first_name,last_name,id_card,information) values ('張','三','1001','華山派');
explain selelct
來分析SQL語句執行前的執行計劃:索引使用場景(重點)
where
id
查詢記錄,由於id
字段僅創建了主鍵索引,所以此SQL執行可選的索引只有主鍵索引,若是有多個,最終會選一個較優的做爲檢索的依據。# -- 增長一個沒有創建索引的字段 alter table innodb1 add sex char(1); # -- 按sex檢索時可選的索引爲null EXPLAIN SELECT * from innodb1 where sex='男';
alter table 表名 add index(字段名)
),一樣的SQL執行的效率,你會發現查詢效率會有明顯的提高(數據量越大越明顯)。order by
將查詢結果按照某個字段排序時,若是該字段沒有創建索引,那麼執行計劃會將查詢出的全部數據使用外部排序(將數據從硬盤分批讀取到內存使用內部排序,最後合併排序結果),這個操做是很影響性能的,由於須要將查詢涉及到的全部數據從磁盤中讀到內存(若是單條數據過大或者數據量過多都會下降效率),更不管讀到內存以後的排序了。alter table 表名 add index(字段名)
,那麼因爲索引自己是有序的,所以直接按照索引的順序和映射關係逐條取出數據便可。並且若是分頁的,那麼只用取出索引表某個範圍內的索引對應的數據,而不用像上述那取出全部數據進行排序再返回某個範圍內的數據。(從磁盤取數據是最影響性能的)join
語句匹配關係(on
)涉及的字段創建索引可以提升效率select
後==只寫必要的查詢字段==,以增長索引覆蓋的概率。where/order by/join on
或索引覆蓋),索引也不必定被使用select * from user where id = 20-1; select * from user where id+1 = 20;
like
查詢,不能以通配符開頭
mysql
的文章:# select * from article where title like '%mysql%';
like
語句匹配表達式以通配符開頭),所以只能作全表掃描,效率極低,在實際工程中幾乎不被採用。而通常會使用第三方提供的支持中文的全文索引來作。mysql
以後提醒mysql 教程
、mysql 下載
、mysql 安裝步驟
等。用到的語句是:# select * from article where title like 'mysql%';
like
是能夠利用索引的(固然前提是title
字段創建過索引)。複合索引只對第一個字段有效
# alter table person add index(first_name,last_name);
first_name
中提取的關鍵字排序,若是沒法肯定前後再按照從last_name
提取的關鍵字排序,也就是說該索引表只是按照記錄的first_name
字段值有序。select * from person where first_name = ?
是能夠利用索引的,而select * from person where last_name = ?
沒法利用索引。select * person from first_name = ? and last_name = ?
,複合索引就比對first_name
和last_name
單獨創建索引要高效些。很好理解,複合索引首先二分查找與first_name = ?
匹配的記錄,再在這些記錄中二分查找與last_name
匹配的記錄,只涉及到一張索引表。而分別單獨創建索引則是在first_name
索引表中二分找出與first_name = ?
匹配的記錄,再在last_name
索引表中二分找出與last_name = ?
的記錄,二者取交集。or,兩邊條件都有索引可用
狀態值,不容易使用到索引
如何建立索引
where、order by、join
字段上創建索引。前綴索引
index(field(10))
,使用字段值的前10個字符創建索引,默認是使用字段的所有內容創建索引。select count(*)/count(distinct left(password,prefixLen));
,經過從調整prefixLen
的值(從1自增)查看不一樣前綴長度的一個平均匹配度,接近1時就能夠了(表示一個密碼的前prefixLen
個字符幾乎能肯定惟一一條記錄)索引的存儲結構
BTree
add index(first_name,last_name)
爲例:first_name
第一有序、last_name
第二有序的規則,新添加的韓香
就能夠插到韓康
以後。白起 < 韓飛 < 韓康 < 李世民 < 趙奢 < 李尋歡 < 王語嫣 < 楊不悔
。這與二叉搜索樹的思想是同樣的,只不過二叉搜索樹的查找效率是log(2,N)
(以2爲底N的對數),而BTree的查找效率是log(x,N)
(其中x爲node的關鍵字數量,能夠達到1000以上)。log(1000+,N)
能夠看出,少許的磁盤讀取便可作到大量數據的遍歷,這也是btree的設計目的。Innodb
的==主鍵索引爲聚簇結構==,其它的索引包括Innodb
的非主鍵索引都是典型的BTree結構。哈希索引
select
語句的查詢結果在配置文件中開啓緩存
my.ini
,linux上是my.cnf
[mysqld]
段中配置query_cache_type
:
select sql-no-cache
提示來放棄緩存select sql-cache
來主動緩存(==經常使用==)show variables like ‘query_cache_type’;
來查看:# show variables like 'query_cache_type'; # query_cache_type DEMAND
query_cache_size
來設置:# show variables like 'query_cache_size'; # query_cache_size 0 # set global query_cache_size=64*1024*1024; # show variables like 'query_cache_size'; # query_cache_size 67108864
將查詢結果緩存
# select sql_cache * from user;
重置緩存
# reset query cache;
緩存失效問題(大問題)
注意事項
query cache
的使用狀況。能夠嘗試使用,但不能由query cache
決定業務邏輯,由於query cache
由DBA來管理。
MyISAM
存儲引擎時是一個.MYI
和.MYD
文件,使用Innodb
存儲引擎時是一個.ibd
和.frm
(表結構)文件。id
分區,以下將id
的哈希值對10取模將數據均勻分散到10個.ibd
存儲文件中:create table article( id int auto_increment PRIMARY KEY, title varchar(64), content text )PARTITION by HASH(id) PARTITIONS 10
data
目錄:MySQL提供的分區算法
hash(field)
的性質同樣,只不過key
是==處理字符串==的,比hash()
多了一步從字符串中計算出一個整型在作取模操做。create table article_key( id int auto_increment, title varchar(64), content text, PRIMARY KEY (id,title) # -- 要求分區依據字段必須是主鍵的一部分 )PARTITION by KEY(title) PARTITIONS 10
create table article_range( id int auto_increment, title varchar(64), content text, created_time int, # -- 發佈時間到1970-1-1的毫秒數 PRIMARY KEY (id,created_time) # -- 要求分區依據字段必須是主鍵的一部分 )charset=utf8 PARTITION BY RANGE(created_time)( PARTITION p201808 VALUES less than (1535731199), -- select UNIX_TIMESTAMP('2018-8-31 23:59:59') PARTITION p201809 VALUES less than (1538323199), -- 2018-9-30 23:59:59 PARTITION p201810 VALUES less than (1541001599) -- 2018-10-31 23:59:59 );
p201808,p201819,p201810
分區的定義順序依照created_time
數值範圍從小到大,不能顛倒。insert into article_range values(null,'MySQL優化','內容示例',1535731180); flush tables; # -- 使操做當即刷新到磁盤文件
1535731180
小於1535731199
(2018-8-31 23:59:59
),所以被存儲到p201808
分區中,這種算法的存儲到哪一個分區取決於數據情況。in (值列表)
)。create table article_list( id int auto_increment, title varchar(64), content text, status TINYINT(1), # -- 文章狀態:0-草稿,1-完成但未發佈,2-已發佈 PRIMARY KEY (id,status) # -- 要求分區依據字段必須是主鍵的一部分 )charset=utf8 PARTITION BY list(status)( PARTITION writing values in(0,1), # -- 未發佈的放在一個分區 PARTITION published values in (2) # -- 已發佈的放在一個分區 );
insert into article_list values(null,'mysql優化','內容示例',0); flush tables;
分區管理語法
range
對文章按照月份歸檔,隨着時間的增長,咱們須要增長一個月份:alter table article_range add partition( partition p201811 values less than (1543593599) -- select UNIX_TIMESTAMP('2018-11-30 23:59:59') -- more );
# alter table article_range drop PARTITION p201808
# alter table article_key add partition partitions 4
# alter table article_key coalesce partition 6
key/hash
分區的管理不會刪除數據,可是每一次調整(新增或銷燬分區)都會將全部的數據重寫分配到新的分區上。==效率極低==,最好在設計階段就考慮好分區策略。
分表緣由
5.1
以後mysql
才支持分區操做)id重複的解決方案
memcache、redis
的id
自增器id
一個字段的表,每次自增該字段做爲數據記錄的id
安裝和配置主從複製
Red Hat Enterprise Linux Server release 7.0 (Maipo)
(虛擬機)mysql5.7
(下載地址)/export/server
來存放)# tar xzvf mysql-5.7.23-linux-glibc2.12-x86_64.tar.gz -C /export/server # cd /export/server # mv mysql-5.7.23-linux-glibc2.12-x86_64 mysql
mysql
目錄的所屬組和所屬者:# groupadd mysql # useradd -r -g mysql mysql # cd /export/server # chown -R mysql:mysql mysql/ # chmod -R 755 mysql/
mysql
數據存放目錄(其中/export/data
是我建立專門用來爲各類服務存放數據的目錄)# mkdir /export/data/mysql
mysql
服務# cd /export/server/mysql # ./bin/mysqld --basedir=/export/server/mysql --datadir=/export/data/mysql --user=mysql
--pid-file=/export/data/mysql/mysql.pid --initialize
mysql
的root
帳戶的初始密碼,記下來以備後續登陸。若是報錯缺乏依賴,則使用yum instally
依次安裝便可my.cnf
vim /etc/my.cnf [mysqld] basedir=/export/server/mysql datadir=/export/data/mysql socket=/tmp/mysql.sock user=mysql server-id=10 # 服務id,在集羣時必須惟一,建議設置爲IP的第四段 port=3306 # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 # Settings user and group are ignored when systemd is used. # If you need to run mysqld under a different user or group, # customize your systemd unit file for mariadb according to the # instructions in http://fedoraproject.org/wiki/Systemd [mysqld_safe] log-error=/export/data/mysql/error.log pid-file=/export/data/mysql/mysql.pid # # include all files from the config directory # !includedir /etc/my.cnf.d
# cp /export/server/mysql/support-files/mysql.server /etc/init.d/mysqld
# service mysqld start
/etc/profile
中添加以下內容# mysql env MYSQL_HOME=/export/server/mysql MYSQL_PATH=$MYSQL_HOME/bin PATH=$PATH:$MYSQL_PATH export PATH
# source /etc/profile
root
登陸mysql -uroot -p # 這裏填寫以前初始化服務時提供的密碼
root
帳戶密碼(我爲了方便將密碼改成root),不然操做數據庫會報錯set password=password('root'); flush privileges;
use mysql; update user set host='%' where user='root'; flush privileges;
navicat
遠程鏈接虛擬機linux上的mysql了配置主從節點
linux
(192.168.10.10
)上的mysql
爲master
,宿主機(192.168.10.1
)上的mysql
爲slave
配置主從複製。 master
的my.cnf
以下[mysqld] basedir=/export/server/mysql datadir=/export/data/mysql socket=/tmp/mysql.sock user=mysql server-id=10 port=3306 # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 # Settings user and group are ignored when systemd is used. # If you need to run mysqld under a different user or group, # customize your systemd unit file for mariadb according to the # instructions in http://fedoraproject.org/wiki/Systemd log-bin=mysql-bin # 開啓二進制日誌 expire-logs-days=7 # 設置日誌過時時間,避免佔滿磁盤 binlog-ignore-db=mysql # 不使用主從複製的數據庫 binlog-ignore-db=information_schema binlog-ignore-db=performation_schema binlog-ignore-db=sys binlog-do-db=test #使用主從複製的數據庫 [mysqld_safe] log-error=/export/data/mysql/error.log pid-file=/export/data/mysql/mysql.pid # # include all files from the config directory # !includedir /etc/my.cnf.d
master
# service mysqld restart
master
查看配置是否生效(ON
即爲開啓,默認爲OFF
):mysql> show variables like 'log_bin'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | log_bin | ON | +---------------+-------+
master
的數據庫中創建備份帳號:backup
爲用戶名,%
表示任何遠程地址,用戶back
可使用密碼1234
經過任何遠程客戶端鏈接master
# grant replication slave on *.* to 'backup'@'%' identified by '1234'
user
表能夠看到咱們剛建立的用戶:mysql> use mysql mysql> select user,authentication_string,host from user; +---------------+-------------------------------------------+-----------+ | user | authentication_string | host | +---------------+-------------------------------------------+-----------+ | root | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B | % | | mysql.session | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | localhost | | mysql.sys | *THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE | localhost | | backup | *A4B6157319038724E3560894F7F932C8886EBFCF | % | +---------------+-------------------------------------------+-----------+
test
數據庫,建立一個article
表以備後續測試CREATE TABLE `article` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(64) DEFAULT NULL, `content` text, PRIMARY KEY (`id`) ) CHARSET=utf8;
with read lock
表示在此過程當中,客戶端只能讀數據,以便得到一個一致性的快照)[root@zhenganwen ~]# service mysqld restart Shutting down MySQL.... SUCCESS! Starting MySQL. SUCCESS! [root@zhenganwen mysql]# mysql -uroot -proot mysql> flush tables with read lock; Query OK, 0 rows affected (0.00 sec)
master
上當前的二進制日誌和偏移量(記一下其中的File
和Position
)mysql> show master status \G *************************** 1. row *************************** File: mysql-bin.000002 Position: 154 Binlog_Do_DB: test Binlog_Ignore_DB: mysql,information_schema,performation_schema,sys Executed_Gtid_Set: 1 row in set (0.00 sec)
File
表示實現複製功能的日誌,即上圖中的Binary log
;Position
則表示Binary log
日誌文件的偏移量以後的都會同步到slave
中,那麼在偏移量以前的則須要咱們手動導入。master
中導出數據# mysqldump -uroot -proot -hlocalhost test > /export/data/test.sql
test.sql
中的內容在slave
上執行一遍。配置slave
slave
的my.ini
文件中的[mysqld]
部分# log-bin=mysql # server-id=1 #192.168.10.1
slave
,WIN+R
->services.msc
->MySQL5.7
->從新啓動slave
檢查log_bin
是否以被開啓:# show VARIABLES like 'log_bin';
master
的同步複製:stop slave; change master to master_host='192.168.10.10', # -- master的IP master_user='backup', # -- 以前在master上建立的用戶 master_password='1234', master_log_file='mysql-bin.000002', # -- master上 show master status \G 提供的信息 master_log_pos=154;
slave
節點並查看狀態mysql> start slave; mysql> show slave status \G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 192.168.10.10 Master_User: backup Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.000002 Read_Master_Log_Pos: 154 Relay_Log_File: DESKTOP-KUBSPE0-relay-bin.000002 Relay_Log_Pos: 320 Relay_Master_Log_File: mysql-bin.000002 Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 154 Relay_Log_Space: 537 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 0 Master_SSL_Verify_Server_Cert: No Last_IO_Errno: 0 Last_IO_Error: Last_SQL_Errno: 0 Last_SQL_Error: Replicate_Ignore_Server_Ids: Master_Server_Id: 10 Master_UUID: f68774b7-0b28-11e9-a925-000c290abe05 Master_Info_File: C:\ProgramData\MySQL\MySQL Server 5.7\Data\master.info SQL_Delay: 0 SQL_Remaining_Delay: NULL Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates Master_Retry_Count: 86400 Master_Bind: Last_IO_Error_Timestamp: Last_SQL_Error_Timestamp: Master_SSL_Crl: Master_SSL_Crlpath: Retrieved_Gtid_Set: Executed_Gtid_Set: Auto_Position: 0 Replicate_Rewrite_DB: Channel_Name: Master_TLS_Version: 1 row in set (0.00 sec)
slave
配置成功測試
master
的讀取鎖定# mysql> unlock tables; # Query OK, 0 rows affected (0.00 sec)
master
中插入一條數據# mysql> use test # mysql> insert into article (title,content) values ('mysql master and slave','record the cluster building succeed!:)'); # Query OK, 1 row affected (0.00 sec)
slave
是否自動同步了數據# mysql> insert into article (title,content) values ('mysql master and slave','record the cluster building succeed!:)'); # Query OK, 1 row affected (0.00 sec)
線上DDL
create table
)和維護(alter table
)的語言。在線上執行DDL,在低於MySQL5.6
版本時會致使全表被獨佔鎖定,此時表處於維護、不可操做狀態,這會致使該期間對該表的全部訪問沒法響應。可是在MySQL5.6
以後,支持Online DDL
,大大縮短了鎖定時間。數據庫導入語句
# alter table table-name disable keys
# alter table table-name enable keys
Innodb
,那麼它==默認會給每條寫指令加上事務==(這也會消耗必定的時間),所以建議先手動開啓事務,再執行必定量的批量導入,最後手動提交事務。prepare
==預編譯==一下,這樣也能節省不少重複編譯的時間。limit offset,rows
offset
,好比limit 10000,10
至關於對已查詢出來的行數棄掉前10000
行後再取10
行,徹底能夠加一些條件過濾一下(完成篩選),而不該該使用limit
跳過已查詢到的數據。這是一個==offset
作無用功==的問題。對應實際工程中,要避免出現大頁碼的狀況,儘可能引導用戶作條件過濾。select * 要少用
select
,但這個影響不是很大,由於網絡傳輸多了幾十上百字節也沒多少延時,而且如今流行的ORM框架都是用的select *
,只是咱們在設計表的時候注意將大數據量的字段分離,好比商品詳情能夠單獨抽離出一張商品詳情表,這樣在查看商品簡略頁面時的加載速度就不會有影響了。order by rand()不要用
select * from student order by rand() limit 5
的執行效率就很低,由於它爲表中的每條數據都生成隨機數並進行排序,而咱們只要前5條。單表和多表查詢
join
、子查詢都是涉及到多表的查詢。若是你使用explain
分析執行計劃你會發現多表查詢也是一個表一個表的處理,最後合併結果。所以能夠說單表查詢將計算壓力放在了應用程序上,而多表查詢將計算壓力放在了數據庫上。count(*)
MyISAM
存儲引擎中,會自動記錄表的行數,所以使用count(*)
可以快速返回。而Innodb
內部沒有這樣一個計數器,須要咱們手動統計記錄數量,解決思路就是單獨使用一張表: id |
table |
count |
---|---|---|
1 | student | 100 |
limit 1
limit 1
,其實ORM框架幫咱們作到了這一點(查詢單條的操做都會自動加上limit 1
)。慢查詢日誌
開啓慢查詢日誌
slow_query_log
show variables like ‘slov_query_log’
查看是否開啓,若是狀態值爲OFF
,可使用set GLOBAL slow_query_log = on
來開啓,它會在datadir
下產生一個xxx-slow.log
的文件。設置臨界時間
long_query_time
show VARIABLES like 'long_query_time'
,單位秒set long_query_time=0.5
查看日誌
xxx-slow.log
中profile信息
profiling
開啓profile
set profiling=on
mysql> show variables like 'profiling'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | profiling | OFF | +---------------+-------+ 1 row in set, 1 warning (0.00 sec) mysql> set profiling=on; Query OK, 0 rows affected, 1 warning (0.00 sec)
查看profile信息
show profiles
mysql> show variables like 'profiling'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | profiling | ON | +---------------+-------+ 1 row in set, 1 warning (0.00 sec) mysql> insert into article values (null,'test profile',':)'); Query OK, 1 row affected (0.15 sec) mysql> show profiles; +----------+------------+-------------------------------------------------------+ | Query_ID | Duration | Query | +----------+------------+-------------------------------------------------------+ | 1 | 0.00086150 | show variables like 'profiling' | | 2 | 0.15027550 | insert into article values (null,'test profile',':)') | +----------+------------+-------------------------------------------------------+
經過Query_ID查看某條SQL全部詳細步驟的時間
show profile for query Query_ID
show profiles
的結果中,每一個SQL有一個Query_ID
,能夠經過它查看執行該SQL通過了哪些步驟,各消耗了多場時間 典型的服務器配置
max_connections
,最大客戶端鏈接數
mysql> show variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 151 | +-----------------+-------+
table_open_cache
,表文件句柄緩存(表數據是存儲在磁盤上的,緩存磁盤文件的句柄方便打開文件讀取數據)
mysql> show variables like 'table_open_cache'; +------------------+-------+ | Variable_name | Value | +------------------+-------+ | table_open_cache | 2000 | +------------------+-------+
key_buffer_size
,索引緩存大小(將從磁盤上讀取的索引緩存到內存,能夠設置大一些,有利於快速檢索)
mysql> show variables like 'key_buffer_size'; +-----------------+---------+ | Variable_name | Value | +-----------------+---------+ | key_buffer_size | 8388608 | +-----------------+---------+
innodb_buffer_pool_size
,Innodb
存儲引擎緩存池大小(對於Innodb
來講最重要的一個配置,若是全部的表用的都是Innodb
,那麼甚至建議將該值設置到物理內存的80%,Innodb
的不少性能提高如索引都是依靠這個)
mysql> show variables like 'innodb_buffer_pool_size'; +-------------------------+---------+ | Variable_name | Value | +-------------------------+---------+ | innodb_buffer_pool_size | 8388608 | +-------------------------+---------+
innodb_file_per_table
(innodb
中,表數據存放在.ibd
文件中,若是將該配置項設置爲ON
,那麼一個表對應一個ibd
文件,不然全部innodb
共享表空間)
mysqlslap
(位於bin
目錄下)自動生成sql測試
C:\Users\zaw>mysqlslap --auto-generate-sql -uroot -proot mysqlslap: [Warning] Using a password on the command line interface can be insecure. Benchmark Average number of seconds to run all queries: 1.219 seconds Minimum number of seconds to run all queries: 1.219 seconds Maximum number of seconds to run all queries: 1.219 seconds Number of clients running queries: 1 Average number of queries per client: 0
併發測試
C:\Users\zaw>mysqlslap --auto-generate-sql --concurrency=100 -uroot -proot mysqlslap: [Warning] Using a password on the command line interface can be insecure. Benchmark Average number of seconds to run all queries: 3.578 seconds Minimum number of seconds to run all queries: 3.578 seconds Maximum number of seconds to run all queries: 3.578 seconds Number of clients running queries: 100 Average number of queries per client: 0 C:\Users\zaw>mysqlslap --auto-generate-sql --concurrency=150 -uroot -proot mysqlslap: [Warning] Using a password on the command line interface can be insecure. Benchmark Average number of seconds to run all queries: 5.718 seconds Minimum number of seconds to run all queries: 5.718 seconds Maximum number of seconds to run all queries: 5.718 seconds Number of clients running queries: 150 Average number of queries per client: 0
多輪測試
C:\Users\zaw>mysqlslap --auto-generate-sql --concurrency=150 --iterations=10 -uroot -proot mysqlslap: [Warning] Using a password on the command line interface can be insecure. Benchmark Average number of seconds to run all queries: 5.398 seconds Minimum number of seconds to run all queries: 4.313 seconds Maximum number of seconds to run all queries: 6.265 seconds Number of clients running queries: 150 Average number of queries per client: 0
存儲引擎測試
C:\Users\zaw>mysqlslap --auto-generate-sql --concurrency=150 --iterations=3 --engine=innodb -uroot -proot mysqlslap: [Warning] Using a password on the command line interface can be insecure. Benchmark Running for engine innodb Average number of seconds to run all queries: 5.911 seconds Minimum number of seconds to run all queries: 5.485 seconds Maximum number of seconds to run all queries: 6.703 seconds Number of clients running queries: 150 Average number of queries per client: 0
C:\Users\zaw>mysqlslap --auto-generate-sql --concurrency=150 --iterations=3 --engine=myisam -uroot -proot mysqlslap: [Warning] Using a password on the command line interface can be insecure. Benchmark Running for engine myisam Average number of seconds to run all queries: 53.104 seconds Minimum number of seconds to run all queries: 46.843 seconds Maximum number of seconds to run all queries: 60.781 seconds Number of clients running queries: 150 Average number of queries per client: 0
slave
不能寫只能讀(若是對slave
執行寫操做,那麼show slave status
將會呈現Slave_SQL_Running=NO
,此時你須要按照前面提到的手動同步一下slave
)。DataBase
同樣,咱們能夠抽取出ReadDataBase,WriteDataBase implements DataBase
,可是這種方式沒法利用優秀的線程池技術如DruidDataSource
幫咱們管理鏈接,也沒法利用Spring AOP
讓鏈接對DAO
層透明。方案2、使用Spring AOP
Spring AOP
解決數據源切換的問題,那麼就能夠和Mybatis
、Druid
整合到一塊兒了。Spring1
和Mybatis
時,咱們只需寫DAO接口和對應的SQL
語句,那麼DAO實例是由誰建立的呢?實際上就是Spring
幫咱們建立的,它經過咱們注入的數據源,幫咱們完成從中獲取數據庫鏈接、使用鏈接執行 SQL
語句的過程以及最後歸還鏈接給數據源的過程。addXXX/createXXX
、刪deleteXX/removeXXX
、改updateXXXX
、查selectXX/findXXX/getXX/queryXXX
)動態地選擇數據源(讀數據源對應鏈接master
而寫數據源對應鏈接slave
),那麼就能夠作到讀寫分離了。項目結構
mybatis
和druid
,實現數據源動態切換主要依賴spring-aop
和spring-aspects
<dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.6</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.0.8.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>5.0.8.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.0.8.RELEASE</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.6</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>6.0.2</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.0.8.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>5.0.8.RELEASE</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.22</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>5.0.8.RELEASE</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies>
數據類
package top.zhenganwen.mysqloptimize.entity; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @AllArgsConstructor @NoArgsConstructor public class Article { private int id; private String title; private String content; }
spring配置文件
RoutingDataSourceImpl
是實現動態切換功能的核心類,稍後介紹。<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <context:property-placeholder location="db.properties"></context:property-placeholder> <context:component-scan base-package="top.zhenganwen.mysqloptimize"/> <bean id="slaveDataSource" class="com.alibaba.druid.pool.DruidDataSource"> <property name="driverClassName" value="${db.driverClass}"/> <property name="url" value="${master.db.url}"></property> <property name="username" value="${master.db.username}"></property> <property name="password" value="${master.db.password}"></property> </bean> <bean id="masterDataSource" class="com.alibaba.druid.pool.DruidDataSource"> <property name="driverClassName" value="${db.driverClass}"/> <property name="url" value="${slave.db.url}"></property> <property name="username" value="${slave.db.username}"></property> <property name="password" value="${slave.db.password}"></property> </bean> <bean id="dataSourceRouting" class="top.zhenganwen.mysqloptimize.dataSource.RoutingDataSourceImpl"> <property name="defaultTargetDataSource" ref="masterDataSource"></property> <property name="targetDataSources"> <map key-type="java.lang.String" value-type="javax.sql.DataSource"> <entry key="read" value-ref="slaveDataSource"/> <entry key="write" value-ref="masterDataSource"/> </map> </property> <property name="methodType"> <map key-type="java.lang.String" value-type="java.lang.String"> <entry key="read" value="query,find,select,get,load,"></entry> <entry key="write" value="update,add,create,delete,remove,modify"/> </map> </property> </bean> <!-- Mybatis文件 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="configLocation" value="classpath:mybatis-config.xml" /> <property name="dataSource" ref="dataSourceRouting" /> <property name="mapperLocations" value="mapper/*.xml"/> </bean> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="top.zhenganwen.mysqloptimize.mapper" /> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /> </bean> </beans>
dp.properties
master.db.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC master.db.username=root master.db.password=root slave.db.url=jdbc:mysql://192.168.10.10:3306/test?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC slave.db.username=root slave.db.password=root db.driverClass=com.mysql.jdbc.Driver
mybatis-config.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <typeAliases> <typeAlias type="top.zhenganwen.mysqloptimize.entity.Article" alias="Article"/> </typeAliases> </configuration>
mapper接口和配置文件
ArticleMapper.java
package top.zhenganwen.mysqloptimize.mapper; import org.springframework.stereotype.Repository; import top.zhenganwen.mysqloptimize.entity.Article; import java.util.List; @Repository public interface ArticleMapper { List<Article> findAll(); void add(Article article); void delete(int id); }
ArticleMapper.xml
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <mapper namespace="top.zhenganwen.mysqloptimize.mapper.ArticleMapper"> <select id="findAll" resultType="Article"> select * from article </select> <insert id="add" parameterType="Article"> insert into article (title,content) values (#{title},#{content}) </insert> <delete id="delete" parameterType="int"> delete from article where id=#{id} </delete> </mapper>
核心類
RoutingDataSourceImpl
package top.zhenganwen.mysqloptimize.dataSource; import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource; import java.util.*; /** * RoutingDataSourceImpl class * 數據源路由 * * @author zhenganwen, blog:zhenganwen.top * @date 2018/12/29 */ public class RoutingDataSourceImpl extends AbstractRoutingDataSource { /** * key爲read或write * value爲DAO方法的前綴 * 什麼前綴開頭的方法使用讀數據員,什麼開頭的方法使用寫數據源 */ public static final Map<String, List<String>> METHOD_TYPE_MAP = new HashMap<String, List<String>>(); /** * 由咱們指定數據源的id,由Spring切換數據源 * * @return */ @Override protected Object determineCurrentLookupKey() { System.out.println("數據源爲:"+DataSourceHandler.getDataSource()); return DataSourceHandler.getDataSource(); } public void setMethodType(Map<String, String> map) { for (String type : map.keySet()) { String methodPrefixList = map.get(type); if (methodPrefixList != null) { METHOD_TYPE_MAP.put(type, Arrays.asList(methodPrefixList.split(","))); } } } }
Spring
動態代理DAO接口時直接使用該數據源,如今咱們有了讀、寫兩個數據源,咱們須要加入一些本身的邏輯來告訴調用哪一個接口使用哪一個數據源(讀數據的接口使用slave
,寫數據的接口使用master
。這個告訴Spring
該使用哪一個數據源的類就是AbstractRoutingDataSource
,必須重寫的方法determineCurrentLookupKey
返回數據源的標識,結合spring
配置文件(下段代碼的5,6兩行)<bean id="dataSourceRouting" class="top.zhenganwen.mysqloptimize.dataSource.RoutingDataSourceImpl"> <property name="defaultTargetDataSource" ref="masterDataSource"></property> <property name="targetDataSources"> <map key-type="java.lang.String" value-type="javax.sql.DataSource"> <entry key="read" value-ref="slaveDataSource"/> <entry key="write" value-ref="masterDataSource"/> </map> </property> <property name="methodType"> <map key-type="java.lang.String" value-type="java.lang.String"> <entry key="read" value="query,find,select,get,load,"></entry> <entry key="write" value="update,add,create,delete,remove,modify"/> </map> </property> </bean>
determineCurrentLookupKey
返回read
那麼使用slaveDataSource
,若是返回write
就使用masterDataSource
。DataSourceHandler
package top.zhenganwen.mysqloptimize.dataSource; /** * DataSourceHandler class * <p> * 將數據源與線程綁定,須要時根據線程獲取 * * @author zhenganwen, blog:zhenganwen.top * @date 2018/12/29 */ public class DataSourceHandler { /** * 綁定的是read或write,表示使用讀或寫數據源 */ private static final ThreadLocal<String> holder = new ThreadLocal<String>(); public static void setDataSource(String dataSource) { System.out.println(Thread.currentThread().getName()+"設置了數據源類型"); holder.set(dataSource); } public static String getDataSource() { System.out.println(Thread.currentThread().getName()+"獲取了數據源類型"); return holder.get(); } }
DataSourceAspect
package top.zhenganwen.mysqloptimize.dataSource; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.stereotype.Component; import java.util.List; import java.util.Set; import static top.zhenganwen.mysqloptimize.dataSource.RoutingDataSourceImpl.METHOD_TYPE_MAP; /** * DataSourceAspect class * * 配置切面,根據方法前綴設置讀、寫數據源 * 項目啓動時會加載該bean,並按照配置的切面(哪些切入點、如何加強)肯定動態代理邏輯 * @author zhenganwen,blog:zhenganwen.top * @date 2018/12/29 */ @Component //聲明這是一個切面,這樣Spring纔會作相應的配置,不然只會當作簡單的bean注入 @Aspect @EnableAspectJAutoProxy public class DataSourceAspect { /** * 配置切入點:DAO包下的全部類的全部方法 */ @Pointcut("execution(* top.zhenganwen.mysqloptimize.mapper.*.*(..))") public void aspect() { } /** * 配置前置加強,對象是aspect()方法上配置的切入點 */ @Before("aspect()") public void before(JoinPoint point) { String className = point.getTarget().getClass().getName(); String invokedMethod = point.getSignature().getName(); System.out.println("對 "+className+"$"+invokedMethod+" 作了前置加強,肯定了要使用的數據源類型"); Set<String> dataSourceType = METHOD_TYPE_MAP.keySet(); for (String type : dataSourceType) { List<String> prefixList = METHOD_TYPE_MAP.get(type); for (String prefix : prefixList) { if (invokedMethod.startsWith(prefix)) { DataSourceHandler.setDataSource(type); System.out.println("數據源爲:"+type); return; } } } } }
slave
中讀的呢?能夠將寫後複製到slave
中的數據更改,再讀該數據就知道是從slave
中讀了。==注意==,一但對slave
作了寫操做就要從新手動將slave
與master
同步一下,不然主從複製就會失效。 package top.zhenganwen.mysqloptimize.dataSource; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import top.zhenganwen.mysqloptimize.entity.Article; import top.zhenganwen.mysqloptimize.mapper.ArticleMapper; (SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "classpath:spring-mybatis.xml") public class RoutingDataSourceTest { ArticleMapper articleMapper; public void testRead() { System.out.println(articleMapper.findAll()); } public void testAdd() { Article article = new Article(0, "我是新插入的文章", "測試是否可以寫到master而且複製到slave中"); articleMapper.add(article); } public void testDelete() { articleMapper.delete(2); } }
負載均衡算法
高可用