/* Convert all kibibyte values in the database to byte values */
UPDATE vmgr_tape_denmap
SET native_capacity = native_capacity * 1024;
UPDATE vmgr_tape_pool
SET capacity = capacity * 1024;
As you can see the internal accounting numbers are multiplied with a factor 1024 which obviously confuses the CIP. The new CIP (2.2.0) has code to deal with this, but we can backport it to the current one. The caveat is that not all CASTOR instances may have been updated; we will check that.
No comments:
Post a Comment