Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Feature Requests
  3. Backup Improvements: Restic Backend

Backup Improvements: Restic Backend

Scheduled Pinned Locked Moved Feature Requests
backupsfeature-requestimprovementrestic
44 Posts 10 Posters 7.2k Views 11 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • fbartelsF Offline
    fbartelsF Offline
    fbartels
    App Dev
    wrote on last edited by
    #6

    I have restic running as well since a few years for some servers of mine. Main point back then for me was that I could use an s3 endpoint for the data and that data would be deduplicated and encrypted at rest. Its also nice that I can directly pipe my mysql backups to restic.

    Pruning the repo can sometimes be a pain, but this is mostly caused (at least on my side) by overlapping backup runs and therefore locks not being properly cleaned up.

    1 Reply Last reply
    2
    • necrevistonnezrN Online
      necrevistonnezrN Online
      necrevistonnezr
      wrote on last edited by
      #7

      Just tried pruning my OneDrive backup repo with a newish beta restic-v0.11.0-246-ge1efc193 from https://beta.restic.net: Pruning now took less than 10 Minutes(!) compared to around 48 hours(!) before.

      What I use for backing up (daily):

      #!/bin/bash
      d=$(date +%Y-%m-%d)
      if pidof -o %PPID -x “$0”; then
      echo “$(date “+%d.%m.%Y %T”) Exit, already running.”
      exit 1
      fi
      restic -r rclone:onedrive:restic backup /media/Cloudron/snapshot/ -p=resticpw
      restic -r rclone:onedrive:restic forget --keep-monthly 6 --keep-weekly 4 --keep-daily 7 -p=resticpw
      

      What I use for pruning (once a month):

      #!/bin/bash
      d=$(date +%Y-%m-%d)
      if pidof -o %PPID -x “$0”; then
      echo “$(date “+%d.%m.%Y %T”) Exit, already running.”
      exit 1
      fi
      restic -r rclone:onedrive:restic prune -p=resticpw
      

      Might increase pruning frequency if it proves to be as fast over a longer period...

      imc67I 1 Reply Last reply
      3
      • necrevistonnezrN necrevistonnezr

        Just tried pruning my OneDrive backup repo with a newish beta restic-v0.11.0-246-ge1efc193 from https://beta.restic.net: Pruning now took less than 10 Minutes(!) compared to around 48 hours(!) before.

        What I use for backing up (daily):

        #!/bin/bash
        d=$(date +%Y-%m-%d)
        if pidof -o %PPID -x “$0”; then
        echo “$(date “+%d.%m.%Y %T”) Exit, already running.”
        exit 1
        fi
        restic -r rclone:onedrive:restic backup /media/Cloudron/snapshot/ -p=resticpw
        restic -r rclone:onedrive:restic forget --keep-monthly 6 --keep-weekly 4 --keep-daily 7 -p=resticpw
        

        What I use for pruning (once a month):

        #!/bin/bash
        d=$(date +%Y-%m-%d)
        if pidof -o %PPID -x “$0”; then
        echo “$(date “+%d.%m.%Y %T”) Exit, already running.”
        exit 1
        fi
        restic -r rclone:onedrive:restic prune -p=resticpw
        

        Might increase pruning frequency if it proves to be as fast over a longer period...

        imc67I Offline
        imc67I Offline
        imc67
        translator
        wrote on last edited by
        #8

        @necrevistonnezr @girish it would be great to have Restic as a third option for backup method.

        In the forum I read often “issues” with large backups containing lots of files.

        Since this week our museum moved all the local files to Nextcloud (in Cloudron) and it’s a 120GB.

        I already reduced backup frequency from twice a day to once a day but still the complete backup (there are more apps) takes almost 2 hours with tgz on a CIFS mount to a Hetzner StorageBox (connection speed is about 150-200mbps).

        As far as I can see Restic looks like perfect for all kind of backup scenarios?

        girishG 1 Reply Last reply
        2
        • imc67I imc67

          @necrevistonnezr @girish it would be great to have Restic as a third option for backup method.

          In the forum I read often “issues” with large backups containing lots of files.

          Since this week our museum moved all the local files to Nextcloud (in Cloudron) and it’s a 120GB.

          I already reduced backup frequency from twice a day to once a day but still the complete backup (there are more apps) takes almost 2 hours with tgz on a CIFS mount to a Hetzner StorageBox (connection speed is about 150-200mbps).

          As far as I can see Restic looks like perfect for all kind of backup scenarios?

          girishG Offline
          girishG Offline
          girish
          Staff
          wrote on last edited by
          #9

          @imc67 does restic backup faster to CIFS with your existing data size?

          imc67I necrevistonnezrN 2 Replies Last reply
          0
          • girishG girish

            @imc67 does restic backup faster to CIFS with your existing data size?

            imc67I Offline
            imc67I Offline
            imc67
            translator
            wrote on last edited by
            #10

            @girish I don't use Restic on Cloudron but it seems @necrevistonnezr does according to his post.

            I do use it for backing up two Zabbix servers to minio (in Docker on two Synology Nas's) and that works extremely simple and fast.

            1 Reply Last reply
            1
            • girishG girish

              @imc67 does restic backup faster to CIFS with your existing data size?

              necrevistonnezrN Online
              necrevistonnezrN Online
              necrevistonnezr
              wrote on last edited by
              #11

              @girish said in Backup Improvements: Restic Backend:

              @imc67 does restic backup faster to CIFS with your existing data size?

              restic needs less than approx. 30 minutes on average to create the daily incremental backup on OneDrive (remember that I use the builtin file system backup and let restic create backups from the snapshot folder which hold around 250 GB of data, thereof 150 GB Nextcloud)

              imc67I 1 Reply Last reply
              1
              • necrevistonnezrN necrevistonnezr

                @girish said in Backup Improvements: Restic Backend:

                @imc67 does restic backup faster to CIFS with your existing data size?

                restic needs less than approx. 30 minutes on average to create the daily incremental backup on OneDrive (remember that I use the builtin file system backup and let restic create backups from the snapshot folder which hold around 250 GB of data, thereof 150 GB Nextcloud)

                imc67I Offline
                imc67I Offline
                imc67
                translator
                wrote on last edited by
                #12

                @girish @necrevistonnezr said in Backup Improvements: Restic Backend:

                approx. 30 minutes

                that is extremely fast, CIFS + tgz and almost same amount of GB's takes almost 2 hours

                girishG 1 Reply Last reply
                2
                • imc67I imc67

                  @girish @necrevistonnezr said in Backup Improvements: Restic Backend:

                  approx. 30 minutes

                  that is extremely fast, CIFS + tgz and almost same amount of GB's takes almost 2 hours

                  girishG Offline
                  girishG Offline
                  girish
                  Staff
                  wrote on last edited by
                  #13

                  @imc67 CIFS has to be tested on your specific mount because each CIFS mount is totally different (since it's network based and also depends on remote disk speed etc). But it's good to have a ball park number in any case.

                  1 Reply Last reply
                  2
                  • imc67I imc67 referenced this topic on
                  • avatar1024A avatar1024 referenced this topic on
                  • MooCloud_MattM Offline
                    MooCloud_MattM Offline
                    MooCloud_Matt
                    wrote on last edited by
                    #14

                    @girish any plan to improve the backup solution on cloudron maybe with Restic as engine?

                    Matteo. R.
                    Founder and Tech-Support Manager.
                    MooCloud MSP
                    Swiss Managed Service Provider

                    girishG 1 Reply Last reply
                    2
                    • MooCloud_MattM MooCloud_Matt

                      @girish any plan to improve the backup solution on cloudron maybe with Restic as engine?

                      girishG Offline
                      girishG Offline
                      girish
                      Staff
                      wrote on last edited by
                      #15

                      @MooCloud_Matt we are rewriting the storage backend a bit in https://forum.cloudron.io/topic/6768/what-s-coming-in-7-2 . Part of the reason is to make more backends easier to integrate.

                      robiR 1 Reply Last reply
                      2
                      • girishG girish

                        @MooCloud_Matt we are rewriting the storage backend a bit in https://forum.cloudron.io/topic/6768/what-s-coming-in-7-2 . Part of the reason is to make more backends easier to integrate.

                        robiR Offline
                        robiR Offline
                        robi
                        wrote on last edited by
                        #16

                        @girish to give you a few more ideas, this is how FlyWheel implemented their backups add-on with both restic and rclone.

                        https://github.com/getflywheel/local-addon-backups

                        I think you'll find it helpful.

                        Conscious tech

                        1 Reply Last reply
                        4
                        • imc67I Offline
                          imc67I Offline
                          imc67
                          translator
                          wrote on last edited by
                          #17

                          Are there any plans to add Restic as an extra backup method? Two of my Cloudrons are in the meanwhile +200GB and the current methods are not sufficient.

                          girishG 1 Reply Last reply
                          0
                          • girishG Offline
                            girishG Offline
                            girish
                            Staff
                            wrote on last edited by
                            #18

                            Not yet but I would like to discuss one thing here. Backups are crucial and loss of data for us implies loss of business and money quite literally. This is why we wrote the backup code ourselves a while ago. Also, why we create our own packages - it's all about data integrity and loss of data === loss of trust in product.

                            Initially, before we wrote our own backup stuff, I remember we used duplicati and btrfs etc . We faced various issues and there was essentially no help from upstream. Now, restic I am sure is great but if there is some corruption or issue, our customers will look to us to solve this. So, this is a tricky situation for us 🙂 Maybe we can do some restic integration with lots of warnings? End user also has to know what to do if there is restic corruption and other issues. Keep in mind restic is also not 1.0 yet . They say "Once version 1.0.0 is released, we guarantee backward compatibility of all repositories within one major version; ...".

                            Any suggestions?

                            1 Reply Last reply
                            1
                            • imc67I imc67

                              Are there any plans to add Restic as an extra backup method? Two of my Cloudrons are in the meanwhile +200GB and the current methods are not sufficient.

                              girishG Offline
                              girishG Offline
                              girish
                              Staff
                              wrote on last edited by
                              #19

                              this also reminded me of @nebulon 's suggestion of having more provider specific tweaking.

                              @imc67 are you using hetzner storage box or similar for backups ? what's the plan ? For storage backends that have rsync running, we can do lot better than now.

                              imc67I 1 Reply Last reply
                              0
                              • girishG girish

                                this also reminded me of @nebulon 's suggestion of having more provider specific tweaking.

                                @imc67 are you using hetzner storage box or similar for backups ? what's the plan ? For storage backends that have rsync running, we can do lot better than now.

                                imc67I Offline
                                imc67I Offline
                                imc67
                                translator
                                wrote on last edited by
                                #20

                                @girish yes indeed I use Hetzner Storagebox and use tgz over CIFS. Is there a better/smarter/quicker way?

                                girishG 1 Reply Last reply
                                0
                                • imc67I imc67

                                  @girish yes indeed I use Hetzner Storagebox and use tgz over CIFS. Is there a better/smarter/quicker way?

                                  girishG Offline
                                  girishG Offline
                                  girish
                                  Staff
                                  wrote on last edited by
                                  #21

                                  @imc67 yes, Hetzner Storagebox has rsync . So, we can be muuuch more efficient when calculating changes. I will investigate how much better it can get.

                                  imc67I 1 Reply Last reply
                                  2
                                  • imc67I Offline
                                    imc67I Offline
                                    imc67
                                    translator
                                    wrote on last edited by
                                    #22

                                    Curious for which settings do you recommend for backups to Storagebox and how much better it can get 🙂

                                    1 Reply Last reply
                                    1
                                    • girishG girish

                                      @imc67 yes, Hetzner Storagebox has rsync . So, we can be muuuch more efficient when calculating changes. I will investigate how much better it can get.

                                      imc67I Offline
                                      imc67I Offline
                                      imc67
                                      translator
                                      wrote on last edited by
                                      #23

                                      @girish still very curious for the results of your investigation? Everything that's more efficient and quicker than tgz over CIFS more than 200GB to a Storagebox is very very welcome 🙂

                                      1 Reply Last reply
                                      0
                                      • girishG Offline
                                        girishG Offline
                                        girish
                                        Staff
                                        wrote on last edited by
                                        #24

                                        @imc67 still working through the backups rewrite, will leave a note here once I have something.

                                        imc67I 1 Reply Last reply
                                        2
                                        • girishG girish

                                          @imc67 still working through the backups rewrite, will leave a note here once I have something.

                                          imc67I Offline
                                          imc67I Offline
                                          imc67
                                          translator
                                          wrote on last edited by
                                          #25

                                          @girish after 4 months I'm still curious for the results of the "backups rewrite" as our daily backup now takes >5 hours

                                          girishG 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Bookmarks
                                          • Search