Hacker News new | ask | show | jobs
by evanweaver 1688 days ago
Stored procedures and the integration database have come back for our users in a big way. It would be great to hear examples of how others are applying this pattern with other databases and APIs.
2 comments

My favorite thing about this pattern is that it allows developers to build globally distributed applications while reasoning about them like a single, centralized monolith.

A lot of complicated practices that we’ve adopted to overcome the challenges of distributed systems just disappear when you have fast, strongly consistent transactional writes on a single data store. Either a thing happened or it didn’t. No need to wait around and see.

This matters even more as applications move from single failover to multi-region to edge computing with hundreds of locations of compute. How do you get consistent state out to each PoP?

You don’t, you integrate through the database.

Since you're the one making the claim that they're making a come back, I'd love to hear your own personal story or some of the stories you've heard.

Personally I haven't noticed anything resembling a come back, but I'm certainly using them more than ever... and I'm loving it.