Skip to content

Using rclone to sync 5 VPS to one storage backend

VPS Hosting by readerkrakw 25 replies 3.8K views
11 #1

Syncing 5 VPS to one storage backend with rclone. I got these cheap Contabo and OVHcloud boxes scattered everywhere and I got tired of SSHing into each one to grab logs. Made a cron setup that runs every 6 hours, pushes everything to a Hetzner storage bucket with --bwlimit 2M so I dont get nullrouted.

These are my flags:

rclone sync /var/log remote:backups --bwlimit 2M --transfers 1 --fast-list

Works fine but mergerfs keeps coming up in IRC, anyone tried that? Thinking about pooling these into one mount instead of this cron mess.

#2

Teh mergerfs is alot better imo

  • No cron needed just pool all teh disks
  • I pay €2.50 for my Contabo and €3 for OVHcloud so definately worth it
  • Recieve files in one place
  • Save bandwidth dong
#3

We have seen both approaches in production environments. Rclone with bandwidth limiting offers predictability for metered links, while mergerfs provides a unified namespace without the scheduling complexity.

For five nodes, we typically recommend testing both under your actual workload rather than assuming either is superior. Your I/O patterns matter more than the tool.

Sam

#4

My $3 CloudCone vps does 1800 mb/s sequential read

Your rclone with --transfers 1 is leaving performance on the table

Mergerfs wont fix slow storage backend

My $3 beats your $10 setup probably

phở at 3AM, deploy at 4
#5

This is like when source engine servers had sv_pure and everyone tried different sync methods for custom content

Tickrate mattered more than bandwidth fhonestly, 66 tick vs 100 tick was where you felt it

Kids play valorant now, no tickrate discussions anywhere, communities just gone

#6

Mergerfs with no cron? What happens when a node drops offline

#7

Same issue with Contabo, nullrouted twice

#8

Contabo nullrouted me once at 1.8M even with bwlimit. Their traffic shaping is aggressive. I switched to OVHcloud for the heavy sync jobs, no issues yet.

phở at 3AM, deploy at 4
#9
lol46 said:
What happens when a node drops offline

This is the key question. Mergerfs handles offline nodes by design -- reads fail gracefully, writes to the remaining branches continue. But your backup completeness suffers, and you only notice when you try to restore.

With rclone cron you get explicit failure logs. I know which node missed its window.

#10
minh1987 said:
Contabo nullrouted me once at 1.8M even with bwlimit

Same experience. Their Nuremberg shaping is brutal after 22:00 CET. I moved my heaviest box to OVHcloud Gravelines, night syncs actually finish now.

Still paying Contabo for the idle ones though. €4.50 is hard to quit.

Post a reply

You need an account to reply. Log in or register to join the conversation.

Post reply Preview Save draft