2

我一直在尝试找出是否可以在 MySQL Cluster 中使用基于磁盘的表进行表分区。我想在磁盘上存储一个大表,并对表进行范围分区。我有一种感觉,答案是否定的。

感谢您提供的任何信息。

麦克风。

4

2 回答 2

2

任何未编入索引的列都可以使用 MySQL Cluster 存储到磁盘(我认为大约是一年前)。

http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-disk-data.html

于 2009-02-18T00:22:54.960 回答
2

Looks like only partitioning by key is supported for cluster, whether in memory or on disk: http://dev.mysql.com/doc/refman/5.1/en/partitioning-limitations-storage-engines.html

Range partitioning (and Hash, and List) are possible if MySQLD is started with the --new option, so data can be stored on disk, partitioned by range, . Cluster

于 2009-03-16T12:25:16.757 回答