Skip to content

added documentation for minReplicationFactor #296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/Drivers/Java/Reference/Collection/CollectionManipulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ then returns collection information from the server.
automatically and one of the servers holding copies take over, usually
without an error being reported.

- **minReplicationFactor**: `Integer`

(optional, default is 1): in a cluster, this
attribute determines how many copies of each shard are required
to be in sync on the different DBServers. If we have less then these
many copies in the cluster a shard will refuse to write. The
minReplicationFactor can not be larger than replicationFactor.
Please note: during server failures this might lead to writes
not being possible until the failover is sorted out and might cause
write slow downs in trade of data durability.

- **satellite**: `Boolean`

If the true the collection is created as a satellite collection.
Expand Down
11 changes: 11 additions & 0 deletions docs/Drivers/Java/Reference/Graph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@ name of the graph and a definition of its edges.
automatically and one of the servers holding copies take over, usually
without an error being reported.

- **minReplicationFactor**: `Integer`

(optional, default is 1): in a cluster, this
attribute determines how many copies of each shard are required
to be in sync on the different DBServers. If we have less then these
many copies in the cluster a shard will refuse to write. The
minReplicationFactor can not be larger than replicationFactor.
Please note: during server failures this might lead to writes
not being possible until the failover is sorted out and might cause
write slow downs in trade of data durability.

- **numberOfShards**: `Integer`

The number of shards that is used for every collection within this graph.
Expand Down