From: Roger Heflin <rogerheflin@gmail.com>
To: Roland <devzero@web.de>
Cc: LVM general discussion and development <linux-lvm@redhat.com>
Subject: Re: [linux-lvm] bug? shrink lv by specifying pv extent to be removed does not behave as expected
Date: Sun, 9 Apr 2023 13:53:08 -0500 [thread overview]
Message-ID: <CAAMCDedPAgGgVd4FdkWyfWfu_aqWtUtEbFvevXiJE90UzmYEcA@mail.gmail.com> (raw)
In-Reply-To: <845e5b45-42d5-3d7f-bdad-a66ce7a2e5a9@web.de>
On Sun, Apr 9, 2023 at 1:21 PM Roland <devzero@web.de> wrote:
>
> > Well, if the LV is being used for anything real, then I don't know of
> > anything where you could remove a block in the middle and still have a
> > working fs. You can only reduce fs'es (the ones that you can reduce)
> > by reducing off of the end and making it smaller.
>
> yes, that's clear to me.
>
> > It makes zero sense to be able to remove a block in the middle of a LV
> > used by just about everything that uses LV's as nothing supports being
> > able to remove a block in the middle.
>
> yes, that critics is totally valid. from a fs point of view you completely
> corrupt the volume, that's clear to me.
>
> > What is your use case that you believe removing a block in the middle
> > of an LV needs to work?
>
> my use case is creating some badblocks script with lvm which intelligently
> handles and skips broken sectors on disks which can't be used otherwise...
>
> my plan is to scan a disk for usable sectors and map the logical volume
> around the broken sectors.
>
> whenever more sectors get broken, i'd like to remove the broken ones to have
> a usable lv without broken sectors.
>
> since you need to rebuild your data anyway for that disk, you can also
> recreate the whole logical volume.
>
> my question and my project is a little bit academic. i'd simply want to try
> out how much use you can have from some dead disks which are trash otherwise...
>
>
> the manpage is telling this:
>
>
> Resize an LV by specified PV extents.
>
> lvresize LV PV ...
> [ -r|--resizefs ]
> [ COMMON_OPTIONS ]
>
>
>
> so, that sounds like that i can resize in any direction by specifying extents.
>
>
> > Now if you really need to remove a specific block in the middle of the
> > LV then you are likely going to need to use pvmove with specific
> > blocks to replace those blocks with something else.
>
> yes, pvmove is the other approach for that.
>
> but will pvmove continue/finish by all means when moving extents located on a
> bad sector ?
>
> the data may be corrupted anywhy, so i thought it's better to skip it.
>
> what i'm really after is some "remap a physical extent to a healty/reserved
> section and let zfs selfheal do the rest". just like "dismiss the problematic
> extents and replace with healthy extents".
>
> i'd better like remapping instead of removing a PE, as removing will invalidate
> the whole LV....
>
> roland
>
Create an LV per device, and when the device is replaced then lvremove
the devices list. Once a sector/area is bad I would not trust the
sectors until you replace the device. You may be able to try the
pvmove multiple times and the disk may be able to eventually rebuild
the data.
My experience with bad sectors is once it reports bad the disks will
often rewrite it at the same location and call it "good" when it is
going to report bad again almost immediately, or be a uselessly slow
sector. Sometimes it will replace the sector on a
re-write/successful read but that seems unreliable.
On non-zfs fs'es I have found the "bad" file and renamed it
badfile.#### and put it in a dir called badblocks. So long as the bad
block is in the file data then you can contain the badblock by
containing the bad file. And since most of the disk will be file
data that should also be a management scheme not requiring a fs
rebuild.
The re-written sector may also be "slow" and it might be wise to treat
those sectors as bad, and in the "slow" sector case pvmove should
actually work. For that you would need a badblocks that "timed" the
reads to disk and treats any sector taking longer that even say .25
seconds as slow/bad. At 5400 rpm, .25/250ms translates to around 22
failed re-read tries. If you time it you may have to do some testing
on the entire group of reads in smaller aligned sectors to figure out
which sector in the main read was bad. If you scanned often enough
for slows you might catch them before they are completely bad.
Technically the disk is supposed to do that on its scans, but even
when I have turned the scans up to daily it does not seem to act
right.
And I have usually found that the bad "units" are 8 units of 8
512-byte sectors for a total of around 32k (aligned on the disk).
_______________________________________________
linux-lvm mailing list
linux-lvm@redhat.com
https://listman.redhat.com/mailman/listinfo/linux-lvm
read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
next prev parent reply other threads:[~2023-04-09 18:53 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-09 15:05 [linux-lvm] bug? shrink lv by specifying pv extent to be removed does not behave as expected Roland
2023-04-09 17:32 ` Roger Heflin
2023-04-09 18:21 ` Roland
2023-04-09 18:53 ` Roger Heflin [this message]
2023-04-09 22:04 ` Roland
2023-04-09 23:50 ` Stuart D Gathman
2023-04-12 10:20 ` Zdenek Kabelac
2023-04-12 11:51 ` Roberto Fastec
2023-04-12 12:37 ` Roland
2023-04-12 13:16 ` Zdenek Kabelac
2023-04-12 13:53 ` Roberto Fastec
[not found] <1043528017.520337.1681071486811.ref@mail.yahoo.com>
2023-04-09 20:18 ` matthew patton
2023-04-11 7:14 ` Roland
2023-04-12 9:24 ` Roberto Fastec
2023-04-12 9:28 ` Roberto Fastec
2023-04-11 17:05 ` Roger Heflin
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=CAAMCDedPAgGgVd4FdkWyfWfu_aqWtUtEbFvevXiJE90UzmYEcA@mail.gmail.com \
--to=rogerheflin@gmail.com \
--cc=devzero@web.de \
--cc=linux-lvm@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).