Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionCorey Marthaler
2015-08-26 22:36:53 UTC
Description of problem:
This may be expected behavior, but it took me a long time to figure out why I was starting to see these errors with just a single virt create attempt yet didn't see it with other types of volume attempts.
[root@host-112 archive]# vgs
VG #PV #LV #SN Attr VSize VFree
rhel_host-112 1 2 0 wz--n- 7.51g 40.00m
[root@host-112 archive]# pwd
/etc/lvm/archive
[root@host-112 archive]# ls -l snapper_thinp* | wc -l
31019
[root@host-112 archive]# ls -l vg* | wc -l
4
[root@host-112 archive]# vgcreate vg /dev/sda1
Volume group "vg" successfully created
[root@host-112 archive]# vgcreate snapper_thinp /dev/sdb1
Volume group "snapper_thinp" successfully created
[root@host-112 archive]# lvcreate --thinpool POOL1 -L 1G vg
Logical volume "POOL1" created.
[root@host-112 archive]# lvcreate --thinpool POOL1 -L 1G snapper_thinp
Logical volume "POOL1" created.
[root@host-112 archive]# lvcreate --virtualsize 1G -T vg/POOL1 -n origin
Logical volume "origin" created.
[root@host-112 archive]# lvcreate --virtualsize 1G -T snapper_thinp/POOL1 -n origin
Internal error: Reserved memory (19165184) not enough: used 20692992. Increase activation/reserved_memory?
Logical volume "origin" created.
[root@host-112 archive]# lvs -a -o +devices
LV VG Attr LSize Pool Data% Meta% Devices
POOL1 snapper_thinp twi-aotz-- 1.00g 0.00 1.07 POOL1_tdata(0)
[POOL1_tdata] snapper_thinp Twi-ao---- 1.00g /dev/sdb1(1)
[POOL1_tmeta] snapper_thinp ewi-ao---- 4.00m /dev/sdb1(257)
[lvol0_pmspare] snapper_thinp ewi------- 4.00m /dev/sdb1(0)
origin snapper_thinp Vwi-a-tz-- 1.00g POOL1 0.00
POOL1 vg twi-aotz-- 1.00g 0.00 1.07 POOL1_tdata(0)
[POOL1_tdata] vg Twi-ao---- 1.00g /dev/sda1(1)
[POOL1_tmeta] vg ewi-ao---- 4.00m /dev/sda1(257)
[lvol0_pmspare] vg ewi------- 4.00m /dev/sda1(0)
origin vg Vwi-a-tz-- 1.00g POOL1 0.00
If I try and create other types of volumes on the volume group snapper_thinp I don't see this error.
Version-Release number of selected component (if applicable):
3.10.0-306.el7.x86_64
lvm2-2.02.128-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
lvm2-libs-2.02.128-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
lvm2-cluster-2.02.128-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
device-mapper-1.02.105-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
device-mapper-libs-1.02.105-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
device-mapper-event-1.02.105-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
device-mapper-event-libs-1.02.105-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
device-mapper-persistent-data-0.5.5-1.el7 BUILT: Thu Aug 13 09:58:10 CDT 2015
cmirror-2.02.128-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
sanlock-3.2.4-1.el7 BUILT: Fri Jun 19 12:48:49 CDT 2015
sanlock-lib-3.2.4-1.el7 BUILT: Fri Jun 19 12:48:49 CDT 2015
lvm2-lockd-2.02.128-1.el7 BUILT: Tue Aug 18 03:45:17 CDT 2015
Comment 1Jonathan Earl Brassow
2016-01-22 15:44:21 UTC
We have 'retain_min' and 'retain_days', which ensure preservation of archive files, but we have nothing to set the upper bound for shorter time periods than 'retain_days'.
If you set 'retain_days' to, say '1', then after a day, any files that are more than a day old will be removed... as long as the most recent 'retain_min' are always kept.
Try that and see if you like it as a solution. If not, you can reopen this bug.