質問

For performance reason i will put a 188MB table (rebuild every day on disk) with ~ 550.000 datasets into MEMORY table. Whenever i tried this, i run into HEAP error ... My server has 1.3GB free RAM (only 32BIt 4 GB)

正しい解決策はありません

他のヒント

Have you checked the configured mysql heap table size? Have a look at this:

mysql> show variables like "%heap%";
+---------------------+----------+
| Variable_name       | Value    |
+---------------------+----------+
| max_heap_table_size | 16777216 |
+---------------------+----------+
1 row in set (0.02 sec)

The default value is 16MB.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top