Database Sharding Support in Propel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:00:41Z http://stackoverflow.com/feeds/question/540629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/540629/database-sharding-support-in-propel 1 Database Sharding Support in Propel Ngu Soon Hui 2009-02-12T09:38:23Z 2009-02-20T19:35:12Z <p>Just wonder how good is Propel's support for database sharding? I am thinking about creating my application in PHP, using MySQL as the database server and Propel as the ORM.</p> <p>I figure out that it may be good to keep the architecture scalable right from the start, just in case my application takes off. </p> <p>What's your take?</p> http://stackoverflow.com/questions/540629/database-sharding-support-in-propel/550878#550878 2 Answer by MarkR for Database Sharding Support in Propel MarkR 2009-02-15T13:36:06Z 2009-02-15T13:36:06Z <p>I think that's a very bad idea. Assuming that you need to shard your data is not a good assumption. You don't know, in advance, how you're going to want to scale. Sharding is a very complicated business and needs to be avoided if at all possible. This is an obscene case of premature optimisation.</p> http://stackoverflow.com/questions/540629/database-sharding-support-in-propel/570924#570924 0 Answer by Jens Roland for Database Sharding Support in Propel Jens Roland 2009-02-20T19:35:12Z 2009-02-20T19:35:12Z <p>I agree with MarkR that it's too early to be worrying about sharding, but I disagree that it should be avoided if at all possible. I'd say go with the ORM that seems to fit your style and language choice -- and Propel is probably the right one in your case. Even if your application takes off in a big way, sharding probably won't be necessary -- you can easily pull off 25 million records with a MySQL-based DBMS and some decent caching techniques, so just focus on making your queries fast and design for easy memcache-integration, and you'll be a happy camper even when your app takes off.</p> <p>Good luck with it!</p>