Operating System - OpenVMS
1819847 Members
2613 Online
109607 Solutions
New Discussion юеВ

Re: Maximum cluster size for disks

 
SOLVED
Go to solution
Bart Zorn_1
Trusted Contributor

Maximum cluster size for disks

HELP INIT /CLUSTER states the following on both V7.3-2 and V8.2:

/CLUSTER_SIZE=number-of-blocks

Defines, for disk volumes, the minimum allocation unit in blocks.
The maximum size you can specify for a volume is 16382 blocks, or 1/50th the volume size, whichever is smaller.

The DCL Dictionary gives the same information.

Because I wanted to init a disk with a large cluster size (it needs to accomodate only a few very large files) and because I did not bother to read the help file upfront, I tried /CLUS=32768. INIT did not complain and afterwards, SHOW DEV/FULL displayed a cluster size of 32768.

Does anyone here know what the REAL maximum cluster size is?

Regards,

Bart Zorn

3 REPLIES 3
Wim Van den Wyngaert
Honored Contributor
Solution

Re: Maximum cluster size for disks

"The maximum cluster size for any volume is one hundredth the size of the volume".

help/mes/fac=init cluster

They must have forgotten to correct the doc.

Wim
Wim
Bart Zorn_1
Trusted Contributor

Re: Maximum cluster size for disks

Indeed, there it is!

That leaves me a cluster size that is surely big enough! (on a 600 GB disk).

Thanks,

Bart
faris_3
Valued Contributor

Re: Maximum cluster size for disks

It seems that at least for V7.3-2, it is possible to have a cluster size of about
1/50 of the volume size :

1462 OR .VOLUME_SIZE / .CLUSTER LSS 50
1463 THEN ERR_EXIT (INIT$_CLUSTER);

Have not tested it though.