… fast 5 % aber eben nur fast

September 25th, 2026

97. Sitzung des Deutschen Bundestages 25.09.2026

September 25th, 2026

TrueNAS – has introduced an official Proxmox storage plugin that allows Proxmox VE to provision and manage TrueNAS-backed VM and container disks through its normal storage tools

September 25th, 2026

World leaders – speaks at UN General Assembly September 25 2026

September 25th, 2026

MSI Pro Max Edge AI+ mit Ryzen AI Max+ 395 – mit 128 GB RAM 2 TB SSD und ohne Betriebssystem für € 4.799,-

September 25th, 2026

Anker Solix Backup Auto-Switch (ATS) – ist ein automatischer Trennschalter (Automatic Transfer Switch) mit integrierter Messfunktion

September 25th, 2026

President Donald J. Trump – and the President of China Deliver Remarks

September 24th, 2026

Hinterland-Klinik Biedenkopf – plant Kooperation mit dem Universitätsklinikum Gießen und Marburg (UKGM)

September 24th, 2026

Schneider Electric – übernimmt die bulgarische Shelly Group für rund € 1.2 Milliarden

September 24th, 2026

MSI Edgemesa N AI+ Series – bis zu 128 GiByte RAM und Nvidias RTX Spark N1X

September 24th, 2026

Kompromiss zur Rente mit 63 – aus 45 Beitragsjahren könnten 46 oder 47 werden

September 24th, 2026

World leaders – speaks at UN General Assembly September 24 2026

September 24th, 2026

Restic REST-Server (Representational State Transfer Server) v0.14.0 – is a high performance HTTP server that implements restic’s REST backend API

September 24th, 2026

Restic REST-Server  – compared to the SFTP backend the REST backend has better performance especially so if you can skip additional crypto overhead by using plain HTTP transport (restic already properly encrypts all data it sends so using HTTPS is mostly about authentication)

root@pve-rest-server-01:~/rest-server# wget https://github.com/restic/rest-server/releases/download/v0.14.0/rest-server_0.14.0_linux_amd64.tar.gz
root@pve-rest-server-01:~/rest-server#
root@pve-rest-server-01:~/rest-server# tar -xvf rest-server_0.14.0_linux_amd64.tar.gz
rest-server_0.14.0_linux_amd64/CHANGELOG.md
rest-server_0.14.0_linux_amd64/LICENSE
rest-server_0.14.0_linux_amd64/README.md
rest-server_0.14.0_linux_amd64/rest-Server
root@pve-rest-server-01:~/rest-server/rest-server_0.14.0_linux_amd64# ls -la
total 9316
drwxr-xr-x 2 root root 4096 Sep 25 08:31 .
drwxr-xr-x 3 root root 4096 Sep 25 08:31 ..
-rw-r–r– 1 root root 20926 May 31 2025 CHANGELOG.md
-rw-r–r– 1 root root 1421 May 31 2025 LICENSE
-rw-r–r– 1 root root 11634 May 31 2025 README.md
-rw-r–r– 1 root root 9486520 May 31 2025 rest-server
root@pve-rest-server-01:~/rest-server/rest-server_0.14.0_linux_amd64# chmod +x rest-Server
root@pve-rest-server-01:~/rest-server/rest-server_0.14.0_linux_amd64# ./rest-server –version
rest-server version rest-server 0.14.0 compiled with go1.24.3 on linux/amd64
root@pve-rest-server-01:~/rest-server/rest-server_0.14.0_linux_amd64#
root@pve-rest-server-01:~/rest-server/rest-server_0.14.0_linux_amd64# mv rest-server /usr/local/bin/
root@pve-rest-server-01:~/rest-server/rest-server_0.14.0_linux_amd64#
root@pve-rest-server-01:/usr/local/bin# ls -la
total 9276
drwxr-xr-x 2 root root 4096 Sep 25 08:40 .
drwxr-xr-x 11 root root 4096 Apr 29 17:23 ..
-rwxr-xr-x 1 root root 9486520 May 31 2025 rest-server
root@pve-rest-server-01:/usr/local/bin#
root@pve-rest-server-01:~#
root@pve-rest-server-01:~# mkdir -p /mnt/USB-Stick-extern
root@pve-rest-server-01:~#
root@pve-rest-server-01:~# rest-server –path /mnt/USB-Stick-extern –no-auth
Data directory: /mnt/USB-Stick-extern
Authentication disabled
Append only mode disabled
Private repositories disabled
Group accessible repos disabled
start server on [::]:8000
root@rpi-iot-jsho-rslsync-01:~# restic -r rest:http://root:'<password>’@192.168.1.194:8000 init
enter password for new repository:
enter password again:
created restic repository a552e9d06a at rest:http://root:***@192.168.1.194:8000/
Please note that knowledge of your password is required to access
the repository. Losing your password means that your data is
irrecoverably lost.
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# restic -r rest:http://root:'<password>’@192.168.1.194:8000 backup /resilio-sync.data/USB-Stick
enter password for repository:

