Skip to content
Snippets Groups Projects
Commit cbd894ba authored by Peter J. Keleher's avatar Peter J. Keleher
Browse files

auto

parent 17141daf
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,10 @@ LBFS exploits commonality to save bandwidth
### Why are we not all using this paper?
### Comments:
- like to see chunking implemented! (awesome, I will add to project2)
- close-to-open consistency limiting for collaboration - olivia
- why not rsync? (two files)
- but isn't that enough?
- consistency
......
......@@ -81,12 +81,11 @@ What happens in a checkpoint?
write cost = (total bytes read and written)/write new
= (read segs + write live + write new)/ write new
= (N + N*u + N*(1-u)) / (N * (1-u))
= 2/(1-u)
= 2N / (N * (1-u))
= 2 / (1-u)
```
"write amplification"
If utilization goes up?
many policies:
- segregate on age, file size etc.
......@@ -94,12 +93,16 @@ many policies:
# Comments from students
- most interesting is crash recover (fast!)
- couldn't work today because not enough memory to cache
- how deal w/ SSD's? (answer: log still gives: aggregation and fault tolerance)
- sprite LFS "Outperform Unix in all cases but one (files read sequentially after being written randomly)." How often does this happen and why does Sprite fail here?
- what happens with the write request when there is actually not enough space in disk (force clean) (does really crappy when near full)
- turn immutable by skipping the cleaner!
- a bit similar to virtual memory - yancheng
- overstated performance gains, large cache a vulnerability - dev
- how async writes combined to one ? Also, balance w/ disaster recovery - minwei
- FFS vs LFS picture a bit unclear
- likes the discussion of "log as truth" and compaction in DBs - armaan
- informal tone
- log-structuring and defrag, temporal locality - olivia
- should have looked at read performance, data integrity
## LFS summary:
- Handle reads through caching, and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment