Best Database Solution for a Health Web App with Over 100 Million Users?

0
4
Asked By ChillPanda123 On

I'm building a health web application that needs to support over 100 million users and I'm considering using Java with Spring Boot. I prefer PostgreSQL for the database but I'm aware it doesn't handle sharding natively. I'd love to hear opinions on the best database strategy for a large-scale application like this, especially regarding horizontal scaling requirements.

2 Answers

Answered By CuriousDev98 On

PostgreSQL has some great features like partitioning that can help with this. It allows you to distribute your data across different hosts, which is a sort of workaround for sharding.

Answered By DataWiz2023 On

Have you looked into Citus? It's a PostgreSQL extension that enables sharding and could really help with your scaling needs for such a large app.

ChillPanda123 -

Noted, I’ll check out Citus for sure.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.