-
Is there any document explaining the meaning of these columns? Thanks! It seems columns #3 and #4 are the averages and total times to execute each operation. How about column #5 (where some are over 100%)? The profiling doc does not have a column ?#5. https://github.com/juicedata/juicefs/blob/main/docs/en/operations_profiling.md |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The "Percent(%)" column equals For operation that percentage over 100%, it means there're multiple processes or multiple threads call this operation. |
Beta Was this translation helpful? Give feedback.
The "Percent(%)" column equals
Total(us) / Interval
. For example in your "example output 2", theTotal(us)
oflookup
operation is 2517482, the default value ofInternal
is 2 seconds (specify by--interval
option), so2517482 / 2000000 * 100 = 125.9
.For operation that percentage over 100%, it means there're multiple processes or multiple threads call this operation.