patterns/sharding/ #65
Replies: 1 comment
-
Is your implementation consistent hashing? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
patterns/sharding/
Intent Sharding pattern means divide the data store into horizontal partitions or shards. Each shard has the same schema, but holds its own distinct subset of the data. A shard is a data store in its own right (it can contain the data for many entities of different types), running on a server acting as a storage node.
https://java-design-patterns.com/patterns/sharding/
Beta Was this translation helpful? Give feedback.
All reactions