You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. why is the gc copying all the pages in the block each time and not only some of them ? the GARBAGE_COLLECTION method is writing the "write amplification" stats to the socket but for some reason it's always 9. i already removed the += but i need to understand why the copy_page_nb is 9 (is this a bug?)
#9
Closed
davidsaOpenu opened this issue
Feb 17, 2016
· 4 comments
It isn't a bug.
The flash device can't rewrite a single page, because erase operation required.
The minimal erase operation can erase block not a page.
In this case block is 10 pages.
After erase the block, the data of 9 page must be written back.
This is a reason of 9 over writes for each written new page.
No description provided.
The text was updated successfully, but these errors were encountered: