Search results

  1. I

    Advice on using Restic with VM backups

    I got mine running. Restic backing up the PBS chunk store. Works great!
  2. I

    Dell R730 with SSD's and SAS drives

    At this point I'm just talking to myself but I have ended up laying out like this: root@pve01:~# root@pve01:~# root@pve01:~# zpool list -v NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT pool0...
  3. I

    ZFS Metadata Special Device

    So I have now verified that zfs set special_small_blocks=0 rpool/SSD does not send VM HDD blocks to the SSD. By setting special_small_blocks=1M rpool/SSD I was able to send any data copied to /rpool/SSD to the SSD's. Unfortunately adding the rpool/SSD ZFS storage to Proxmox in the Datacenter >...
  4. I

    ZFS Metadata Special Device

    How is this working exactly? I created a RAID10 array on spinning SAS drives and added the special device (on enterprise SSD's) with special_small_blocks=0 on a child dataset (pool0/SSD). I created a VM on pool0/SSD but zpool list -v did not show the special device grow by the size of the VM...
  5. I

    Dell R730 with SSD's and SAS drives

    So I have rebuilt the PVE server, I created a ZFS mirror on the SSD's during install that was 128GB for rpool. Post install I created the RAID10 array (pool0) on the 6 SAS drives and 2 additional partitions on the SSD's and added them as a special device on the pool0 RAID10 array. root@pve01:~#...
  6. I

    Dell R730 with SSD's and SAS drives

    Thanks - this helps a lot. Because I had installed PVE on the RAID10 as per the first response I will need to rebuild the machine because, as you said, I added the whole SSD devices as the special device mirror. Re. this. Does this mean I could create a new dataset on my spinning rust RAID10...
  7. I

    Dell R730 with SSD's and SAS drives

    Can anyone give me a hand with this pls? I’m at a loss as to what to do next. Before I build my VM’s I need to get the disk layout correct. From what I’ve read the SSD’s can be partitioned to allow use as a special device mirror as well as general ZFS data storage but I’m not sure what...
  8. I

    Advice on using Restic with VM backups

    I was hoping to back up the PBS chuckstore to online storage using Restic. Did you ever get this configured?
  9. I

    ZFS Metadata Special Device

    It is the latter, 3 x 2 disk mirrors. I am stuck at the moment trying to understand how to lay out the disks. I have 6 x 1.2TB SAS drives (spinning rust) and 2 x 800gb SATA SSD's (enterprise drives): root@pve01:~# zpool list -v NAME SIZE ALLOC FREE CKPOINT...
  10. I

    Dell R730 with SSD's and SAS drives

    So I have rebuilt PVE using the 6 x 1.2TB SAS drives in a RAID10 array. I have added the ZFS special device to the rpool (thats all I had) ZFS pool: root@pve01:~# zpool add rpool special mirror /dev/sdg /dev/sdh root@pve01:~# zfs set special_small_blocks=4K rpool/data Is this correct? Should...
  11. I

    ZFS Metadata Special Device

    Thanks - the first link is the one I have been reading, still a lot to understand about this. ie. So if my pool is a RAID10 consisting of 3 x mirrors, can my special volume be a single mirror or does it need to be 3 x mirrors? There is also no info in the Proxmox doco about what happens if...
  12. I

    Dell R730 with SSD's and SAS drives

    Thanks - I've been searching for a few hours now on an easy to understand grounding in special devices. I'll go through the Proxmox doco on the topic again.
  13. I

    Dell R730 with SSD's and SAS drives

    Should I also run special_small_blocks=1M
  14. I

    Dell R730 with SSD's and SAS drives

    I have a Dell R730 with 2 x Enterprise 800GB SSD's and 6 x 1.2TB 12k SAS drives. I was planning on setting up 2 x 800GB SSD's in a ZFS mirror, 2 x 1.2TB SAS drives in a ZFS mirror and 4 x 1.2TB SAS drives in a ZFS RAID10 array. Which mirror should I install Proxmox on - the SSD's or the 1.2TB...
  15. I

    [SOLVED] No configuration will enable IOMMU

    So does IOMMU work with the R630?
  16. I

    $PATH in vzdump hook script not working

    Yeah - same as what I found above: export PATH=$PATH export HOME="/root" I just redefined existing ENV variables and it worked.
  17. I

    Proxmox Helper Scripts

    Timers aren’t working in the change detection.io LXC. Container installs fine and everything seems to work but the scheduled checks never fire after the first one upon saving.
  18. I

    $PATH in vzdump hook script not working

    Scheduled backup ran fine last night using the above kludge. Does anyone know why PATH=$PATH, redefining an EVN variable worked?
  19. I

    $PATH in vzdump hook script not working

    I got the shell script running by defining $PATH within the shell script: #!/bin/bash PVE_NODE="$(hostname)" LOG_FILE="/mnt/ext_usb_01/$PVE_NODE.log" export PATH=$PATH export HOME="/root" if [ "$1" == "job-start" ]; then printf "$(date) PVE hook script start ($PVE_NODE) -...
  20. I

    $PATH in vzdump hook script not working

    Thanks for the reply but I don’t think that’s it. The script runs fine if I call it from a cmd line, it fails when it’s called from Proxmox vzdump.