-
-
Save anthowen/9dab0b29c6349fb6b2e5b58b611cc99f to your computer and use it in GitHub Desktop.
DB Best Practices & PostgreSQL Snowflake ID Generator Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE SEQUENCE IF NOT EXISTS public.global_id_sequence; | |
CREATE OR REPLACE FUNCTION id_generator(OUT result BIGINT) AS $$ | |
DECLARE | |
epoch BIGINT := 1610850820000; | |
seq_id BIGINT; | |
now_millis BIGINT; | |
shard_id INT := 1; | |
BEGIN | |
SELECT nextval('public.global_id_sequence') % 1024 INTO seq_id; | |
SELECT FLOOR(EXTRACT(EPOCH FROM clock_timestamp()) * 1000) INTO now_millis; | |
result := (now_millis - epoch) << 23; | |
result := result | (shard_id << 10); | |
result := result | (seq_id); | |
END; | |
$$ LANGUAGE PLPGSQL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
best practices for protecting your db before deploying: