Home
DevCentral
Search
Configure Global Search
Log In
Transactions
T1130
Change Details
Change Details
Old
New
Diff
According [[ http://dba.stackexchange.com/questions/27328/how-large-should-be-mysql-innodb-buffer-pool-size | this entry ]], `innodb_buffer_pool_size` should be set at 2G. ``` $ mysql mysql> SELECT CEILING(Total_InnoDB_Bytes*1.6/POWER(1024,3)) RIBPS FROM -> (SELECT SUM(data_length+index_length) Total_InnoDB_Bytes -> FROM information_schema.tables WHERE engine='InnoDB') A; +-------+ | RIBPS | +-------+ | 2 | +-------+ 1 row in set, 17 warnings (2 min 5.24 sec) ```
According [[ http://dba.stackexchange.com/questions/27328/how-large-should-be-mysql-innodb-buffer-pool-size | this entry ]], `innodb_buffer_pool_size` should be set at 2G. ```name=Ysul $ mysql mysql> SELECT CEILING(Total_InnoDB_Bytes*1.6/POWER(1024,3)) RIBPS FROM -> (SELECT SUM(data_length+index_length) Total_InnoDB_Bytes -> FROM information_schema.tables WHERE engine='InnoDB') A; +-------+ | RIBPS | +-------+ | 2 | +-------+ 1 row in set, 17 warnings (2 min 5.24 sec) ```
According [[ http://dba.stackexchange.com/questions/27328/how-large-should-be-mysql-innodb-buffer-pool-size | this entry ]], `innodb_buffer_pool_size` should be set at 2G. ```
name=Ysul
$ mysql mysql> SELECT CEILING(Total_InnoDB_Bytes*1.6/POWER(1024,3)) RIBPS FROM -> (SELECT SUM(data_length+index_length) Total_InnoDB_Bytes -> FROM information_schema.tables WHERE engine='InnoDB') A; +-------+ | RIBPS | +-------+ | 2 | +-------+ 1 row in set, 17 warnings (2 min 5.24 sec) ```
Continue