I have a big table with more than 5T data, currently with Innodb, partitioned daily by time, the primary key is id and time. the table is insert only with lots of read mostly based on time and some other indexed columns. If want to migrate to MySQL cluster, what's the best way to partition the table so we can get both good write and read performance(write distributed evenly on all data node and read only from one data node)?
Thanks
Thanks