Hi,
Thin provision: is when the disk is created but the size of the disk is equal to the size of the content. Lower write performance.
Thick provision lazy zeroed: the disk created has the same size as the storage on the storage, but the blocks inside are initialized immediately before being written. Average performance.
Thick provision eager zeroed: the disk has the same dimensions as the ones that are set but the blocks inside are cleared at the time of creation, so the performance will be better.
Alessandro Romeo