8000 Bug fix 3.5/min replication factor by mchacki · Pull Request #9524 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Bug fix 3.5/min replication factor #9524

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 23 commits into from
Jul 22, 2019
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
88898e5
Cherry-pick minReplicationFactor
mchacki Jul 19, 2019
e1b4318
Bug fix/failover with min replication factor (#9486)
mchacki Jul 19, 2019
676dacb
Removed merge conflict leftovers 0o, i should not trust the IDE
mchacki Jul 19, 2019
c0a2f49
Update js/apps/system/_admin/aardvark/APP/frontend/js/views/collectio…
mchacki Jul 22, 2019
ac7c442
Update js/apps/system/_admin/aardvark/APP/frontend/js/views/collectio…
mchacki Jul 22, 2019
217a97e
Update Documentation/Books/Manual/Architecture/Replication/README.md
KVS85 Jul 22, 2019
1e30086
Update CHANGELOG
KVS85 Jul 22, 2019
28da794
Update Documentation/Books/Manual/DataModeling/Collections/DatabaseMe…
KVS85 Jul 22, 2019
9cba4e8
Update Documentation/Books/Manual/ReleaseNotes/NewFeatures35.md
KVS85 Jul 22, 2019
dde5733
Update Documentation/DocuBlocks/Rest/Collections/1_structs.md
KVS85 Jul 22, 2019
0b2a9fd
Update js/apps/system/_admin/aardvark/APP/frontend/js/views/graphMana…
KVS85 Jul 22, 2019
991e886
Update js/apps/system/_admin/aardvark/APP/frontend/js/views/graphMana…
KVS85 Jul 22, 2019
abd5bf1
Update Documentation/DocuBlocks/Rest/Graph/1_structs.md
mchacki Jul 22, 2019
8154144
Apply suggestions from code review
mchacki Jul 22, 2019
4c6685e
Adepted review requests, thanks for finding!
mchacki Jul 22, 2019
8b106c7
Merge branch 'bug-fix-3.5/minReplicationFactor' of ssh://github.com/a…
mchacki Jul 22, 2019
4216052
Removed unnecessary const
mchacki Jul 22, 2019
314600a
Apply suggestions from code review
mchacki Jul 22, 2019
28e54e7
Moved initilization of variable more downwards
mchacki Jul 22, 2019
a284e66
Apply lock before notify_all()
mchacki Jul 22, 2019
0144f4e
Remove documentation except DocuBlocks, covered by PR in docs repo
Simran-B Jul 22, 2019
70c2b0f
Remove accidental indent
Simran-B Jul 22, 2019
ecc031e
Merge branch '3.5' into bug-fix-3.5/minReplicationFactor
KVS85 Jul 22, 2019
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
Prev Previous commit
Next Next commit
Update Documentation/Books/Manual/ReleaseNotes/NewFeatures35.md
Co-Authored-By: Jan <jsteemann@users.noreply.github.com>
  • Loading branch information
KVS85 and jsteemann authored Jul 22, 2019
commit 9cba4e8f555170ffcbe0e68b2cf9e73bcd75e01c
2 changes: 1 addition & 1 deletion Documentation/Books/Manual/ReleaseNotes/NewFeatures35.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Collections
-----------

All collections now support a minimum replication factor (minReplicationFactor) property.
This is default set to `1`, which is identical to previous behaviour.
This is default set to `1`, which is identical to previous behavior.
If in a failover scenario a shard of a collection has less than minReplicationFactor many insync followers it will go into "read-only" mode and will reject writes until enough followers are insync again.
In more detail:
Having `minReplicationFactor == 1` means as soon as a "master-copy" is available of the data
Expand Down
0