why does juicefs have multiple storage layer? #323
Answered
by
xiaogaozi
frankxieke
asked this question in
Q&A
-
The storage format of one file in JuiceFS consists of three levels. I am wondering why juicefs design these three levels? Could you give me a hint? |
Beta Was this translation helpful? Give feedback.
Answered by
xiaogaozi
Apr 19, 2021
Replies: 2 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
The short answer is: "chunk" is for speed-up seek big file, "slice" is for random write file, "block" is for speed-up read from and write to object storage. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
xiaogaozi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The short answer is: "chunk" is for speed-up seek big file, "slice" is for random write file, "block" is for speed-up read from and write to object storage.