How to create unique row ID in sharded databases? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:46:39Z http://stackoverflow.com/feeds/question/788829 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/788829/how-to-create-unique-row-id-in-sharded-databases 2 How to create unique row ID in sharded databases? Continuation 2009-04-25T12:37:40Z 2009-04-25T12:48:01Z <p>In a non-sharded DB, I could just use auto-increment to generate a unique ID to reference a specific row.</p> <p>I want to shard my DB, say into 12 shards. Now when I insert into a specific shard, the auto-increment ID is no longer unique.</p> <p>Would like to hear anyone's experience in dealing with this problem. </p> http://stackoverflow.com/questions/788829/how-to-create-unique-row-id-in-sharded-databases/788837#788837 4 Answer by MrTelly for How to create unique row ID in sharded databases? MrTelly 2009-04-25T12:41:14Z 2009-04-25T12:41:14Z <p>A few approaches</p> <p>1) Give each shard it's own ID, and use a composite key</p> <p>2) Give each shard it's own ID and set ID ranges for each shard</p> <p>3) Use a globally unique ID - GUID</p> http://stackoverflow.com/questions/788829/how-to-create-unique-row-id-in-sharded-databases/788839#788839 0 Answer by Yassir for How to create unique row ID in sharded databases? Yassir 2009-04-25T12:43:21Z 2009-04-25T12:43:21Z <p>1) You can two rows (one indicates the ID and the second the database id) </p> <p>2) Use Guids </p> http://stackoverflow.com/questions/788829/how-to-create-unique-row-id-in-sharded-databases/788851#788851 0 Answer by AnthonyWJones for How to create unique row ID in sharded databases? AnthonyWJones 2009-04-25T12:48:01Z 2009-04-25T12:48:01Z <p>The two approaches I've used to this sort of problem:</p> <ul> <li>GUID: Easy to implement, creates larger tables and indexes though.</li> <li>ID Domain: I made that term up but basically it means dividing the 32 (or 64) bits of an integer type into two parts, the top part is represents a domain. The number of bits to use for the domain depends on how many domains you want to support verses the number of records you expect a single domain to introduce. In this approach you allocate a domain to each shard. The down side is DBs (that I know of) do not support this approach directly you need to code ID allocation yourself.</li> </ul>