-
Notifications
You must be signed in to change notification settings - Fork 7k
Use one memory mapped file for plasma #3871
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
robertnishihara
merged 37 commits into
ray-project:master
from
pcmoritz:ray-plasma-one-file
Feb 7, 2019
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
394c85d
use one memory mapped file for plasma
pcmoritz c03992f
rebase
pcmoritz 5986a49
Update pom.xml for arrow
05580d7
Fix java test by copy part code of https://github.com/ray-project/ray…
97209a4
temp commit: try increased timeout for valgrind
pcmoritz 523b3a3
update
pcmoritz c4818b5
update
pcmoritz e2beda8
update
pcmoritz 05ae552
fix
pcmoritz bafcbac
fix deserialization codepath too
pcmoritz a6ab285
update
pcmoritz dc9bc58
update
pcmoritz cb7ed7c
debug
pcmoritz 3a48208
debug 2
pcmoritz 1c6142a
update
pcmoritz b4e7edf
update
pcmoritz 3801737
debug
pcmoritz e9ee35b
update
pcmoritz b38626d
update
pcmoritz a50e6af
debug upstream
pcmoritz bfa3e33
update
pcmoritz ae5992d
update
pcmoritz b31009a
Merge branch 'master' into ray-plasma-one-file
pcmoritz 978d660
update
pcmoritz 3061f92
Merge branch 'ray-plasma-one-file' of github.com:pcmoritz/ray-1 into …
pcmoritz 3583ad1
update
pcmoritz 420a6b9
update
pcmoritz ea4ab5a
update
pcmoritz 3f6b241
update
pcmoritz 414736f
update
pcmoritz e9bc574
update
pcmoritz 513ad14
update
pcmoritz ce71019
update
pcmoritz 32cdc25
update
pcmoritz a0b6179
update
pcmoritz 90fe323
update
pcmoritz d3ab3d7
roll back
pcmoritz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was needed because the space calculations in plasma are now done slightly differently (there can now be a discrepancy between the plasma store memory and the size of the memory mapped files, in practice I have seen < 10%).
This change is to be on the safe side to prevent flakiness. With 0.8 here I was still seeing test_simple and test_recursive in stress_tests.py failing occasionally.