溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

接到一個(gè)新的mysql數(shù)據(jù)庫(kù)時(shí)需要做什么

發(fā)布時(shí)間:2021-11-03 15:04:57 來源:億速云 閱讀:179 作者:柒染 欄目:MySQL數(shù)據(jù)庫(kù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)接到一個(gè)新的mysql數(shù)據(jù)庫(kù)時(shí)需要做什么,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

當(dāng)我接到一個(gè)新的mysql數(shù)據(jù)庫(kù)時(shí),需要搞清楚如下情況:

1、這個(gè)數(shù)據(jù)庫(kù)的版本、字符集、使用的存儲(chǔ)引擎、是否為主從復(fù)制、是否為高可用、備份情況、查看一下近期的慢查詢?nèi)罩竞虴RR日志、表的數(shù)據(jù)量、有多少?gòu)埍怼⒋蟊碛卸啻蟮龋?/p>

2、查看Mysql當(dāng)前有哪些觸發(fā)器和存儲(chǔ)過程

mysql> show triggers;
mysql> show events;
mysql> show procedure status;
mysql> SHOW FUNCTION STATUS;

3、查看數(shù)據(jù)庫(kù)是否有分區(qū)表

select TABLE_NAME from information_schema.PARTITIONS where PARTITION_NAME is not null;

4、執(zhí)行一會(huì)show processlist,看看 Mysql 能有多少并發(fā),一般都是什么sql。

5、跑一下如下工具,看看mysql的讀寫比例、關(guān)注disk讀、full join全表掃描、操作系統(tǒng)環(huán)境等情況

pt-summary
pt-mysql-summary
pt-query-digest
pt-show-grants
pt-variable-advisor
pt-query-digest
mysqlreport

6、看看數(shù)據(jù)庫(kù)有哪些用戶

select host,User,Password from mysql.user

7、系統(tǒng)掛載參數(shù)

mount -o noatime,nobarrier /dev/sda1/ data

8、看numa是否關(guān)閉

numactl --hardware

9、看調(diào)度策略是否為deadline或者noop

[root@MySQL02 chenzx]# cat /sys/block/sda/queue/scheduler 
noop anticipatory [deadline] cfq

10、內(nèi)核參數(shù)

vim /etc/sysctl.conf
vm.swappiness <= 10
vm.dirty_ratio<=5
vm.dirty_backgroud_ratio<=10

11、最大文件句柄數(shù)

 vi /etc/security/limits.conf 
*                soft      nofile            102400
*                hard      nofile            102400

12、mysql重點(diǎn)參數(shù)

innodb_flush_log_at_trx_commit=1
sync_binlog=1 
binlog_format=ROW
innodb_file_per_table = 1
innodb_log_file_size = 4G
innodb_log_files_in_group = 2
innodb_buffer_pool_size
innodb_buffer_pool_instances
master_info_repository = TABLE 
relay_log_info_repository =TABLE
relay_log_recovery = on
sort_buffer_size
join_buffer_size
read_rnd_buffer_size
tmp_table_size

13、審核表結(jié)構(gòu)、字段類型選擇是否合理,比如業(yè)務(wù)中選擇性很少的狀態(tài)status、類型type等字段是否使用tinytint或者smallint類型,這樣不僅可以節(jié)省存儲(chǔ)空間,還能節(jié)省BP的利用率、網(wǎng)絡(luò)傳輸數(shù)據(jù)包的大小等。

上述就是小編為大家分享的接到一個(gè)新的mysql數(shù)據(jù)庫(kù)時(shí)需要做什么了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI