How to create unique row ID in sharded databases? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:46:39Zhttp://stackoverflow.com/feeds/question/788829http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/788829/how-to-create-unique-row-id-in-sharded-databases2How to create unique row ID in sharded databases?Continuation2009-04-25T12:37:40Z2009-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#7888374Answer by MrTelly for How to create unique row ID in sharded databases?MrTelly2009-04-25T12:41:14Z2009-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#7888390Answer by Yassir for How to create unique row ID in sharded databases?Yassir2009-04-25T12:43:21Z2009-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#7888510Answer by AnthonyWJones for How to create unique row ID in sharded databases?AnthonyWJones2009-04-25T12:48:01Z2009-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>