Distributed Database Design
Whether the database is centralized or distributed, the design principles and concepts are same. However, the design of a distributed database introduces three new issues:
• How to partition the database into fragments.
• Which fragments to replicate.
• Where to locate those fragments and replicas.
Data fragmentation and data replication deal with the first two issues and data allocation deals with the third issue.
Add a comment