2

私は次の設定をしています:

Red Hat Gluster Server 上の 1 つのシンプールと 1 つの論理ボリュームを持つハードウェア RAID 上の 12 台のドライブを超える LVM ボリューム グループ。次のようになります。

root@server:pts/1 - [17:33]
~ % pvs
  PV         VG  Fmt  Attr PSize  PFree
  /dev/sdb   vg0 lvm2 a--  36.38t    0

root@server:pts/1 - [17:34]
~ % vgs
  VG  #PV #LV #SN Attr   VSize  VFree
  vg0   1   2   0 wz--n- 36.38t    0

root@server:pts/1 - [17:34]
~ % lvs
  LV      VG  Attr       LSize  Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
  gluster vg0 Vwi-aot--- 30.02t tp0         7.06
  tp0     vg0 twi-aot--- 36.35t             5.83   0.36

そして今、グーグルと同様に難しい部分ですが、解決策が得られませんでした. 仮想サイズが 30 TB のシンプールにある LV "gluster" のサイズを変更したいと考えています。すべての拡張機能とサイズ変更機能を試しましたが、LVM のマニュアル ページには何も表示されませんでした。それで、ここで助ける方法を知っているかもしれませんか?

4

1 に答える 1

9

シン プール論理ボリュームのサイズを次のように変更して、30TB から 35TB にサイズ変更できます。

lvextend -L 35T vg0/gluster

この情報は で見つかりましたman lvmthin:

   Manually manage free data space of thin pool LV

       The available free space in a thin pool LV can be displayed with the lvs command.  Free space can be added by extending the thin pool LV.

       Command to extend thin pool data space:
       lvextend -L Size VG/ThinPoolLV

       Example
       1. A thin pool LV is using 26.96% of its data blocks.
       # lvs
         LV    VG           Attr       LSize   Pool  Origin Data%
         pool0 vg           twi-a-tz--  10.00g               26.96

       2. Double the amount of physical space in the thin pool LV.
       # lvextend -L+10G vg/pool0

       3. The percentage of used data blocks is half the previous value.
       # lvs
         LV    VG           Attr       LSize   Pool  Origin Data%
         pool0 vg           twi-a-tz--  20.00g               13.48

       Other methods of increasing free data space in a thin pool LV include removing a thin LV and its related snapsots, or running fstrim on the file system using a thin LV.
于 2016-11-14T15:40:02.243 に答える