Today I was trying to implement the Snowflake Id generator for Fly.io Gossip Glomers second challenge, Unique Id
generation.
Here’s what I came up with.
|
|
It wasn’t too bad for how simple its supposed to be. My solution wasn’t getting accepted by maelstrom
because there were duplicate Ids generated by my program. After looking at my code for very long and not finding any idea what went wrong, I asked ChatGPT, it suggested the sequenceNumber
bits were too few and must probably be overflowing. After looking at the maelstrom logs I found the lines which had duplicate Ids.
That was very strange. I noticed all IDs generated ended with 000
. Surely, I made a mistake on the bitwise OR of the sequence number, right?
Wrong.
I figured out how to log to stderr
and looked at what my Ids were.
|
|
And they were unique alright. For a second I thought that Golang must be casting my Ids into some other datatype and truncating my IDs. But that was not it. It was maelstrom
it wouldn’t accept the last 3 digits. I think this is because we’re using JSON and while JSON doesn’t limit the size of the number in its spec (see here), there might be something in the middle that cannot accept that number and is thus being truncated. NodeJS for example can only process numbers upto
|
|
So the solution is to just move the sequenceNumber a few bits up as we have plenty of space left in the sequenceNumber space. maelstrom
test cases dont generate too many ids in the same millisecond.
|
|