惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

Proxmox Support Forum

[SOLVED] - Github Auth for Mirrors-Kernel Repo? [Automation] Mass migration tool for MS Win11/Server Proxmox GUI hang - not response is it possible to reject or quarantine spam based on conditions I set ? The PVENode task list in PVE9 is partially obscured due to the terminal font being too large. About 100% error reporting due to pveproxy.service hooks Kubernetes overlay networking breaks when upgrading from PVE 9.1 to PVE 9.2.3 Zentraler Speicher No space left on device Combine datastore and direct file archival to tape Kernel panic VFS: Unable to mount root fs on unknown-block (0,0) sobald ein 7.x Kernel verwendet wird. How to migrate disk of a VM from one ZFS to another Windows Server 2025 fails to boot after PVE 9.2 / Linux 7.0 Kernel upgrade Cannot Install Proxmox on T610 Poweredge with H700 PERC card sdn Config. gateway not reachable How to safely change domain/FQDN? Welche Filterquote erreicht ihr? NFS Share status unknown on 2 of 5 nodes Can't connect to PVE9 consoles [solved] Can't connect to PVE9 consoles [solved] [SOLVED] - Use secondary network for PVE commands Created cluster, one node storage gone BUG: proxmox mail gateway FROM = null bypass spam filtering Moving existing PBS from VMWare workstation to PVE cluster Does eBGP SDN fabric support external peering? Bug: PDM 1.1 not recognizing valid license status Proxmox GUI hang - not response PVE crashes unexpectedly Proxmox Backup Server 4.2 released! Advice
How to split chunks and snapshots off into different stor...
invalid@exam · 2026-06-12 · via Proxmox Support Forum

I'm aware of the ZFS special VDEV approach but that's not what I'm looking for here. I'm looking for two separate repos: one that handles all the snapshot files and the other that handles all the chunks. This way I'd be able to sync them separately to S3 and do immutable things that current iterations of PBS aren't doing.

Then again, if PBS is close to actually supporting immutable S3 repos I'll spare myself the engineering time to work around the issue.

PBS doesn't require ZFS.
PBS snapshots are just a file manifest (=index/catalog/map) of chunks required.
If you want chunks immutable then snapshots should too.
sorry if I miss your point, not English here.

immutable things that current iterations of PBS aren't doing.

What would that be?

Supporting an immutable S3 repository at all?

PBS doesn't require ZFS.
PBS snapshots are just a file manifest (=index/catalog/map) of chunks required.
If you want chunks immutable then snapshots should too.
sorry if I miss your point, not English here.

This is nothing to do with the filesystem the backup repo is stored to, this is about splitting the repo into one for indexes/snapshots/etc and the other for the .chunks directory.

This is nothing to do with the filesystem the backup repo is stored to

But you were the first to mention ZFS :-/ and, indeed, it's irrelevant.

splitting the repo into one for indexes/snapshots/etc and the other for the .chunks directory.

what is the point ?

But you were the first to mention ZFS :-/ and, indeed, it's irrelevant.

I was referencing a PBS wiki page that suggested adding a ZFS special device to host the snapshots, with chunks on spinning metal. That's all.

In a true DR scenario where we have to assume compromise, restoring directly from an immutable S3 repository is impossible - PBS won't mount the bucket successfully. The obvious solution is to duplicate the immutable bucket to a mutable bucket, then mount and restore from that. What I'm trying to do is reduce the amount of duplication required - the snapshot dir tree isn't very large compared to chunks, so if we can upload two filesystems to two buckets and only duplicate the smaller one at restore time... I think you see where I'm trying to go here.

Really looking forward to seeing finalized support for immutable S3 buckets so I don't need to engineer around it though.

argh ... not native English here.

ZFS special device to host the snapshots, with chunks on spinning metal.

is not correct. ZFS special device stores metadata of all files and can store small files.
There is no data in snapshots, they are about MBs , they are not the "diffirential data".
Snapshots are "just" manifest/catalog files of the used data stored in .chunks

I got your point about PBS doesn't like a "read only datastore" ( S3 or not ).
I'm not S3 user, but can probably be worked around with a "write overlay" , perhaps there are already topics about it.

EDIT: But in first place, I missing the point, how the backup is done if datastore is read only ?! What is your workflow ?

Last edited:

UdoB

Distinguished Member

The term "snapshot" has multiple and technically different meanings, like four or five or so. "Somebody" should write an FAQ article we could point to...

Last edited:

EDIT: But in first place, I missing the point, how the backup is done if datastore is read only ?! What is your workflow ?

Workflow is pretty simple: backup to local -> offload to s3 -> (outside PBS) sync s3 mutable bucket to s3 immutable bucket

Restore is similar: sync s3 immutable bucket to s3 mutable bucket -> attach PBS to that bucket -> restore

What I'm trying to do is minimize the downtime and cost of the sync step during restore.

The term "snapshot" has multiple and technically different meanings, like four or five or so. "Somebody" should write an FAQ article we could point to...

Fair point. In this case, I'm using "snapshot" to reference the directory tree that stores all the metadata for the backups, i.e.:
/backup/ns/{namespace/vm/1000 and so on
With five sites, our entire /backup/ns directory is only 505M, with the .chunks directory being orders of magnitude larger.

UdoB

Distinguished Member