MySQL Forums
Forum List  »  Partitioning

maximum partitions number in mysql cluster?
Posted by: Lee Wonseok
Date: October 21, 2008 09:50AM

hello.

I want to partitioning manually in mysql cluster.

I tried like below.

create table test.a
(id int not null,primary key(id))
engine=ndbcluster
PARTITION BY KEY() PARTITIONS 8;

this is succceed.

but, next creation is failed.

create table test.a
(id int not null,primary key(id))
engine=ndbcluster
PARTITION BY KEY() PARTITIONS 9;

In mysql cluster, maximum partion number is 9?

I want to creating partions over 9.
what can i to do?

Options: ReplyQuote


Subject
Views
Written By
Posted
maximum partitions number in mysql cluster?
3704
October 21, 2008 09:50AM


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.