這篇文章主要介紹“MySQL 8.0.20的新特性有哪些”,在日常操作中,相信很多人在MySQL 8.0.20的新特性有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”MySQL 8.0.20的新特性有哪些”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
祥符網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),祥符網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為祥符上千多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營(yíng)銷網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的祥符做網(wǎng)站的公司定做!
不會(huì)再發(fā)生一部分成功,一部分失敗的情況,要么全成功,要么全部回滾。
Incompatible Change: The grant tables in the mysql system database are now InnoDB (transactional) tables.
Previously, these were MyISAM (nontransactional) tables.
This change applies to these tables: user, db, tables_priv, columns_priv, procs_priv, proxies_priv
Previously, an account-management statement that named multiple users could succeed for some users and fail for others.
Now, each statement is transactional and either succeeds for all named users or rolls back and has no effect if any error occurs.
The statement is written to the binary log if it succeeds, but not if it fails; in that case, rollback occurs and no changes are made
MySQL now supports roles
expire-logs-days # 已經(jīng)廢棄,binlog_expire_logs_seconds取代,默認(rèn)為30天
innodb_undo_tablespaces # 已經(jīng)廢棄,innodb總會(huì)創(chuàng)建2個(gè)undo表空間,需要增加,使用CREATE UNDO TABLESPACE
internal_tmp_disk_storage_engine # 已經(jīng)廢棄,8.0.16開始內(nèi)部磁盤臨時(shí)表默認(rèn)均為InnoDB存儲(chǔ)引擎。
character-set-server=utf8 #現(xiàn)在該參數(shù)utf8為utf8mb3別名,以后將改為utf8mb4
innodb_read_only # 原來只對(duì)InnoDB表生效,無法creating dropping,現(xiàn)在對(duì)所有表生效。
--log-tc-size #The hardcoded memory page size of 8KB for the memory-mapped
# transaction coordinator was too small for platforms such as
# ARM64 and PowerPC where the page size is much larger.
# 現(xiàn)在默認(rèn)為內(nèi)存頁(yè)的6倍。
validate_password_check_user_name # 現(xiàn)在默認(rèn)打開
validate_password # 默認(rèn)打開,會(huì)拒絕與當(dāng)前用戶名相同的密碼。
innodb_deadlock_detect # 可以禁止死鎖檢測(cè),防止多線程等待同一個(gè)鎖引發(fā)處理緩慢,可以通過設(shè)置 innodb_lock_wait_timeout
innodb_checksum_algorithm # 在5.6.3中取代了參數(shù)innodb_checksums
innodb_flush_method # 現(xiàn)在默認(rèn)值Unix為fsync,windows為unbuffered
innodb_support_xa # 被移除, 默認(rèn)支持兩階段提交
SET PERSIST # SET引入設(shè)置可以動(dòng)態(tài)global參數(shù)的同時(shí)會(huì)將參數(shù)持久化到data目錄下的mysqld-auto.cnf文件,服務(wù)器啟動(dòng)會(huì)加載。
performance_schema.variables_info # 可以顯示最近修改的參數(shù)以及源。
INFORMATION_SCHEMA.TABLES VERSION:.frm .trg .trn文件將不存在,取而代之的均為數(shù)據(jù)字典,version字段寫死為10,這是最后一個(gè)
支持.frm的版本MySQL 5.7的版本號(hào)。
mysql_install_db:已經(jīng)被移除,初始化數(shù)據(jù)庫(kù)必須使用mysqld --initialize or --initialize-insecure
ibd2sdi:新引入命令行工具,used to extract serialized dictionary information (SDI) from persistent InnoDB tablespaces
優(yōu)化器現(xiàn)在支持表級(jí)別的hint:MERGE and NO_MERGE
SELECT /*+ MERGE(dt) */ * FROM (SELECT * FROM t1) AS dt;
SELECT /*+ NO_MERGE(dt) */ * FROM (SELECT * FROM t1) AS dt;
現(xiàn)在支持invisible index,優(yōu)化器不會(huì)選擇使用索引,但是會(huì)正常維護(hù)索引,可以測(cè)試移除索引造成影響,又不破壞現(xiàn)有結(jié)構(gòu)。
現(xiàn)在performance_schema會(huì)收集服務(wù)器錯(cuò)誤:events_errors_summary_global_by_error,
events_errors_summary_by_account_by_error,
events_errors_summary_by_host_by_error,
events_errors_summary_by_thread_by_error,
events_errors_summary_by_user_by_error
performance_schema_error_size:控制收集錯(cuò)誤數(shù)量。
--分區(qū)變化
通用分區(qū)處理器被移除,MySQL 8.0 InnoDB為唯一支持分區(qū)處理的存儲(chǔ)引擎,
移除分區(qū)可以用ALTER TABLE ... REMOVE PARTITIONING
升級(jí)之前,需要把非InnoDB存儲(chǔ)引擎分區(qū)表使用ALTER TABLE ... ENGINE=INNODB轉(zhuǎn)換為InnoDB
--InnoDB文件變化
InnoDB:當(dāng)在Data directory外建立表空間時(shí),InnoDB不在創(chuàng)建.isl InnoDB動(dòng)態(tài)鏈接文件,
所以不再支持服務(wù)器離線時(shí),修改.isl移動(dòng)遠(yuǎn)程表空間操作,利用redo log定位遠(yuǎn)程日志文件。
InnoDB:不再支持壓縮臨時(shí)表,當(dāng)row_format=compressed時(shí),innodb_strict_mode為true(default),create temporary table將報(bào)錯(cuò)
INFORMATION_SCHEMA.INNODB_CACHED_INDEXES:顯示索引緩存在內(nèi)存中的頁(yè)數(shù)量。
現(xiàn)在將AUTO_INCREMENT值寫入Redo log,寫入存儲(chǔ)引擎系統(tǒng)表,將自增最大值持久化,設(shè)置AUTO_INCREMENT=N不在不生效,
手工update AUTO_INCREMENT 列也生效。
到此,關(guān)于“MySQL 8.0.20的新特性有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!