Using LVM, what are the performance implications of using thinpool
on an logical volume?
Asked
Active
Viewed 4,977 times
8
Tom Hale
- 1,005
- 1
- 12
- 23
2 Answers
3
It depends of type of drive below it. When that's a ssd drive (where random access is simmilar to linear access) - there will be no difference. When using snapshot - there can be some performance boost. But - if there is a magnetic drive(where random access is much slower than linear access) - there will be some performance loss because of jumps to different areas of disk.
undefine
- 956
- 8
- 20
-
What about the lookup of what blocks are where on the disk? – Tom Hale Jan 02 '17 at 04:58
-
1that's in metadata - and for "my" cases - metadata are small, so they're fully cached. – undefine Jan 02 '17 at 08:27
2
In normal operation, none. When snapshots are brought into the mix, thin provisioned LVs perform a lot better.
womble
- 95,029
- 29
- 173
- 228
-
1`In normal operation, none` -- How can this be true? There is an additional lookup of the block map in the meta volume for starters. How (metrics, measures) does thin-provisioning make performance `a lot better` with snapshots? – Tom Hale Oct 31 '16 at 11:11
-
If you have a more specific question to ask, you should ask that as a new question, rather than try to expand the scope of your question in a comment on an answer. – womble Oct 31 '16 at 20:59
-
4I'm not trying to increase the scope of my question. I'm simply asking for some evidence for your assertions. – Tom Hale Nov 01 '16 at 08:47