|
|||||||||||
|
Re: Do not save tables in ram?
From: Matthew Montgomery <mmontgomery(at)mysql.com>
Date: Mon Oct 01 2007 - 23:02:49 EDT
These files are created on all data nodes. There are no table space data or log files on the SQL nodes. > ... And lastly, is there something out there to warn you when your You can query the information schema to see how many free extents are in a data file. mysql> select TABLESPACE_NAME, FILE_NAME, (FREE_EXTENTS/TOTAL_EXTENTS)*100 as PERCENT_FREE , EXTRA from information_schema.FILES where FILE_TYPE='DATAFILE'; +-----------------+-----------+--------------+----------------+ | TABLESPACE_NAME | FILE_NAME | PERCENT_FREE | EXTRA | +-----------------+-----------+--------------+----------------+ | ts_1 | ts_1.dat | 100.0000 | CLUSTER_NODE=3 | | ts_1 | ts_1.dat | 100.0000 | CLUSTER_NODE=4 | +-----------------+-----------+--------------+----------------+2 rows in set (0.00 sec) By default you will have a 1MB extent size. So it will only be that precise. -- Matthew Montgomery, Support Engineer San Antonio, TX MySQL Inc, www.mysql.com -- MySQL Cluster Mailing List For list archives: http://lists.mysql.com/cluster To unsubscribe: http://lists.mysql.com/cluster?unsub=lists@pantek.comReceived on Mon Oct 1 23:03:56 2007 This archive was generated by hypermail 2.1.8 : Sun Oct 07 2007 - 10:15:19 EDT |
||||||||||
|
|||||||||||