2

Our vob storage is growing so rapidly. We used to scrub once a week but nowadays we have to scrub every 8 hrs what could have created this problem? what are the ways to control this? what logs can I look into?

user2370590
  • 837
  • 1
  • 16
  • 31

2 Answers2

1

The scrub man page mentions:

Deleting event records and other metadata from the VOB database, using the vob_scrubber or any other mechanism (rmver, rmelem, relocate, and so on), increases the amount of free space in the database, but does not reduce the disk space used by the VOB database.
A regularly scrubbed VOB database grows slowly and should not require further intervention to keep growth under control.
However, if you must occasionally force a reduction in the size of a VOB database, scrub it, and then run the reformatvob command.

With ClearCase 8, you also have the scrubber command to consider, with its associated logs:

  • UNIX and Linux— /var/adm/rational/clearcase/log/scrubber_log
  • Windows— ccase-home-dir\var\log\scrubber_log

You also have advices in this thread for older versions of ClearCase, but with some of them which still applie for CC7+ and CC8.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
1

Aside from what has been said previously by VonC, I would also invite you to look at your storage pools.

As you know, the vob storage is made of 3 type of pools (source storage pool, cleartext storage pool, and derived object pool) See IBM page about pool storage

The source storage pool can increase more than usual if you tend to check in more elements version than usual, especially large binary files for example.

The cleartext pool can increase more than usual if you create a lot temporary cleartext data. Typically if you set up a script that access all the files of the VOB, you will generate a lot of cleartext.

The derived object pool increase if you generate a lot of DOs (derived objects) via clearmake or if a lot of derived objects created on the clients are promoted to the server. You may want to check if you perform winkin and if the views created share their DOs.

So I would suggest you to monitor which pool is increasing the most (s\sdft, c\cdft or d\ddft). It will give you a hint about what is happening in your VOB.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
iclman
  • 1,218
  • 9
  • 21