Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Importing a pool with corrupted log device #2099

Open
RyanHow opened this issue Feb 3, 2014 · 35 comments
Open

Importing a pool with corrupted log device #2099

RyanHow opened this issue Feb 3, 2014 · 35 comments
Labels
Type: Documentation Indicates a requested change to the documentation Type: Feature Feature request or new feature

Comments

@RyanHow
Copy link

RyanHow commented Feb 3, 2014

If a log device is corrupted, zpool import will refuse to import the pool. The workaround is to remove the actual device from the system, then zpool import -m to import the pool with the missing device.

It would be great to be able to zpool import -f (Or some other flag like -m) and import the pool regardless of the corrupt log device. The pool could then just import in a degraded state (like when a device is missing).

It just appears to be a hole in the zpool import command. Although data corruption in the log device could result in lost data, the only thing that you can really do in this case is import the pool regardless and continue on with the lost data.

@behlendorf behlendorf added this to the 0.6.5 milestone Feb 3, 2014
@behlendorf
Copy link
Contributor

@kartweel I agree, it would be nice to have an option for this in zpool import. It will result in data loss so it shouldn't be the default, but it seems like a reasonable option. This is also one of the reasons that log devices should be configured as mirrors is possible.

@tomposmiko
Copy link

There will be data loss only in case if the server was crashed before (in other words data should be read from the log device), am I wrong?

@behlendorf
Copy link
Contributor

@sopmot Your right. If there was no crash then there will be nothing on the log device which needs to be replayed.

@dswartz
Copy link
Contributor

dswartz commented Aug 25, 2014

If no-one objects, I'd like to take a shot at this...

@dswartz
Copy link
Contributor

dswartz commented Aug 25, 2014

Any ideas on how to simulate/reproduce this? I tried a VM with a 32GB pool disk and a 8GB slog disk. Set sync=always and started a big sequential write, then powered off the VM. Booted it from a rescue centos CD and overwrote a few hundred MB a couple of hundred MB into the log device (sdc), then rebooted into centos and tried to import the pool. It says the pool is faulted due to label issues and such. 'zpool status' doesn't even identify the presence of an slog device. I suspect I may have zeroed out too much stuff on /dev/sdc. If I export the pool and import it, it shows up OK including the presence of the log device. I'm wondering if I need to target the corruption more narrowly?

@behlendorf
Copy link
Contributor

@dswartz By all means. You should be able to cause this by powering off the VM while there are dirty records on the log device. Then before importing the pool I'd suggest damaging a few bytes in the label of the log device. This should cause it to fail the checksum and I'd expect recreate this issue.

@dswartz
Copy link
Contributor

dswartz commented Sep 3, 2014

Okay, back to work on this :)

@dswartz
Copy link
Contributor

dswartz commented Sep 4, 2014

Hmmm, not having a lot of luck with repro. Can you give me a hint as to how to find the label to damage it? I looked with zdb and it said there were 4 labels on /dev/sdc (the slog device). I got a bulk write going with sync=always dataset and confirmed traffic to the slog, but when I have managed to damage the slog device, it either doesn't show up at all, or it shows as faulted, but the pool mounts anyway?

@FransUrbo
Copy link
Contributor

I looked with zdb and it said there were 4 labels on /dev/sdc (the slog device).

Yes, two at the beginning and two at the end of the device. To find (destroy) the two last ones, you need to figure out the exact size of the device.

This is snippets from a script I wrote when I needed to backup the labels:

block_size=512
get_size=$((block_size*1024*18)) # *17 fails to get LABEL [23] !!
device_size=$(blockdev --getsize64 /dev/disk/by-id/$device)

# Setup file and loop device
truncate -s $device_size $device.bin
losetup /dev/loop0 $device.bin

# First 512k... and then some.
ddrescue -q -f -b $((get_size)) \
    -s $((get_size)) \
    /dev/disk/by-id/$device /dev/loop0

# Last 512k... and then some.
ddrescue -q -f -b $((get_size)) \
    -s $((get_size)) \
    -i $((device_size - get_size)) \
    -o $((device_size - get_size)) \
    /dev/disk/by-id/$device /dev/loop0

losetup -d /dev/loop0

@dswartz
Copy link
Contributor

dswartz commented Sep 4, 2014

Thanks for the tip. While thinking about this, I came up with a very simple way to simulate this. I added debug code to vdev_validate() to fake an error. Like so:

