Hello all,
I am currently building a system that will handle 1 billion records at first with the intent to scale to 1 trillion records!
I had custom coded my software to use Redis as a cache for the data and a LMDB database to store the data permanently. It works fine for standard purposes, but I want to have search capabilities built in into my new application. Obviously with a key-value store like Redis or LMDB, you would have to search all the keys to get matches.
I was wondering if a tool like mariaDB, mySQL, MongoDB or PostgresSQL would better fit my needs. I would also like a database solution with search capabilities whether its built in or through and extension. Write time doesn't matter to me, and search time can be a tad slow but obviously not something out of reach (i mean there are billons to trillions of records soo).
#data #engineering #software #database #swe
Want to see the real deal?
More inside scoop? View in App
More inside scoop? View in App
blind
SUPPORT
FOLLOW US
DOWNLOAD THE APP:
FOLLOWING
Industries
Job Groups
- Software Engineering
- Product Management
- Information Technology
- Data Science & Analytics
- Management Consulting
- Hardware Engineering
- Design
- Sales
- Security
- Investment Banking & Sell Side
- Marketing
- Private Equity & Buy Side
- Corporate Finance
- Supply Chain
- Business Development
- Human Resources
- Operations
- Legal
- Admin
- Customer Service
- Communications
Return to Office
Work From Home
COVID-19
Layoffs
Investments & Money
Work Visa
Housing
Referrals
Job Openings
Startups
Office Life
Mental Health
HR Issues
Blockchain & Crypto
Fitness & Nutrition
Travel
Health Care & Insurance
Tax
Hobbies & Entertainment
Working Parents
Food & Dining
IPO
Side Jobs
Show more
SUPPORT
FOLLOW US
DOWNLOAD THE APP:
comments
Do a arch diagram and ask question which one will break? Where my user bases are?
I did not take db course before. Where should I start?
On YouTube there is video of how Uber built their back end infrastructure, that's a good reference for your usecase.
Relational databases stop working after a certain rate of transactions , that's usually above 1 million transactions per second.
From explanation of your post it looks like , your usecase needs a good mix of RDMBS and nosql/document store. But you need to write a better detailed explanation of other requirements of the usecase.