SUMMARY
Some legacy systems will incorrectly report D2D as 200GB following a reimage
ISSUE
The default value for D2DBackups is 200GB. Usually on a legacy system this can be directly modified from the storage menu. Under certain circumstances you may not be able to increase this value. If the system is licensed correctly, then this article will allow you to modify the limits for D2DBackups.
RESOLUTION
Starting with 10.1.x the D2D storage can be auto-configured via Satori UI and the following steps:
Under Configure > Appliances, down to the storage tab and select then edit the internal storage listing
Set IR allotment to 1% (expecting shows as 0%) and then rerun smgr_display after saving the change.
smgr_display should now reflect correct D2D storage listing
If not follow below steps instead:
*** Caution: For advanced users only. ***
*** May cause un-repairable damage! ***
The bp.nvp table holds several defaults for the system. One of these is the D2D backups limit. To verify it is incorrectly set, run the following query:
psql -U postgres bpdb -c "select * from bp.nvp where item_name='D2D'"
If the value is set to 200, or to a negative number, then this is the cause of the problem. Refer to the following table to determine the appropriate device D2D value (if the device is not in the list, retrieve the value from the license).
Applicance (Raw Capacity) |
MUX |
D2D |
RC312 (2 TB) |
6 |
1400 |
RC313 (3 TB) |
6 |
2200 |
RC712 (4 TB) |
7 |
3150 |
RC713 (6 TB) |
7 |
4900 |
RC813 (9 TB) |
8 |
7500 |
RC822 (13 TB) |
8 |
10500 |
RC823 (19 TB) |
8 |
16000 |
RC824 (25 TB) |
10 |
21400 |
RC833 (31 TB) |
10 |
26300 |
RC943 (97 TB) |
20 |
86500 |
NEXT GEN |
|
|
RC201 (1 TB) |
4 |
820 |
RC602 (2 TB) |
6 |
1400 |
RC603 (3 TB) |
6 |
2200 |
RC713S (6 TB) |
7 |
4800 |
RC714S (8 TB) |
8 |
6000 |
RC814S (12 TB) |
8 |
9900 |
RC823S (19 TB) |
8 |
16000 |
RC824S (25 TB) |
10 |
21400 |
RC933S (37 TB) |
10 |
32600 |
RC936S (73 TB) |
10 |
66200 |
RC943S (97 TB) |
20 |
88400 |
Using the D2D value for your unit (7500 in this example) run the following command to update D2D in bp.nvp:
psql -U postgres bpdb -c "update bp.nvp set item_value='7500.000000' where item_name='D2D'"
Now, confirm that the new item value has been updated appropriately.
psql -U postgres bpdb -c "select * from bp.nvp where item_name='D2D'" nvp_type | nvp_name | item_name | item_value ----------+---------------+-----------+-------------- system | configuration | D2D | 7500.000000 (1 row)
After this, 'service httpd restart'
Then under Satori UI > Configure > Appliances, Storage > Internal, edit and adjust storage allotment for IR up then down and save to have UI adjust D2D configuration.
Once saved restart 'rcscript stop;rcscript start' services to affect smgr reservations.