Does anybody has experience of using partitioning feature in conjunction with the Doctrine2 library?

The first problem is that Doctrine creates foreign keys for association columns, anybody knows how to prevent or disable that?

And the second problem is how to specify custom table definition (PARTITION BY ...)?

Thanks in advance!

link|improve this question
3  
You will probably get better results if you split this out into two questions. – Phoenix May 26 '11 at 18:38
feedback

2 Answers

PARTITION engine in MySQL has major limitations with regard to keys. Please see latest docs, currently here: http://dev.mysql.com/doc/refman/5.1/en/partitioning-limitations-partitioning-keys-unique-keys.html

If Doctrine requires keys that Partition does not support, you are out of luck. Partition engine is very limited by design - it's intended for archival storage which is infrequently read. Few MySQL-aware apps will work with Partition, unless you make changes.

I would suggest using Partition as it was intended - archiving. Store your data in a more mainstream MySQL data engine would be the answer.

link|improve this answer
feedback

To answer your second question: you can find the documentation on table partitioning here. There are several different types of table partitioning, you will have to decide which one you want to use before you can implement it.

link|improve this answer
I am asking not about MySQL specification of table paritioning. I am interesting in custom table definition for entity metadata in Doctrine 2. – Vladimir Kartaviy Aug 3 '11 at 13:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.