After reading our task logs we've done on the machine, we found this:
The node has a built in LTO streamer, in a LXC container Bareos (Bacula fork) makes the job for the backup.
There is used "backup to disk" before "disk to tape" to avoid start-stop issues with the tape.
The tape works with 300 MB/s and is connected to the SAS HBA. One HDD was used for spooling, but with 190 MB/s too slow.
A 2nd HDD was combined as a ZFS stripe, this produces 240 MB/s read speed. So the ZFS stripe is not much faster.
Then mdadm was installed and the two disks for spooling added to a RAID-0 stripe, now we get 310 MB/s. This works nice since 3 months until I did yesterday a PVE update. Not the update seems the problem to be, it was a reboot and using of a changed kernel.
I have now installed PVE 6.3 from scratch: no problems
Then installed mdadm:
Code:
# apt-get install mdadm
Reading package lists... Done
Building dependency tree
Reading state information... Done
Suggested packages:
dracut-core
The following NEW packages will be installed:
mdadm
0 upgraded, 1 newly installed, 0 to remove and 68 not upgraded.
Need to get 449 kB of archives.
After this operation, 1,240 kB of additional disk space will be used.
Get:1 http://ftp.de.debian.org/debian buster/main amd64 mdadm amd64 4.1-1 [449 kB]
Fetched 449 kB in 1s (898 kB/s)
Preconfiguring packages ...
Selecting previously unselected package mdadm.
(Reading database ... 44220 files and directories currently installed.)
Preparing to unpack .../archives/mdadm_4.1-1_amd64.deb ...
Unpacking mdadm (4.1-1) ...
Setting up mdadm (4.1-1) ...
Generating mdadm.conf... done.
update-initramfs: deferring update (trigger activated)
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.4.73-1-pve
Found initrd image: /boot/initrd.img-5.4.73-1-pve
Found memtest86+ image: /ROOT/pve-1@/boot/memtest86+.bin
Found memtest86+ multiboot image: /ROOT/pve-1@/boot/memtest86+_multiboot.bin
Adding boot menu entry for EFI firmware configuration
done
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for systemd (241-7~deb10u4) ...
Processing triggers for initramfs-tools (0.133+deb10u1) ...
update-initramfs: Generating /boot/initrd.img-5.4.73-1-pve
Running hook script 'zz-pve-efiboot'..
Re-executing '/etc/kernel/postinst.d/zz-pve-efiboot' in new private mount namespace..
Copying and configuring kernels on /dev/disk/by-uuid/B07A-09FC
Copying kernel and creating boot-entry for 5.4.73-1-pve
After rebooting, PVE 6.3 is broken. As you can see above, mdadm reconfigured the kernel.
Now, on a fresh install I can see, that no new kernel was installed, so I can't switch back.
UEFI boot is disable in BIOS.
After a new installation, SSH and WebGUI is working, but aber some lines during the startup, the dsplay connected on the node goes in standby, no local access possible on the node.
So how can I get working mdadm on a PVE node and how can I get local acces?