diff --git a/module/zfs/vdev.c b/module/zfs/vdev.c
index 0303eda..c77fba2 100644
--- a/module/zfs/vdev.c
+++ b/module/zfs/vdev.c
@@ -1362,6 +1362,12 @@ vdev_validate(vdev_t *vd, boolean_t strict)
return (0);
}

  •           if (vd->vdev_islog) {
    
  •                   vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
    
  •                       VDEV_AUX_CORRUPT_DATA);
    
  •                   return (0);
    
  •           }
    
    •       /*
             \* Determine if this vdev has been split off into another
             \* pool.  If so, then refuse to open it.
      

I booted with this zfs module. I then created a dataset with sync=always and started a dd from the root disk to a file on that dataset and confirmed it was using the SLOG. I then reset the VM. On reboot, I saw this:

[root@zolbuild ~]# zpool status
pool: git
state: FAULTED
status: An intent log record could not be read.
Waiting for adminstrator intervention to fix the faulted pool.
action: Either restore the affected device(s) and run 'zpool online',
or ignore the intent log records by running 'zpool clear'.
see: http://zfsonlinux.org/msg/ZFS-8000-K4
scan: scrub repaired 0 in 0h0m with 0 errors on Tue Sep 2 17:08:36 2014
config:

    NAME                             STATE     READ WRITE CKSUM
    git                              FAULTED      0     0     0  bad intent log
      pci-0000:00:10.0-scsi-0:0:1:0  ONLINE       0     0     0
    logs
      sdc                            FAULTED      0     0     0  corrupted data

which certainly sounds like the OP's complaint. I then ran 'zpool clear' and get this:

pool: git
state: DEGRADED
status: One or more devices could not be used because the label is missing or
invalid. Sufficient replicas exist for the pool to continue
functioning in a degraded state.
action: Replace the device using 'zpool replace'.
see: http://zfsonlinux.org/msg/ZFS-8000-4J
scan: scrub repaired 0 in 0h0m with 0 errors on Tue Sep 2 17:08:36 2014
config:

    NAME                             STATE     READ WRITE CKSUM
    git                              DEGRADED     0     0     0
      pci-0000:00:10.0-scsi-0:0:1:0  ONLINE       0     0     0
    logs
      5745074719075200392            FAULTED      0     0     0  was /dev/sdc1

What is odd at this point is that it won't let me remove either 'sdc' or '5745074719075200392' from the pool. Giving either as 'zpool remove git xxx' gives no error but doesn't change the pool. I had to remove the virtual log disk and export/import the pool to get it back clean.

@dswartz
Copy link
Contributor

dswartz commented Sep 4, 2014

It's even weirder than I thought! I did 'zpool export git', removed the virtual disk, did 'zpool import git' and got this (as expected):

[root@zolbuild ~]# zpool import git
The devices below are missing, use '-m' to import the pool anyway:
5745074719075200392 [log]

So I re-did the import with '-m' and now:

[root@zolbuild ~]# zpool status
pool: git
state: DEGRADED
status: One or more devices has been removed by the administrator.
Sufficient replicas exist for the pool to continue functioning in a
degraded state.
action: Online the device using 'zpool online' or replace the device with
'zpool replace'.
scan: scrub repaired 0 in 0h0m with 0 errors on Tue Sep 2 17:08:36 2014
config:

    NAME                             STATE     READ WRITE CKSUM
    git                              DEGRADED     0     0     0
      pci-0000:00:10.0-scsi-0:0:1:0  ONLINE       0     0     0
    logs
      5745074719075200392            REMOVED      0     0     0  was /dev/sdc1

So it still insists on the log disk, and I still can't remove it. I think I need to re-add the virtual disk and do a replace?

@dswartz
Copy link
Contributor

dswartz commented Sep 4, 2014

Wow, something is wrong - even that didn't work. I could NOT get rid of the log disk. I wonder if that is because I had that debug code in vdev_validate? Even if so, why would it need to validate a device being removed from the pool?

@dswartz
Copy link
Contributor

dswartz commented Sep 5, 2014

Ok, there may be a bug there (inability to remove the log disk from the pool with no errors), but I cannot reproduce it (I have tried several times.) So here is where I am at: I can reproduce a faulted pool with the message about bad intent log. But the error message tells me to do 'zpool clear'. Doing so leaves the log disk faulted but the pool present (and degraded). You can then remove and re-add the log disk. So I am working on how to leverage '-f' to force the log device to be re-initialized cleanly...

@durval-menezes
Copy link

Hello,

Referring to the following, above: #2099 (comment), more specifically to that part:

Giving either as 'zpool remove git xxx' gives no error but doesn't change the pool."

I'm having the exact same issue with one of my pools here, running ZoL's latest stable (0.6.5.3) installed from the official repo on EL6. The only difference is that, contrary to @dswartz, I tried to export the pool, remove the log device and then import it back in, but still the "zpool remove" accomplishes nothing and the device keeps showing on zpool status. I've posted extensively about the problem on a zfs-discuss mailing list thread starting here: http://list.zfsonlinux.org/pipermail/zfs-discuss/2015-December/024006.html

I'm going ahead and opening a new issue for this, referring to this one, and to the above mail thread.

Cheers,
Durval.

@ksalman
Copy link

ksalman commented Oct 26, 2016

I am also running into this - cannot remove an OFFLINE zil device. I am using version 0.6.5.6-0ubuntu14.

NAME                                    STATE     READ WRITE CKSUM
tank                                    DEGRADED     0     0     0
  mirror-0                              ONLINE       0     0     0
    sda                                 ONLINE       0     0     0
    sdb                                 ONLINE       0     0     0
  mirror-1                              ONLINE       0     0     0
    sdc                                 ONLINE       0     0     0  (resilvering)
    sdd                                 ONLINE       0     0     0
logs
  64712f3c-9b0a-11e6-a777-001b21709ddc  OFFLINE      0     0     0

@zeigerpuppy
Copy link

zeigerpuppy commented Jan 10, 2020

I am having a (real-life) problem importing a pool with a corrupted ZIL at the moment.

ZFS v0.8.2-1 on Debian 9

My log device corrupted due to a power outage and the pool will now not import even with the missing option.
Is there a way to force it to import, I've tried all the commands I can think of:

The closest I get is with:

zpool import -f -m -d /dev/disk/by-id/scsi-35000cca03e167XXX-part1

which returns

   pool: data
     id: 13736941278548912923
  state: UNAVAIL
 status: One or more devices are missing from the system.
 action: The pool cannot be imported. Attach the missing
	devices and try again.
   see: http://zfsonlinux.org/msg/ZFS-8000-6X
 config:

	data                                        UNAVAIL  missing device
	  raidz2-0                                  ONLINE
	    scsi-35000cca03e94cXXX                 ONLINE
	    scsi-35000cca03ea73XXX                  ONLINE
	    scsi-35000cca03eb11XXX                  ONLINE
	    scsi-35000cca03eb42XXX                 ONLINE
	    scsi-35000cca03e088XXX                  ONLINE
	    scsi-35000cca01adb1XXX                  ONLINE
	    scsi-35000cca03e167XXX                  ONLINE
	    scsi-35000cca03e172XXX                  ONLINE
	logs
	  ata-MK0200GCTYV_BTTV320101VFXXX-part6  UNAVAIL  corrupted data

	Additional devices are known to be part of this pool, though their
	exact configuration cannot be determined.

the command zpool import -F also returns the same as above

I also tried reformatting the log partition but that doesn't seem to help.
I guess there must be some way to offline the log, but can't seem to find a way to do it in a pool that won't import.

I don't mind losing whatever transactions were in the log waiting to be written.

additional:

zpool import -m data
cannot import 'data': no such pool or dataset
	Destroy and re-create the pool from
	a backup source.

@behlendorf
Copy link
Contributor

@zeigerpuppy you're absolutely on the right track, the -m option should have worked. Can you try importing your pool again with the following command:

zpool import -f -m -d /dev/disk/by-id/ tank

Assuming that fails, please grab the kernel debug log by dumping /proc/spl/kstat/zfs/dbgmsg. The lines of interest will be prefixed with spa_load so I'd recommend running something like:

grep spa_load /proc/spl/kstat/zfs/dbgmsg

This should give us a better indication of exactly what the issue is.

@zeigerpuppy
Copy link

Thanks for the tip.
As you predicted the pool fails to import, the messages from /proc/spl/kstat/zfs/dbgmsg are below:

1578663794   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1578663794   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578663794   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1578663795   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1578663795   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1578663795   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1578663795   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578664082   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1578664082   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1578664082   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1578664082   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1578664137   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1578664137   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1578664137   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1578664137   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1578664246   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1578664247   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1578664247   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1578664247   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1578664247   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578664247   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1578664248   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1578664248   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578664248   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1578664248   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1578664248   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1578664248   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1578664248   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1578664260   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1578664260   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1578664260   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1578664260   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1578697883   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1578697883   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1578697883   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1578697883   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING

I have also included the output of zdb (sanitised serial numbers) for reference:

data:
    version: 5000
    name: 'data'
    state: 0
    txg: 33623486
    pool_guid: 13736941278548912923
    errata: 0
    hostid: 8323329
    hostname: 'ocelot'
    com.delphix:has_per_vdev_zaps
    vdev_children: 2
    vdev_tree:
        type: 'root'
        id: 0
        guid: 13736941278548912923
        children[0]:
            type: 'raidz'
            id: 0
            guid: 10302097311291941285
            nparity: 2
            metaslab_array: 34
            metaslab_shift: 37
            ashift: 12
            asize: 24004626743296
            is_log: 0
            create_txg: 4
            com.delphix:vdev_zap_top: 475
            children[0]:
                type: 'disk'
                id: 0
                guid: 6395614434348585949
                path: '/dev/disk/by-id/scsi-35000cca03e94cXXX-part1'
                whole_disk: 1
                DTL: 474
                create_txg: 4
                com.delphix:vdev_zap_leaf: 477
            children[1]:
                type: 'disk'
                id: 1
                guid: 13886622606314949005
                path: '/dev/disk/by-id/scsi-35000cca03ea73XXX-part1'
                whole_disk: 1
                DTL: 473
                create_txg: 4
                com.delphix:vdev_zap_leaf: 478
            children[2]:
                type: 'disk'
                id: 2
                guid: 15223255819206260964
                path: '/dev/disk/by-id/scsi-35000cca03eb11XXX-part1'
                whole_disk: 1
                DTL: 472
                create_txg: 4
                com.delphix:vdev_zap_leaf: 479
            children[3]:
                type: 'disk'
                id: 3
                guid: 13152668632038442322
                path: '/dev/disk/by-id/scsi-35000cca03eb42XXX-part1'
                whole_disk: 1
                DTL: 471
                create_txg: 4
                com.delphix:vdev_zap_leaf: 480
            children[4]:
                type: 'disk'
                id: 4
                guid: 10359585613055231207
                path: '/dev/disk/by-id/scsi-35000cca03e088XXX-part1'
                devid: 'scsi-35000cca03e088XXX-part1'
                phys_path: 'pci-0000:03:00.0-sas-phy5-lun-0'
                whole_disk: 1
                DTL: 488
                create_txg: 4
                com.delphix:vdev_zap_leaf: 487
            children[5]:
                type: 'disk'
                id: 5
                guid: 12665232198200720196
                path: '/dev/disk/by-id/scsi-35000cca01adb1XXX-part1'
                devid: 'scsi-35000cca01adb1XXX-part1'
                phys_path: 'pci-0000:03:00.0-sas-phy6-lun-0'
                whole_disk: 1
                DTL: 641
                create_txg: 4
                com.delphix:vdev_zap_leaf: 640
            children[6]:
                type: 'disk'
                id: 6
                guid: 10521707952703103872
                path: '/dev/disk/by-id/scsi-35000cca03e167XXX-part1'
                whole_disk: 1
                DTL: 69
                create_txg: 4
                com.delphix:vdev_zap_leaf: 483
            children[7]:
                type: 'disk'
                id: 7
                guid: 6315495063040771963
                path: '/dev/disk/by-id/scsi-35000cca03e172XXX-part1'
                devid: 'scsi-35000cca03e172XXX-part1'
                phys_path: 'pci-0000:03:00.0-sas-phy4-lun-0'
                whole_disk: 1
                DTL: 514
                create_txg: 4
                com.delphix:vdev_zap_leaf: 494
        children[1]:
            type: 'disk'
            id: 1
            guid: 8899809195679796448
            path: '/dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF20XXXX-part6'
            whole_disk: 0
            metaslab_array: 38
            metaslab_shift: 25
            ashift: 9
            asize: 5995233280
            is_log: 1
            DTL: 468
            create_txg: 27392809
            com.delphix:vdev_zap_leaf: 485
            com.delphix:vdev_zap_top: 486
    features_for_read:
        com.delphix:hole_birth
        com.delphix:embedded_data

The pool recently had two drives replaced and resilvered, which all went well.

@behlendorf
Copy link
Contributor

Thus far I haven't been able to reproduce the issue locally, but there are a few more things I'd like to try. In the meanwhile, would you mind checking if you can import the pool readonly.

zpool import -m -o readonly=on -d /dev/disk/by-id/ data

@zeigerpuppy
Copy link

zeigerpuppy commented Jan 11, 2020

unfortunately read-only doesn't seem to work either (same errors as before in dbgmsg).

zpool import -m -o readonly=on -d /dev/disk/by-id/scsi-35000cca03e167XXX-part1 data

outputs

cannot import 'data': no such pool or dataset
	Destroy and re-create the pool from
	a backup source.

@DurvalMenezes
Copy link

DurvalMenezes commented Jan 11, 2020

For the record, after keeping my bad pool around (see #4067) for the best part of 4 years, a few months ago I migrated it to another machine/disk set and erased the previous one :-P so I can no longer help to debug this.

Anyway, trying to reproduce the issue here with a testpool (creating a 2-disk mirror with a separate log device, then exporting, then first removing the log device from the system and trying to import the pool back, then ditto but purposefully corrupting the log device with dd while the pool was exported) were not successful: the pool failed to import normally (with the expected "The devices below are missing or corrupted, use '-m' to import the pool anyway") but then succeeding when using the '-m' option. FWIW, tests done with ZFS 0.8.2 manually compiled from source and installed on Ubuntu 18.04.

@zeigerpuppy
Copy link

I'm wondering if there is a brute-force way to export this pool and then reimport.
Ideally I'd like to recover the data that is on the 8 drives as it should be fine and is a lot faster than dumping back from backups.

Still stuck with trying to get the pool to load with the corrupted log device.
Any further suggestions heartily accepted!

@zeigerpuppy
Copy link

having a look at logs in more detail, I think I may be on to something:

1578902441   spa.c:5623:spa_tryimport(): spa_tryimport: importing data
1578902441   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1578902441   vdev.c:124:vdev_dbgmsg(): disk vdev '/dev/disk/by-id/scsi-35000cca03ea73xxx-part1': best uberblock found for spa $import. txg 33633753
1578902441   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1578902441   vdev.c:124:vdev_dbgmsg(): disk vdev '/dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6': vdev_validate: vdev label pool_guid doesn't match config (15977575221519336500 != 13736941278548912923)
1578902441   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():   vdev 0: root, guid: 13736941278548912923, path: N/A, degraded
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():     vdev 0: raidz, guid: 10302097311291941285, path: N/A, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 0: disk, guid: 6395614434348585949, path: /dev/disk/by-id/scsi-35000cca03e94cxxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 1: disk, guid: 13886622606314949005, path: /dev/disk/by-id/scsi-35000cca03ea73xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 2: disk, guid: 15223255819206260964, path: /dev/disk/by-id/scsi-35000cca03eb11xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 3: disk, guid: 13152668632038442322, path: /dev/disk/by-id/scsi-35000cca03eb42xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 4: disk, guid: 10359585613055231207, path: /dev/disk/by-id/scsi-35000cca03e088xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 5: disk, guid: 12665232198200720196, path: /dev/disk/by-id/scsi-35000cca01adb1xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 6: disk, guid: 10521707952703103872, path: /dev/disk/by-id/scsi-35000cca03e167xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():       vdev 7: disk, guid: 6315495063040771963, path: /dev/disk/by-id/scsi-35000cca03e172xxx-part1, healthy
1578902441   vdev.c:178:vdev_dbgmsg_print_tree():     vdev 1: disk (log), guid: 8899809195679796448, path: /dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6, can't open
1578902441   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING

note the line

1578902441   vdev.c:124:vdev_dbgmsg(): disk vdev '/dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6': vdev_validate: vdev label pool_guid doesn't match config (15977575221519336500 != 13736941278548912923)

I guess the guid has changed, so that may be causing the inability to use allow the missing device...

I will try looking for a way to set the guid.

@zeigerpuppy
Copy link

zeigerpuppy commented Jan 13, 2020

scrub that idea, I erased the label and it didn't help

zpool labelclear /dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6 -f

when attempting to import again, the error does change, as is to be expected:

1578903444   vdev.c:124:vdev_dbgmsg(): disk vdev '/dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6': vdev_validate: failed reading config for txg 33633753
...
1578903444   vdev.c:178:vdev_dbgmsg_print_tree():     vdev 1: disk (log), guid: 8899809195679796448, path: /dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6, can't open

It does make me wonder if there's a manual way of setting the header/label on the log partition... maybe that would fool zpool import that everything is OK with the device.

Could I use dd and copy the information from the other drives, or is the log device header fundamentally different?

@zeigerpuppy
Copy link

zeigerpuppy commented Jan 13, 2020

Additional: I noticed this command from the Oracle docs, but it is not implemented in zfsonlinux:

zpool label [–d path ... | –c cachefile] –R <pool | id> [device]

This is an undo operation for the zpool label -C command. It recovers ZFS metadata for a specific pool and, if enough of the pool's devices are restored this way, makes it possible to reimport the pool. If a device is specified, it recovers metadata only on this device.

A pool can be identified by its name or the numerical identifier. If the –d option is not specified, this command searches for devices in /dev/dsk directory. A device must be specified using its full path and name.

This would seem to allow recovering metadata from one device to another, is there any equivalent in zfsonlinux?

I guess that if this were available, then something like the following would help:

zpool label –d /dev/disk/by-id/scsi-35000cca03e167xxx-part1 –R data /dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VF200xxx-part6

@behlendorf
Copy link
Contributor

@zeigerpuppy I wasn't aware of the zpool label command from the Oracle docs. That kind of functionality to potentially recreate a label could definitely be handy in some situations. But I don't think it would be helpful in this particular case since we should be able to ignore that device entirely.

It's also surprising that a readonly import would fail. When importing readonly the log device cannot be replayed so it's skipped in this circumstance. Looking at the logs you posted it also appears that the import attempted to rewind several txgs to import. This is expected for a power failure, it's not impossible that there is an issue in the import path when handling both failures.

Can you try importing the pool at a specific transaction group. Based on your logs you'll want to try 33633752, and it wouldn't hurt to try 33633751 if that fails. You can run:

zpool import -T 33633752 -m -o readonly=on -d /dev/disk/by-id/ data

If you're willing to privately share the pool metadata for debugging purposes there is some additional investigation which could be done. The zdb command can be used to dump a sparse copy of the pool. This would make it possible for a developer to locally debug the issue since we've been unable to intentionally reproduce it. The zdb -x copy can be used for this, from the man page:

     -x dumpdir
             All blocks accessed will be copied to files in the specified directory.  The
             blocks will be placed in sparse files whose name is the same as that of
             the file or device read.  zdb can be then run on the generated files.
             Note that the -bbc flags are sufficient to access (and thus copy) all
             metadata on the pool.

If you're game, you can generate the vdev dump like this:

mkdir /var/tmp/data-pool
zdb -e -p /dev/disk/by-id/ -bbc -x /var/tmp/data-pool data

@zeigerpuppy
Copy link

@behlendorf I tried both:

zpool import -T 33633752 -m -o readonly=on -d /dev/disk/by-id/ data

and

zpool import -T 33633751 -m -o readonly=on -d /dev/disk/by-id/ data

but they both return error:

cannot import 'data': one or more devices is currently unavailable

there's no new messages in /proc/spl/kstat/zfs/dbgmsg

I am happy to share the metadata, however, when I tried dumping the metadata with the commands:

mkdir /var/tmp/data-pool
zdb -e -p /dev/disk/by-id/ -bbc -x /var/tmp/data-pool data

I get error:

zdb: can't open 'data': File exists

there is a small zpool.cache file dumped in that dir (5196 bytes)

@OCDPro
Copy link

OCDPro commented Jan 16, 2020

›I have this same issue due to power cuts.

The log ssd has been faulted, pool will not import

Screen Shot 2020-01-16 at 15 43 05

@OCDPro
Copy link

OCDPro commented Jan 18, 2020

Resolved.

The import issue was solved by destroying the faulted log disk's file system completely.
Removing it physically would also have worked but, the log disk data was only corrupted because of a power failure during write operations and not a physical faulty disk, so removing it would have been a waste.
Forcing the faulted log in to a working pool ensured the corrupted disk file system was overwritten and was just as effective as what removing it would have been.

zpool add working-pool-name cache disk-id-of-broken-zil -f

Now that the corrupted disk was completely forced out of its old pool, zpool import was then able to import and bring the faulty pool back online by rolling back to the other 2 uncorrupted log disks "See screenshot from my previous post".

zpool import -fF -m fautly-pool-name

The lesson here is to mirror the log disks, although that might have given me 3 corrupted mirrors.
I will need to do extensive tests on a test system later, ie, pull the plug while writing to a mirrored ZIL.

To prevent this problem happening again on this live production pool, ZIL logs have been removed until further DR tests can be conducted.

Here is the now fully functional and healthy repaired pool
Screen Shot 2020-01-18 at 14 00 18

@FransUrbo
Copy link
Contributor

FransUrbo commented Jan 18, 2020 via email

@OCDPro
Copy link

OCDPro commented Jan 18, 2020

On 18 Jan 2020, at 12:25, OCDPro @.***> wrote: The import issue was solved by destroying the faulted log disk's file system completely.
How did you do that? I thought you said you had ‘dd’ the device before trying to import the pool.. ?

No, that was someone else's issue in this thread where "dd" did not work. I think @zeigerpuppy, who only has 1 log disk in the pool.
I joined this thread yesterday and I believe dd would also have also helped my situation.
My system had 2 other clean log disks, so zpool import was able to roll back to uncorrupted logs. Not sure if the import would have worked for me if the corrupted ZIL log was the only log disk though.
The system I am working on had 3 un-mirrored logs with 1 log disk corruption. So forcing the disk with corrupted logs in to another pool was one way to keep track of the disk-id and have active data written to it just to be sure. This system has an excess of 80 spinning disks as well as 3 cache ssd's and 2 disk boot mirror ssd's with all 5 ssd's id's are almost identical.

removing it would have been a waste.
You could have removed the disk, imported the pool and then put the disk back. If you have
hot-swap bays that is… A ‘eject’ command could also have been done. In the SCSI subsystem, you can easily remove and attach a device from the command line by utilising the /sys FS..

Thank you, I will read up more on /sys FS. The ssd's are not hot swap and the system is remote so anything that can save a drive to site is welcome advice :)

The lesson here is to mirror the log disks, although that might have given me 3 corrupted mirrors.
Not necessarily.. The replication isn’t always instantaneous.. Or?

Agreed, not always instant replication.
I wonder if creating a ZIL config that uses a combination of mirrors in single V-Dev's. Say 6 disks divided in to 3 separate 2 disk mirrors, then each pair added as a single logs separately to the pool as 3 single un-mirrored ZIL's. 3 ZIL's x 2 disk mirrors.

@zeigerpuppy
Copy link

zeigerpuppy commented Aug 8, 2020

@OCDPro I tried your idea of moving the corrupted log device to another pool:

zpool create test /dev/disk/by-id/ata-MK0200GCTYV_BTTV320101VFXXX-part6

As you suggested, this now changes the device from UNAVAIL to FAULTED in my data pool.

However, in my case, this still doesn't allow the importing of the faulty pool.

zpool import -fF -m data

returns

cannot import 'data': no such pool or dataset
	Destroy and re-create the pool from
	a backup source.

and zpool import returns

   pool: data
     id: 13736941278548912923
  state: UNAVAIL
 status: One or more devices are missing from the system.
 action: The pool cannot be imported. Attach the missing
	devices and try again.
   see: http://zfsonlinux.org/msg/ZFS-8000-6X
 config:

	data                                        UNAVAIL  missing device
	  raidz2-0                                  ONLINE
	    scsi-35000cca03e94c830                  ONLINE
	    scsi-35000cca03ea735e0                  ONLINE
	    scsi-35000cca03eb112c0                  ONLINE
	    scsi-35000cca03eb42f00                  ONLINE
	    scsi-35000cca03e088054                  ONLINE
	    scsi-35000cca01adb1964                  ONLINE
	    scsi-35000cca03e167738                  ONLINE
	    scsi-35000cca03e1724f4                  ONLINE
	logs
	  ata-MK0200GCTYV_BTTV320101VF200GGN-part6  FAULTED  corrupted data

	Additional devices are known to be part of this pool, though their
	exact configuration cannot be determined.

p.s. I have updated to the latest zfs release 0.8.4-1

I would like to try removing the device altogether, but I'm not sure that will help and it's also a bit difficult as it also has some system partitions on the same SSD.

The dump of grep spa_load /proc/spl/kstat/zfs/dbgmsg now shows:

1596881416   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881416   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881416   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881416   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881416   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881416   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881416   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881416   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881416   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881416   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881417   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881417   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881417   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881417   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881509   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881509   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881509   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881509   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881509   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881509   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881509   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881510   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881510   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881510   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881511   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881511   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881511   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881516   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881517   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881517   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881517   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881517   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881517   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881517   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881518   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881518   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: some log devices are missing
1596881518   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881522   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881522   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881522   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881522   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881522   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881522   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881522   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881522   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881522   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881522   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881522   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881523   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881523   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881523   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881524   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881524   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881524   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881524   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881552   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=100
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADED
1596881552   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881575   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881575   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881575   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881575   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881594   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881594   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633751
1596881594   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881594   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881594   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881594   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881595   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633749
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633749
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881595   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633748
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881595   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633748
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881596   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633747
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633747
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881596   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633746
1596881596   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633746
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881597   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633745
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633745
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881597   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633744
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633744
1596881597   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881598   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633743
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633743
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881598   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633742
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633742
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881598   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633741
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881598   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633741
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881599   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633740
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633740
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881599   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633739
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633739
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881599   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633738
1596881599   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633738
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881600   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633737
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633737
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881600   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633736
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881600   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633736
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881601   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633735
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633735
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881601   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633734
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633734
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881601   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633733
1596881601   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633733
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881602   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633732
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633732
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881602   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633731
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881602   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633731
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881603   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633730
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633730
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881603   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633729
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633729
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881603   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633728
1596881603   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633728
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881604   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633727
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633727
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881604   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633726
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881604   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633726
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881605   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633725
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633725
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881605   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633724
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881605   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633724
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881606   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633723
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633723
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881606   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633722
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633722
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881606   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633721
1596881606   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881607   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596881607   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596881624   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881624   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881624   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881624   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881624   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881624   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881624   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881624   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881624   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881624   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881624   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881625   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881625   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881625   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881625   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881629   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881630   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881630   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881630   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881630   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881630   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=100
1596881630   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADED
1596881630   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881871   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=100
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADED
1596881871   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881950   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881950   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881950   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881950   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881950   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881951   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881951   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881951   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881952   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881952   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881952   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881994   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596881994   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596881994   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596881994   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596881994   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881995   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881995   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881995   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881996   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596881996   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596881996   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882071   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882072   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633752
1596882072   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882072   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882072   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882072   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882073   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882073   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633749
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633749
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882073   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633748
1596882073   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633748
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882074   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633747
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633747
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882074   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633746
1596882074   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633746
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882075   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633745
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633745
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882075   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633744
1596882075   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633744
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882076   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633743
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633743
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882076   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633742
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882076   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633742
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882077   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633741
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633741
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882077   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633740
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882077   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633740
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882078   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633739
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633739
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882078   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633738
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633738
1596882078   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882079   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633737
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633737
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882079   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633736
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633736
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882079   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633735
1596882079   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633735
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882080   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633734
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633734
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882080   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633733
1596882080   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633733
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882081   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633732
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633732
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882081   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633731
1596882081   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633731
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882082   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633730
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633730
1596882082   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882083   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633729
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633729
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882083   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633728
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633728
1596882083   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882084   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633727
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633727
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882084   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633726
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882084   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633726
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882085   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633725
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633725
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882085   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633724
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633724
1596882085   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882086   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633723
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633723
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882086   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633722
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633722
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882086   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882086   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882087   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633721
1596882087   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882087   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882087   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596882204   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882204   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596882204   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882204   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882204   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882205   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882205   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596882205   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882206   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882206   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882206   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882251   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882251   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633752
1596882251   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882251   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882251   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882252   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882252   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882252   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633749
1596882252   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633749
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882253   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633748
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633748
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882253   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633747
1596882253   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633747
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882254   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633746
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633746
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882254   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633745
1596882254   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633745
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882255   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633744
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633744
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882255   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633743
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882255   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633743
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882256   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633742
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633742
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882256   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633741
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882256   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633741
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882257   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633740
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633740
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882257   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633739
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882257   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633739
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882258   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633738
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633738
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882258   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633737
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882258   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633737
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882259   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633736
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633736
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882259   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633735
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633735
1596882259   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882260   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633734
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633734
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882260   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633733
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633733
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882260   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633732
1596882260   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633732
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882261   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633731
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633731
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882261   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633730
1596882261   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633730
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882262   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633729
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633729
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882262   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633728
1596882262   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633728
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882263   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633727
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633727
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882263   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633726
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633726
1596882263   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882264   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633725
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633725
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882264   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633724
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633724
1596882264   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882265   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633723
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633723
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882265   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633722
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633722
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882265   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633721
1596882265   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882266   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882266   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=100
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADED
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596882273   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882273   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882476   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882476   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596882476   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882476   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882476   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882476   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596882476   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882476   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882476   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882476   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596882476   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882477   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882477   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882477   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882478   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882478   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882478   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882487   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882487   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633753
1596882487   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882487   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882487   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882487   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633753
1596882487   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882487   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882487   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882487   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633752
1596882487   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882488   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882488   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882488   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882489   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882489   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882753   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882753   spa_misc.c:393:spa_load_failed(): spa_load($import, config untrusted): FAILED: no valid uberblock found
1596882753   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): UNLOADING
1596882753   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882753   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882753   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596882768   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882768   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633751
1596882768   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882768   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882768   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882768   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882769   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882769   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633749
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633749
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882769   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633748
1596882769   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633748
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882770   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633747
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633747
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882770   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633746
1596882770   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633746
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882771   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633745
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633745
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882771   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633744
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882771   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633744
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882772   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633743
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633743
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882772   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633742
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633742
1596882772   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882773   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633741
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633741
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882773   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633740
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633740
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882773   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633739
1596882773   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633739
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882774   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633738
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633738
1596882774   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882775   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633737
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633737
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882775   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633736
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882775   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633736
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882776   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633735
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633735
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882776   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633734
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633734
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882776   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882776   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633733
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633733
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882777   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633732
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633732
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882777   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633731
1596882777   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633731
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882778   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633730
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633730
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882778   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633729
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882778   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633729
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882779   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633728
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633728
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882779   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633727
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633727
1596882779   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882780   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633726
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633726
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882780   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633725
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633725
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882780   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633724
1596882780   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633724
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882781   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633723
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633723
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882781   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633722
1596882781   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882782   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633722
1596882782   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882782   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882782   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882782   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633721
1596882782   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882782   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882782   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596882795   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882796   spa_misc.c:393:spa_load_failed(): spa_load($import, config untrusted): FAILED: no valid uberblock found
1596882796   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): UNLOADING
1596882796   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882796   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882796   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596882800   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882800   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633722
1596882800   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882800   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882800   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882800   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633722
1596882801   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882801   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882801   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882801   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633721
1596882801   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882801   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882801   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING
1596882807   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): LOADING
1596882807   spa_misc.c:408:spa_load_note(): spa_load($import, config untrusted): using uberblock with txg=33633752
1596882807   spa_misc.c:393:spa_load_failed(): spa_load($import, config trusted): FAILED: some log devices are missing
1596882807   spa_misc.c:408:spa_load_note(): spa_load($import, config trusted): UNLOADING
1596882807   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882807   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633752
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882808   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633751
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633751
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882808   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633750
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633750
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882808   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633749
1596882808   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633749
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882809   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633748
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633748
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882809   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633747
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882809   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633747
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882810   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633746
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633746
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882810   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633745
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633745
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882810   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633744
1596882810   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633744
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882811   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633743
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633743
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882811   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633742
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882811   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633742
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882812   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633741
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633741
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882812   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633740
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882812   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633740
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882813   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633739
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633739
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882813   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633738
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882813   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633738
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882814   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633737
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633737
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882814   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633736
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882814   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633736
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882815   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633735
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633735
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882815   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633734
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882815   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633734
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882816   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633733
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633733
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882816   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633732
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633732
1596882816   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882817   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633731
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633731
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882817   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633730
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633730
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882817   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633729
1596882817   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633729
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882818   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633728
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633728
1596882818   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882819   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633727
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633727
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882819   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633726
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633726
1596882819   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882820   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633725
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633725
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882820   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633724
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882820   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633724
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882821   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633723
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633723
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882821   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633722
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): using uberblock with txg=33633722
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): some log devices are missing, ZIL is dropped.
1596882821   spa_misc.c:393:spa_load_failed(): spa_load(data, config trusted): FAILED: vdev_load failed [error=2]
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): UNLOADING
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): spa_load_retry: rewind, max txg: 33633721
1596882821   spa_misc.c:408:spa_load_note(): spa_load(data, config trusted): LOADING
1596882822   spa_misc.c:393:spa_load_failed(): spa_load(data, config untrusted): FAILED: no valid uberblock found
1596882822   spa_misc.c:408:spa_load_note(): spa_load(data, config untrusted): UNLOADING

@OCDPro
Copy link

OCDPro commented Aug 12, 2020

@zeigerpuppy

Have you tried completely deleting the partition ......FXXX-part6 with fdisk or cfdisk? So that there is no longer a "part6"

This should make the faulted log disk go missing to the zfs pool, then try import again

zpool import -f -F -m poolname

Not sure if this will work without a secondary log device to roll back to.

@zeigerpuppy
Copy link

zeigerpuppy commented Aug 17, 2020

Thanks for the suggestion @OCDPro.
I eventually accepted the fate of the array being unrecoverable and have reinitialised the drives.
Not a big loss, as it was a backup server, but needed to get those drives back in service.
I guess the moral of the story is to have redundant log devices. Although I think, in principle it should be possible to recover an array while losing the logs (with some data loss of course).

@DurvalMenezes
Copy link

DurvalMenezes commented Aug 23, 2020

I guess the moral of the story is to have redundant log devices.

This absolutely should not be the case. IMHU, A log device is considered to be expendable.

Although I think, in principle it should be possible to recover an array while losing the logs (with some data loss of course).

And even so, the data loss 'window' is much smaller than most people think: as everything that's written on the ZIL is also kept in memory (and committed from there to the pool data area), the only way to lose data due to a failed/lost log device is for the machine to crash (panic, AC power loss, etc) while there this data is still being committed and then losing the log device when the machine comes back up and ZFS tries to access the ZIL to commit the transactions from there (since it lost them in RAM due to the crash).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Documentation Indicates a requested change to the documentation Type: Feature Feature request or new feature
Projects
No open projects
Development

No branches or pull requests

10 participants