How to improve the mounting speed of file system? #13677
Unanswered
1414529969
asked this question in
Q&A
Replies: 1 comment
-
ZIL has to be replayed during mount, unless you mount read-only. You can reduce the amount of data in ZIL by clean pool export or reducing transaction group size by reducing amount of dirty data in ARC (in case you have too much RAM and slow storage). But it is usually not so big problem, since ZIL covers only one TXG, which usually covers only few seconds of traffic. There was scenario when repeating rewrite of the same data could stretch ZIL to huge sizes, but it was fixed some time ago. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
As far as I know, ZFS file system will synchronize ZIL to disk before mounting. If there is too much data in ZIL, the ZFS file system will be mounted slowly. So, how to improve the mounting speed of file system?
Beta Was this translation helpful? Give feedback.
All reactions