repository a552e9d0 opened (version 2, compression level auto)
created new cache in /root/.cache/restic
no parent snapshot found, will read all files
[0:00] 0 index files loaded
Files: 20843 new, 0 changed, 0 unmodified
Dirs: 700 new, 0 changed, 0 unmodified
Added to the repository: 6.432 GiB (4.491 GiB stored)
processed 20843 files, 7.377 GiB in 2:56:31
snapshot 1f211ad1 saved
root@rpi-iot-jsho-rslsync-01:~#
root@pve-rest-server-01: /etc/systemd/system# vi rest-server.service
[Unit]
Description=Rest Server
After=network.target
[Service]
ExecStart=/usr/local/bin/rest-server –path /mnt/USB-Stick-extern –no-auth –listen :8000
Restart=Always
User=root
Group=root
[Install]
WantedBy=multi-user.target
root@pve-rest-server-01:/etc/systemd/system# systemctl daemon-reload
root@pve-rest-server-01:/etc/systemd/system# systemctl enable rest-server
root@pve-rest-server-01:/etc/systemd/system# systemctl start rest-Server
root@pve-rest-server-01:/etc/systemd/system# systemctl status rest-Server
● rest-server.service – Rest Server
Loaded: loaded (/etc/systemd/system/rest-server.service; enabled; preset: enabled)
Active: active (running) since Fri 2026-09-25 19:09:33 UTC; 5min ago
Invocation: 801c5f0a9f844645b340de947890924c
Main PID: 2846 (rest-server)
Tasks: 6 (limit: 16700)
Memory: 1.7M (peak: 1.9M)
CPU: 21ms
CGroup: /system.slice/rest-server.service
└─2846 /usr/local/bin/rest-server –path /mnt/USB-Stick-extern –no-auth –listen :8000
Sep 25 19:09:33 pve-rest-server-01 systemd[1]: Started rest-server.service – Rest Server.
Sep 25 19:09:33 pve-rest-server-01 rest-server[2846]: Data directory: /mnt/USB-Stick-extern
Sep 25 19:09:33 pve-rest-server-01 rest-server[2846]: Authentication disabled
Sep 25 19:09:33 pve-rest-server-01 rest-server[2846]: Append only mode disabled
Sep 25 19:09:33 pve-rest-server-01 rest-server[2846]: Private repositories disabled
Sep 25 19:09:33 pve-rest-server-01 rest-server[2846]: Group accessible repos disabled
Sep 25 19:09:33 pve-rest-server-01 rest-server[2846]: start server on [::]:8000
root@pve-rest-server-01:/etc/systemd/system#

September 24th, 2026

Restic 0.19.1 – using restic for large scale or big data repositories requires careful planning around RAM consumption file counts and cloud egress costs

September 24th, 2026

Repository Architecture & Sizing – managing large-scale datasets (tens to hundreds of terabytes) the performance depends less on the total volume of data and more on the total number of files and how you structure your workflow because restic maintains an index of all data blocks in system memory during operations scalability requires careful planning around RAM pack sizes and backend selection

File count vs. data volume – performance is constrained more by the total number of files than raw Gigabytes budget roughly 1 GB of RAM per 7 million unique files and 1 GB of RAM per 7 TB of data as a rough scaling baseline

Split into multiple repositories- instead of one massive repo divide your data into separate logical repositories (e.g. by service host or data tier) this lowers peak RAM usage during operations like check and prune

Tune pack sizes – for large repositories consider increasing the default pack size using –pack-size (e.g. 50 MB) on initialization/commands to reduce the total number of pack files and lower index memory overhead