this post was submitted on 15 Sep 2023
261 points (72.9% liked)

Programmer Humor

31224 readers
66 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 17 points 9 months ago (1 children)

That's why you don't make your systems dependent on any of those tools. If Mongo goes crazy, you add an implementation to another document database, test to see if performance is good enough, and start to migrate to another database.

There's no problem in using proprietary shit. The problem is marrying stuff you can't rely on, building your house on land you don't own.

That's also one of the reasons why it isn't good to use very unique features from any service, because once you start relying on it, you get locked, AWS may have a billion services, i would normally only use those that other providers also have.

[โ€“] [email protected] 7 points 9 months ago

Yup, wrappers for everything you didn't build yourself. That way when you inevitably have to switch vendors, you can simply write a new wrapper using the same interface, minimal changes necessary