Snowflake ID

From Wikipedia, the free encyclopedia
1477589194514628608
Snowflake ID
Other namesTwitter Snowflake

Components of a snowflake identifier in binary

Snowflake IDs, or snowflakes, are a form of unique identifier used in distributed computing. The format was created by Twitter and is used for the IDs of tweets. The format has been adopted by other companies, including Discord, and Instagram, which uses a modified version.

Format[]

Snowflakes are 64 bits. (Only 63 are used to fit in a signed integer.) The first 41 bits are a timestamp, representing milliseconds since the chosen epoch. The next 10 bits represent a machine ID, preventing clashes. Twelve more bits represent a per-machine sequence number, to allow creation of multiple snowflakes in the same millisecond.[1]

Snowflakes are sortable by time, because they are based on the time they were created.[1] Additionally, the time a snowflake was created can be calculated from the snowflake. This can be used to get snowflakes (and their associated objects) that were created before or after a particular date.[2]

Usage[]

The format was first announced by Twitter in June 2010.[3] Due to implementation challenges, they waited until later in the year to roll out the update.[4] Twitter uses snowflake IDs for tweets, direct messages, users, lists, and all other objects available over the API.[5]

Discord also uses snowflakes, with their epoch set to the first second of the year 2015.[2]

Instagram uses a modified version of the format, with 41 bits for a timestamp, 13 bits for a shard ID, and 10 bits for a sequence number.[6]

See also[]

References[]

  1. ^ a b "twitter-archive/snowflake at b3f6a3c6ca". October 1, 2012. Retrieved January 18, 2021.
  2. ^ a b "API Reference". Discord Developer Portal. Discord. Retrieved January 18, 2021.
  3. ^ King, Ryan (June 1, 2010). "Announcing Snowflake". blog.twitter.com. Twitter. Retrieved January 18, 2021.
  4. ^ Siegler, MG (October 12, 2010). "Tweet IDs About To Get Jumbled In A Blizzard As Snowflake Is Set To Roll Live". TechCrunch. Retrieved January 18, 2021.
  5. ^ "Twitter IDs". Twitter Developer. Twitter. Retrieved January 20, 2021.
  6. ^ "Sharding & IDs at Instagram". Instagram Engineering. May 2, 2016. Retrieved January 18, 2021.

External links[]

Retrieved from ""