RavenDB Sharding
Ayende published two articles on implementing sharding with RavenDB: first one using a default round robin strategy here and the second one sharding based on a set of rules here.
What I’ve noticed in these posts:
- RavenDB requires defining the actual shard servers in your sharding implementation (i.e. in your source code)
-
when performing writes there’re a bunch of round trips (for id generation)
Original title and link: RavenDB Sharding (©myNoSQL)