Reputation: 319
Could you please share your insight about scalability?
Let's say I have a simple following MySQL/RDBMS db for tree-like discussion:
Tables:
The idea is to perform less-frequent writes (contrary to more-frequent reads) into this RDBMS structure and after write rebuild cache for entire discussion into some read cache (probably document db), where is stored format that can be served without further processing to the client.
1./ How far can we go in reality with this layout? I mean, we have only 3 tables here. Is there any obvious bottleneck? Like rebuilding of indexes, some table-level-locking,... on each insert in tables, that should have hundred of gigabites and more?
2./ Will it be more reasonable to use document database also for writes, because e.g. they could handle better physical locking for smaller parts?
3./ Any other ideas / better solutions?
Many thanks.
Upvotes: 0
Views: 132
Reputation: 1057
Well, managing high load is very comprehensive task, so you can try your luck on https://dba.stackexchange.com/ for example
Initial thoughts
Upvotes: 1