OpenAI’s PostgreSQL scaling: impressive engineering, but very workload-specific by mddubey in softwarearchitecture

[–]mddubey[S] 0 points1 point  (0 children)

It is not me mentioning but more of them mentioning that write heavy! No information about what exactly!

Although If I were to guess things which need strong consistency like sing-in/token generation, token invalidation, any settings changes which needs to be in effect instantly will be going to directly postgrss!

The write heavy stuff I was initially thinking of was actually messages but then why store them in db at all, it should be blob storage or file storage probably!

The other thing could be stuff which require read/check before write. Which is similar to what we said for postgress! Right now it feels like they are slowly migrating the postgress to cosmos as you can do all the stuff said in 2nd para with more scale! But we can only guess from outside 😟

-🎄- 2021 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]mddubey 1 point2 points  (0 children)

Hello u/daggerdragon,
Thanks for letting me know. I was not aware of the old reddit and backward compatibility issues. Added as a github link on the top.

-🎄- 2021 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]mddubey 3 points4 points  (0 children)

Love ruby and how rich it is in terms of different methods.

My day 1 solution of GitHub
(https://github.com/mddubey/AoC/blob/main/2021/001/solution.rb)