active questions tagged shards - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T05:50:48Zhttp://stackoverflow.com/feeds/tag/shardshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1461076/java-database-connection-pool-for-multiple-databases-shards1Java Database Connection Pool for multiple databases (Shards)Steve2009-09-22T16:15:27Z2009-09-22T18:18:41Z
<p>Hello,</p>
<p>I was wondering what the best technique for implementing a DB connection pool for a web application which uses shards. From what I can tell most (all?) open-source implementations only support a single database behind. At least, I have not found one that supports shards.</p>
<p>Also, even though I using shards not all of the database will have the same schema as I will have other databases too. I'm not sure if that's important to mention.</p>
<p>The only solution that I can come up with so far is to write a layer that sits on top of multiple and distinct pools. Each distinct pool can be any of the available single database implementations.</p>
<p>Are there already solutions for this? What would be the best technique otherwise?</p>
<p>Thanks in advance,</p>
<p>Stephen.</p>
http://stackoverflow.com/questions/44145/database-sharding-and-rails6Database sharding and RailsTeflon Ted2008-09-04T16:40:10Z2008-09-23T14:28:58Z
<p>What's the best way to deal with a sharded database in Rails? Should the sharding be handled at the application layer, the active record layer, the database driver layer, a proxy layer, or something else altogether? What are the pros and cons of each?</p>