active questions tagged shards - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:50:48Z http://stackoverflow.com/feeds/tag/shards http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1461076/java-database-connection-pool-for-multiple-databases-shards 1 Java Database Connection Pool for multiple databases (Shards) Steve 2009-09-22T16:15:27Z 2009-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-rails 6 Database sharding and Rails Teflon Ted 2008-09-04T16:40:10Z 2008-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>