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 8000
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/DocuBlocks/Rest/Graph/1_structs.md
Co-Authored-By: Jan <jsteemann@users.noreply.github.com>
  • Loading branch information
mchacki and jsteemann authored Jul 22, 2019
commit abd5bf19b416ea8445fe69be572475fdfed14fef
2 changes: 1 addition & 1 deletion Documentation/DocuBlocks/Rest/Graph/1_structs.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The replication factor used for every new collection in the graph.

@RESTSTRUCT{minReplicationFactor,graph_representation,integer,optional,}
The minimal replication factor used for every new collection in the graph.
If one shard has less then minimal replication factor copies, we cannot write
If one shard has less than minReplicationFactor copies, we cannot write
to this shard, but to all others.

@RESTSTRUCT{isSmart,graph_representation,boolean,required,}
Expand Down
0