Fixed size disk vs dynamically allocated: is there a performance difference on an SSD?

8

1

When using a virtual disk, I understand that on a HDD there is often a write speed penalty while the drive is still growing. But for an SSD is this penalty mostly eliminated? Is there any other advantage of using a fixed size?

Louis

Posted 2012-01-23T07:30:59.833

Reputation: 18 859

Answers

7

I don't think that a fixed sized virtual disk give that much difference. The opposite may be true because I've experienced a lot of problem with sparse file allocation on some embedded devices. Hence using a SSD instead of a HDD doesn't simplified solving the task. A fixed disk size would just eat up all free disk space and SSD is still an expensive storage hence I wouldn't recommend to use a fixed size disk on a SSD.

Gigamegs

Posted 2012-01-23T07:30:59.833

Reputation: 1 784

1

It depends on what you call noticeable.

Probably the most noticable difference I see between fixed sized disks and dynamic sized disks are when you build a differencing disks. The performance gains using a differencing disk is huge if the parent disk is a fixed disk.

On an SSD, technically the penalty still exists. Just not as noticeable.

Like anything performance related, it is best to build a real example and run a benchmark. Talking about a performance situation doesn't generate performance metrics.

surfasb

Posted 2012-01-23T07:30:59.833

Reputation: 21 453