MySQL Forums
Forum List  »  NDB clusters

Re: How do I get rid of the MAX_ROWS limitation?
Posted by: Mauritz Sundell
Date: June 01, 2012 03:26AM

Hi Benjamin,
sorry to say, but the 46 million row limit per partitions is not removed in 7.2.6.
And the easiest way to work around this is to increase the number of partitions.

Increasing the number of partition can be done by setting MAX_ROWS big enough.
ALTER TABLE ... MAX_ROWS = 700000000;

Another option is to increase the number of LDM blocks per node, that will increase the number of default partitions. This later may also increase performance if you got many cores per node.
See for example MaxNoOfExecutionThreads or ThreadConfig.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How do I get rid of the MAX_ROWS limitation?
1752
June 01, 2012 03:26AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.