all lists on lists.proxmox.com
 help / color / mirror / Atom feed
From: Dominik Csapak <d.csapak@proxmox.com>
To: Proxmox VE user list <pve-user@lists.proxmox.com>,
	Leandro Roggerone <leandro@tecnetmza.com.ar>,
	PVE User List <pve-user@pve.proxmox.com>
Subject: Re: [PVE-User] LVM question
Date: Mon, 12 Apr 2021 08:48:48 +0200	[thread overview]
Message-ID: <2509fa63-a5b2-658a-610f-0497202d2f6f@proxmox.com> (raw)
In-Reply-To: <CALt2oz5wn1LcPSi1JzqsNRszn3abyVieqDH5BqML8G1zOTjxTg@mail.gmail.com>

Hi,

On 4/9/21 19:19, Leandro Roggerone wrote:
> Hi guys , after install a new storage to my box , had to create lvm-thin.
> Im not very good with lvm , after reading some docs , and links like:
> https://forum.proxmox.com/threads/how-to-create-an-lvm-thinpool-and-vz-directory-on-the-same-disk.62901/
> 
> I got a working solution  but have also some questions about it.
> This is what I did:
> 
>   wipefs -a /dev/sdb
> 
> sgdisk -N 1 /dev/sdb
> 
> pvcreate --metadatasize 1024M -y -ff /dev/sdb1
> 
> vgcreate --metadatasize 1024M proxvg /dev/sdb1
> 
> lvcreate -l 100%FREE --poolmetadatasize 1024M --chunksize 256 -T -n
> proxthin proxvg
> 
> lvcreate -n proxvz -V 1.1T proxvg/proxthin
> 
> mkfs.ext4 /dev/proxvg/proxvz
> 
> mkdir /media/vz
> 
> echo '/dev/proxvg/proxvz /media/vz ext4 defaults,errors=remount-ro 0 2' >>
> /etc/fstab
> 
> mount -a
> 
> 
> And have following result:
> 
> 
> root@pve2:~# lvs
>    LV            VG     Attr       LSize    Pool     Origin Data%  Meta%
>   Move Log Cpy%Sync Convert
>    proxthin      proxvg twi-aotz--    1.63t                 22.03  6.34
> 
>    proxvz        proxvg Vwi-aotz--    1.10t proxthin        1.67
> root@pve2:~# lvdisplay
>    --- Logical volume ---
>    LV Name                proxthin
>    VG Name                proxvg
>    LV UUID                4cEIr9-3ZVQ-vsy1-q9ZX-GsaD-7oq0-pZixsX
>    LV Write Access        read/write
>    LV Creation host, time pve2, 2021-04-01 13:09:41 -0300
>    LV Pool metadata       proxthin_tmeta
>    LV Pool data           proxthin_tdata
>    LV Status              available
>    # open                 3
>    LV Size                1.63 TiB
>    Allocated pool data    22.03%
>    Allocated metadata     6.34%
>    Current LE             428451
>    Segments               1
>    Allocation             inherit
>    Read ahead sectors     auto
>    - currently set to     256
>    Block device           253:2
> 
>    --- Logical volume ---
>    LV Path                /dev/proxvg/proxvz
>    LV Name                proxvz
>    VG Name                proxvg
>    LV UUID                huzpPT-g0Gd-3Jwb-2ydz-InHh-73vN-Jnc5TR
>    LV Write Access        read/write
>    LV Creation host, time pve2, 2021-04-01 13:10:12 -0300
>    LV Pool name           proxthin
>    LV Status              available
>    # open                 1
>    LV Size                1.10 TiB
>    Mapped size            1.67%
>    Current LE             288359
>    Segments               1
>    Allocation             inherit
>    Read ahead sectors     auto
>    - currently set to     256
>    Block device           253:4
> 
> 
> Have following comments:
> 
> I can create VMs on proxthin partition so it is ok.
> 
> I can create backup on  proxvz partition so it is ok.

Looks OK imho.

> 
> What im concerned about is:
> 
> Physic storage space is about 1.8TG , how is it possible to create a 1.6
> and 1.1T volumnes inside ?

LVM Thin is 'thin-provisioned' it only uses space when it is really written.

> It can be a problem in the future ?

yes, if you do not monitor your real usage, if the thinpool runs full,
you can lose data.

> I was thinking about reduce proxthin partition to 600Gb aprox , so it make
> same sense 1.1T + 600G aprox 1.8 T
> But there is no LV Path on proxthin partition so I can unmount and the
> reduce.
> So ..
> What im missing here ? do I need to reduce proxthin partition ( I do need
> the 1.1T partition to backup).

the LV 'proxvz' is inside the thinpool 'proxthin' so as long as you
never allocate more that ~500GiB of vm/ct volumes, it should be fine.

alos, on allocation, the thinpool will print warnings if the allocated
lvs are bigger than the space available

hope this helps

> Hope to be clear about this guys.
> Any comment would be wellcome.
> Leandro.
> _______________________________________________
> pve-user mailing list
> pve-user@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-user
> 
> 





  reply	other threads:[~2021-04-12  6:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-09 17:19 Leandro Roggerone
2021-04-12  6:48 ` Dominik Csapak [this message]
2021-04-12 11:12   ` Leandro Roggerone

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2509fa63-a5b2-658a-610f-0497202d2f6f@proxmox.com \
    --to=d.csapak@proxmox.com \
    --cc=leandro@tecnetmza.com.ar \
    --cc=pve-user@lists.proxmox.com \
    --cc=pve-user@pve.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal