Mysql中的暫存資料表使用方法

來源:互聯網
上載者:User

http://dev.firnow.com/course/7_databases/mysql/Mysqljs/20090302/156754.html

當工作在非常大的表上時,你可能偶爾需要運行很多查詢獲得一個大量資料的小的子集,不是對整個表運行這些查詢,而是讓MySQL每次找出所需的少數記錄,將記錄選擇到一個暫存資料表可能更快些,然後多這些表執行查詢。

建立暫存資料表很容易,給正常的CREATE TABLE語句加上TEMPORARY關鍵字:

CREATE TEMPORARY TABLE tmp_table (

name VARCHAR(10) NOT NULL,

value INTEGER NOT NULL

)

暫存資料表將在你串連MySQL期間存在。當你斷開時,MySQL將自動刪除表並釋放所用的空間。當然你可以在仍然串連的時候刪除表並釋放空間。

DROP TABLE tmp_table

如果在你建立名為tmp_table暫存資料表時名為tmp_table的表在資料庫中已經存在,暫存資料表將有必要屏蔽(隱藏)非暫存資料表tmp_table。

如果你聲明暫存資料表是一個HEAP表,MySQL也允許你指定在記憶體中建立它:

CREATE TEMPORARY TABLE tmp_table (

name VARCHAR(10) NOT NULL,

value INTEGER NOT NULL

) TYPE = HEAP
因為HEAP表格儲存體在記憶體中,你對它啟動並執行查詢可能比磁碟上的暫存資料表快些。然而,HEAP表與一般的表有些不同,且有自身的限制。詳見MySQL參考手冊。

正如前面的建議,你應該測試暫存資料表看看它們是否真的比對大量資料庫執行查詢快。如果資料很好地索引,暫存資料表可能一點不快。

----------------------

mysql最佳化: 記憶體表和暫存資料表
    CIC有著非常龐大的資料,對這些資料進行拆分就涉及到OLAP的知識。需要建立很多個中間暫存資料表用來進行切分操作。
由於直接使用暫存資料表來建立中間表,其速度不如人意,因而就有了把暫存資料表建成記憶體表的想法。但記憶體表和暫存資料表的區別且並不熟悉,需要尋找資料了。
一開始以為暫存資料表是建立後存在,當串連斷開時暫存資料表就會被刪除,即暫存資料表是存在於磁碟上的。而實際操作中發現暫存資料表建立後去目錄下查看發現並沒有發現對應 的暫存資料表檔案(未取消連結).因而猜測暫存資料表的資料和結構都是存放在記憶體中,而不是在磁碟中.
    這樣一想 記憶體表不是也是存在在記憶體中嗎,那麼他和暫存資料表有什麼區別?他們的速度是什麼樣子?

    尋找了官方手冊有以下的一些解釋:
The MEMORY storage engine creates tables with contents that are stored in memory. Formerly, these were known as HEAP tables. MEMORY is the preferred term, although HEAP remains supported for backward compatibility.

Each MEMORY table is associated with one disk file. The filename begins with the table name and has an extension of .frm to indicate that it stores the table definition.

由此可以看出來記憶體表會把表結構存放在磁碟上,把資料放在記憶體中。
並做了以下實驗:
暫存資料表
mysql> create temporary table tmp1(id int not null);
Query OK, 0 rows affected (0.00 sec)

mysql> show create table tmp1;
+-------+----------------------------------------------------------------------------------------------+
| Table | Create Table                                                                               |
+-------+----------------------------------------------------------------------------------------------+
| tmp1   | CREATE TEMPORARY TABLE `tmp1` ( `id` int(11) NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8    |
+-------+----------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

記憶體表
mysql> create table tmp2(id int not null) TYPE=HEAP;
Query OK, 0 rows affected (0.00 sec)

mysql> show create table tmp2;
+-------+------------------------------------------------------------------------------------+
| Table | Create Table                                                                       |
+-------+------------------------------------------------------------------------------------+
| tmp2   | CREATE TABLE `tmp2` (
   `id` int(11) NOT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8 |
+-------+------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

可以看出來暫存資料表和記憶體表的ENGINE 不同,暫存資料表預設的是MyISAM,而記憶體表是MEMORY .去資料庫目錄查看,發現tmp2.frm而沒有tmp1表的任何檔案。看來實際情況是符合官方解釋的。

那麼速度方面呢(即MyISAM和MEMORY之間的區別)?
實驗開始:
實現手段:對基於2張千萬層級的表做一些OLAP切分操作,中間表的建立使用2種不同的方式。最後把中間表的資料按照要求取出,插入到結果表中
實驗目的;測試臨時記憶體表和暫存資料表的速度
1.中間表的建立使用Create temporary table type = heap 即 把中間表建立成臨時記憶體表
2.中間表直接使用Create temporary table建立

實驗結果:
臨時記憶體表: 1小時
1 2008-09-25 11:03:48
1 2008-09-25 12:03:39
暫存資料表:1小時17分鐘
2 2008-09-25 12:25:28
2 2008-09-25 13:42:37

由此發現MEMORY比MyISAM快大概20%。

接著尋找官方手冊:
As indicated by the name, MEMORY tables are stored in memory. They use hash indexes by default, which makes them very fast, and very useful for creating temporary tables. However, when the server shuts down, all rows stored in MEMORY tables are lost. The tables themselves continue to exist because their definitions are stored in .frm files on disk, but they are empty when the server restarts.

可以看出來MEMORY確實是very fast,and very useful for creating temporary tables .把暫存資料表和記憶體表放在一起使用確實會快不少:create table tmp2(id int not null) engine memory;

記憶體表的建立還有一些限制條件:
MEMORY tables cannot contain        BLOB or TEXT columns. HEAP不支援BLOB/TEXT列。  
The server needs sufficient memory to maintain all   MEMORY tables that are in use at the same time. 在同一時間需要足夠的記憶體.
To free memory used by a MEMORY table when   you no longer require its contents, you should execute DELETE or TRUNCATE TABLE, or remove the table altogether using DROP TABLE.
為了釋放記憶體,你應該執行DELETE FROM heap_table或DROP TABLE heap_table。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.