<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        LocationforInnoDBtablespaceinMySQL5.6.6_MySQL

        來源:懂視網 責編:小采 時間:2020-11-09 19:20:12
        文檔

        LocationforInnoDBtablespaceinMySQL5.6.6_MySQL

        LocationforInnoDBtablespaceinMySQL5.6.6_MySQL:There is one new feature in MySQL 5.6 that didnt get the attention it deserved (at least from me) : DATA DIRECTORY for InnoDB tables.This is implemented sinceMySQL 5.6.6and ca
        推薦度:
        導讀LocationforInnoDBtablespaceinMySQL5.6.6_MySQL:There is one new feature in MySQL 5.6 that didnt get the attention it deserved (at least from me) : DATA DIRECTORY for InnoDB tables.This is implemented sinceMySQL 5.6.6and ca
        There is one new feature in MySQL 5.6 that didn’t get the attention it deserved (at least from me;-)) : “DATA DIRECTORY” for InnoDB tables.

        This is implemented sinceMySQL 5.6.6and can be used only at the creation of the table. It’s not possible to change the DATA DIRECTORY with an ALTER for a normal table(but it’s in some case with partitioned ones as you will see below). If you do so, the option will be justignored:

        mysql> CREATE TABLE `sales_figures` (-> `region_id` int(11) DEFAULT NULL,-> `sales_date` date DEFAULT NULL,-> `amount` int(11) DEFAULT NULL-> ) ENGINE=InnoDB DEFAULT CHARSET=latin1-> DATA DIRECTORY = '/tb1/';Query OK, 0 rows affected (0.11 sec)mysql> alter table sales_figures engine=innodb data directory='/tb2/';Query OK, 0 rows affected, 1 warning (0.21 sec)Records: 0Duplicates: 0Warnings: 1mysql> show warnings;+---------+------+---------------------------------+| Level | Code | Message |+---------+------+---------------------------------+| Warning | 1618 |option ignored |+---------+------+---------------------------------+

        mysql>CREATETABLE`sales_figures`(

        -> `region_id`int(11)DEFAULTNULL,

        -> `sales_date`dateDEFAULTNULL,

        -> `amount`int(11)DEFAULTNULL

        ->)ENGINE=InnoDBDEFAULTCHARSET=latin1

        ->DATADIRECTORY='/tb1/';

        QueryOK,0rowsaffected(0.11sec)

        mysql>altertablesales_figuresengine=innodbdatadirectory='/tb2/';

        QueryOK,0rowsaffected,1warning(0.21sec)

        Records:0 Duplicates:0 Warnings:1

        mysql>showwarnings;

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

        |Level |Code|Message |

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

        |Warning|1618| optionignored|

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

        You can read more information in the MySQL Manual:Specifying the Location of a Tablespace.

        So it’s now possible if for example you use SSD or FusionIO disks to have the large log or archived table to cheaper disks as you won’t require fast random access for those table and then save some expensive diskspace.

        The syntax is very simple:

        mysql> CREATE TABLE `sales_figures` (`region_id` int(11) DEFAULT NULL,`sales_date` date DEFAULT NULL,`amount` int(11) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=latin1 DATA DIRECTORY='/tmp/tb1/'mysql> select @@datadir;+-----------------+| @@datadir |+-----------------+| /var/lib/mysql/ |+-----------------+

        mysql>CREATETABLE`sales_figures`(

        `region_id`int(11)DEFAULTNULL,

        `sales_date`dateDEFAULTNULL,

        `amount`int(11)DEFAULTNULL

        )ENGINE=InnoDBDEFAULTCHARSET=latin1DATADIRECTORY='/tmp/tb1/'

        mysql>select@@datadir;

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

        |@@datadir |

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

        |/var/lib/mysql/|

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

        And in fact if we check on the filesystem:

        # ls -lh /var/lib/mysql/fred/
        total 20K
        -rw-r--r-- 1 mysql mysql 65 May 23 22:30 db.opt
        -rw-r--r-- 1 mysql mysql 8.5K May 23 22:30 sales_figures.frm
        -rw-r--r-- 1 mysql mysql 31 May 23 22:30 sales_figures.isl

        Not the new file.isl(referred as a link to the RemoteDatafile in the source code)that contains the location of the tablespace:

        [root@imac2 tmp]# cat /var/lib/mysql/fred/sales_figures.isl
        /tmp/tb1/fred/sales_figures.ibd

        And indeed the tablespace is there:

        [root@imac2 tmp]# ls -lh /tmp/tb1/fred/
        total 96K
        -rw-r--r-- 1 mysql mysql 96K May 23 22:30 sales_figures.ibd

        This is really great ! And something even nicer, it finally works withpartitioning too(before that was only possible for MyISAM tables):

        mysql> CREATE TABLE sales_figures (region_id INT, sales_date DATE, amount INT)PARTITION BY LIST (region_id) ( PARTITION US_DATA VALUES IN(100,200,300) DATA DIRECTORY = '/tmp/tb1', PARTITION EU_DATA VALUES IN(400,500) DATA DIRECTORY = '/tmp/tb2/');

        mysql>CREATETABLEsales_figures(region_idINT,sales_dateDATE,amountINT)

        PARTITIONBYLIST(region_id)(

        PARTITIONUS_DATAVALUESIN(100,200,300)DATADIRECTORY='/tmp/tb1',

        PARTITIONEU_DATAVALUESIN(400,500)DATADIRECTORY='/tmp/tb2/'

        );

        [root@imac2 mysql]# ls -l /tmp/tb1/fred/sales_figures#P#US_DATA.ibd
        -rw-rw---- 1 mysql mysql 98304 May 23 16:19 /tmp/tb1/fred/sales_figures#P#US_DATA.ibd

        [root@imac2 mysql]# ls -l /tmp/tb2/fred/sales_figures#P#EU_DATA.ibd
        -rw-rw—- 1 mysql mysql 98304 May 23 16:19 /tmp/tb2/fred/sales_figures#P#EU_DATA.ibd

        So now you can have some partitions on fast disks and some on slower disks. This is great for historical partitioning.

        For example you have a tableorderspartitioned by years as follow:

        create table orders (id int, purchased DATE)partition by range (YEAR(purchased)) ( partition pre2012 values less than (2012) DATA DIRECTORY '/hdd/', partition pre2013 values less than (2013) DATA DIRECTORY '/hdd/', partition pre2014 values less than (2014) DATA DIRECTORY '/hdd/', partition current values less than MAXVALUE DATA DIRECTORY '/ssd/');

        createtableorders(idint,purchasedDATE)

        partitionbyrange(YEAR(purchased))(

        partitionpre2012valueslessthan(2012)DATADIRECTORY'/hdd/',

        partitionpre2013valueslessthan(2013)DATADIRECTORY'/hdd/',

        partitionpre2014valueslessthan(2014)DATADIRECTORY'/hdd/',

        partitioncurrentvalueslessthanMAXVALUEDATADIRECTORY'/ssd/'

        );

        Only the partition handling the orders for the current year is on SSD.
        At the end of the year, you can recreate a new partition and move all the data for 2014 on slower disks:

        mysql> ALTER TABLE orders REORGANIZE PARTITION `current` INTO ( partition pre2015 values less than (2015) DATA DIRECTORY '/hdd/', partition current values less than MAXVALUE DATA DIRECTORY '/ssd');

        mysql>ALTERTABLEordersREORGANIZEPARTITION`current`INTO(

        partitionpre2015valueslessthan(2015)DATADIRECTORY'/hdd/',

        partitioncurrentvalueslessthanMAXVALUEDATADIRECTORY'/ssd');

        Notice that XtraBackup is also aware of these tablespaces on different locations and is able to deal with them.

        There is currently only one issue is that with –copy-back, you need to have the full path created for the tablespaces not in the MySQL data directory.

        So in the example above I had to create /tmp/tb1/fred and /tmp/tb2/fred before being able to runinnobackupex –copy-back
        (seebug 1322658).

        I hope now that this important feature got some more visibility as it deserves it.

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        LocationforInnoDBtablespaceinMySQL5.6.6_MySQL

        LocationforInnoDBtablespaceinMySQL5.6.6_MySQL:There is one new feature in MySQL 5.6 that didnt get the attention it deserved (at least from me) : DATA DIRECTORY for InnoDB tables.This is implemented sinceMySQL 5.6.6and ca
        推薦度:
        標簽: in for mysql
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 思思久久99热免费精品6| 亚洲码和欧洲码一码二码三码| 免费一级毛suv好看的国产网站| 好男人视频在线观看免费看片| 亚洲人成网男女大片在线播放| jjizz全部免费看片| 在线人成免费视频69国产| 久久亚洲中文字幕精品一区四| 免费人成在线观看播放a| 亚洲日韩国产一区二区三区| 香蕉免费在线视频| 亚洲人成依人成综合网| 嫖丰满老熟妇AAAA片免费看| 在线精品亚洲一区二区| 国产亚洲福利一区二区免费看| 国产亚洲情侣久久精品| 亚洲中文字幕久久精品无码喷水 | 亚洲国产乱码最新视频| 日本不卡免费新一区二区三区 | 黄页网站在线观看免费高清| 97se亚洲国产综合自在线| 国产资源免费观看| 中文字幕在线观看免费| 亚洲精品国产成人| 国产在线98福利播放视频免费| a级毛片免费高清视频| 亚洲视屏在线观看| 日本特黄特黄刺激大片免费| 一个人看的免费高清视频日本| 少妇中文字幕乱码亚洲影视| 成人毛片18女人毛片免费| 男女猛烈无遮掩视频免费软件| 久久久久久亚洲精品中文字幕| 免费看污成人午夜网站| 午夜不卡AV免费| 亚洲国产夜色在线观看| 亚洲国产综合精品中文字幕| 69pao强力打造免费高清| 精品成人一区二区三区免费视频| 久久久久亚洲AV成人无码| 国产精品国产免费无码专区不卡|