Closed GoogleCodeExporter closed 9 years ago
Also, i upload program for reproducing bug to github:
https://github.com/feniksa/leveldb_bug_219
Original comment by feniksgo...@gmail.com
on 3 Dec 2013 at 3:01
Potentially can be a duplicate of bug:
https://code.google.com/p/leveldb/issues/detail?id=144
Original comment by feniksgo...@gmail.com
on 3 Dec 2013 at 3:21
This bug should be addressable by Sanjay's proposed fd-based WritableFile.
What's happening here is the system is sending a SIGBUS to the app (which the
app doesn't catch) when LevelDB writes to a page that cannot be backed by space
in the file.
Original comment by res...@gmail.com
on 3 Dec 2013 at 3:24
Within current design we just can change ftruncate to fallocate to get correct
behavior of space allocation. You can merge this patch with git am:
git am --ignore-whitespace 0001-Fix-issue-144-219.patch
Original comment by feniksgo...@gmail.com
on 3 Dec 2013 at 5:30
Attachments:
1.15 release should have fixed this since we now use stdio on the write path.
Original comment by san...@google.com
on 10 Dec 2013 at 7:26
Original issue reported on code.google.com by
feniksgo...@gmail.com
on 2 Dec 2013 at 6:56