Backblaze has stopped backing up OneDrive and Dropbox folders and maybe others
rrreese
1035 points
619 comments
April 14, 2026
Related Discussions
Found 5 related stories in 91.0ms across 4,562 title embeddings via pgvector HNSW
- Backblaze Pricing and Product Updates precommunicator · 55 pts · March 17, 2026 · 56% similar
- Show HN: Stop paying for Dropbox/Google Drive, use your own S3 bucket instead Zm44 · 231 pts · April 07, 2026 · 45% similar
- BunnyCDN has been silently losing our production files for 15 months speckx · 145 pts · April 09, 2026 · 40% similar
- Bluesky April 2026 Outage Post-Mortem jcalabro · 134 pts · April 10, 2026 · 39% similar
- Case study: recovery of a corrupted 12 TB multi-device pool salt4034 · 29 pts · April 06, 2026 · 38% similar
Discussion Highlights (20 comments)
Terr_
I feel that's a systemic problem with all consumer online-backup software: They often use the barest excuse to not back things up. At best, it's to show a fast progress bar to the average user, and at worst it's to quietly renege on the "unlimited" capacity they promised when they took your money. [1] Trying to audit—let alone change—the finer details is a pain even for power users, and there's a non-zero risk the GUI is simply lying to everybody while undocumented rules override what you specified. When I finally switched my default boot to Linux, I found many of those offerings didn't support it, so I wrote some systemd services around Restic + Backblaze B2. It's been a real breath of fresh air: I can tell what's going on, I can set my own snapshot retention rules, and it's an order of magnitude cheaper. [2] ____ [1] Along the lines of "We have your My Documents. Oh, you didn't manually add My Videos or My Music for every user? Too bad." Or in some cases, certain big-file extensions are on the ignore list by default for no discernible reason. [2] Currently a dollar or two a month for ~200gb. It doesn't change very much, and data verification jobs redownload the total amount once a month. I don't backn up anything I could get from elsewhere, like Steam games. Family videos are in the care of different relatives, but I'm looking into changing that.
o10449366
I've recently been looking for online backup providers and Backblaze came highly recommended to me - but I think after reading this article I'll look elsewhere because this kind of behavior seems like the first step on the path of enshittification.
benguild
The fact that they’d exclude “.git” and other things without being transparent about it is scandalous
patates
I think this should not be attributed to malice, however unfortunate. I had also developed some sync app once and onedrive folders were indeed problematic, causing cyclic updates on access and random metadata changes for no explicit reason. Complete lack of communication (outside of release notes, which nobody really reads, as the article too states) is incompetence and indeed worrying. Just show a red status bar that says "these folders will not be backed up anymore", why not?
netdevphoenix
I only use Backblaze as a cold storage service so this doesn't affect me but it's worth knowing about changes in the delivery of their other services as it might become widespread
trvz
Meanwhile, Backblaze still happily backups up the 100TB+ I have on various hard drives with my Mac Pro.
dathinab
Ironically drop box and one drive folders I can still somewhat understand as they are "backuped" in other ways (but potentially not reliable so I also understand why people do not like that). But .git? It does not mean you have it synced to GitHub or anything reliable? If you do anything then only backup the .git folder and not the checkout. But backing up the checkout and not the .git folder is crazy.
fuckinpuppers
I noticed this (thankfully before it was critical) and I’ve decided to move on from BB. Easily over 10 year customer. Totally bogus. Not only did it stop backing it up the old history is totally gone as well. The one thing they have to do is backup everything and when you see it in their console you can rest assured they are going to continue to back it up. They’ve let the desktop client linger, it’s difficult to add meaningful exceptions. It’s obvious they want everyone to use B2 now.
100ms
Managing backup exclusions strikes again. It's impossible. Either commit to backing up the full disk, including the 80% of easily regenerated/redownloaded etc. data, or risk the 0.001% critical 16 byte file that turns out to contain your Bitcoin wallet key or god knows what else. I've been bitten by this more times than I'd like to admit managing my own backups, it's hard to expect a shrink-wrapped provider to do much better. It only takes one dumb simplification like "my Downloads folder is junk, no need to back that up" combined with (no doubt, years later) downloading say a 1Password recovery PDF that you lazily decide will live in that folder, and the stage is set. Pinning this squarely on user error. Backblaze could clearly have done better, but it's such a well known failure mode that it's not much far off refusing to test restores of a bunch of tapes left in the sun for a decade.
faangguyindia
I backup my data to s3 and r2 using local scripts, never had any issues Don't even know why people rely on these guis which can show their magic anytime
klausa
Exclusions are one thing, but I've had Backblaze _fail to restore a file_. I pay for unlimited history. I contacted the support asking WTF, "oh the file got deleted at some point, sorry for that", and they offered me 3 months of credits. I do not trust my Backblaze backups anymore.
mcherm
Some companies are in the business of trust. These companies NEED to understand that trust is somewhat difficult to earn, but easy to lose and nearly IMPOSSIBLE to regain. After reading this article I will almost certainly never use or recommend Backblaze. (And while I don't use them currently, they WERE on the list of companies I would have recommended due to the length of their history.)
noirscape
I can understand in theory why they wouldn't want to back up .git folders as-is. Git has a serious object count bloat problem if you have any repository with a good amount of commit history, which causes a lot of unnecessary overhead in just scanning the folder for files alone. I don't quite understand why it's still like this; it's probably the biggest reason why git tends to play poorly with a lot of filesystem tools (not just backups). If it'd been something like an SQLite database instead (just an example really), you wouldn't get so much unnecessary inode bloat. At the same time Backblaze is a backup solution. The need to back up everything is sort of baked in there. They promise to be the third backup solution in a three layer strategy (backup directly connected, backup in home, backup external), and that third one is probably the single most important one of them all since it's the one you're going to be touching the least in an ideal scenario. They really can't be excluding any files whatsoever. The cloud service exclusion is similarly bad, although much worse. Imagine getting hit by a cryptoworm. Your cloud storage tool is dutifully going to sync everything encrypted, junking up your entire storage across devices and because restoring old versions is both ass and near impossible at scale, you need an actual backup solution for that situation. Backblaze excluding files in those folders feels like a complete misunderstanding of what their purpose should be.
Jolter
To the author: please use a darker font. Preferably black. I’m only in my 40’s, I don’t require glasses (yet) and I have to actively squint to read your site on mobile. Safari, iPhone. I’m pretty sure you’re under the permitted contrast levels under WCAG.
venzaspa
On the topic of backing up data from cloud platforms such as Onedrive, I suspect this is stop the client machine from actively downloading 'files on demand' which are just pointers in explorer until you go to open them. If you've got huge amounts of files in Onedrive and the backup client starts downloading everyone of them (before it can reupload them again) you're going to run into problems. But ideally, they'd give you a choice.
lpcvoid
Hetzner storagebox. 1TB for under 5 bucks/month, 5TB for under 15. Sftp access. Point your restic there. Backup game done, no surprises, no MBAs involved.
stratts
I think this is a risk with anything that promotes itself as "unlimited", or otherwise doesn't specify concrete limits. I'm always sceptical of services like this as it feels like the terms could arbitrarily change at any point, as we've found out here. (as a side note, it's funny to see see them promoting their native C app instead of using Java as a "shortcut". What I wouldn't give for more Java apps nowadays)
palata
My takeaway is that for data that matters, don't trust the service. I back up with Restic, so that the service only sees encrypted blobs.
throwaway81998
This is terrifying. Aren't Backblaze users paying per-GB of storage/transfer? Why should it matter what's being stored, as long as the user is paying the costs? This will absolutely result in permanent data loss for some subset of their users. I hope Backblaze responds to this with a "we're sorry and we've fixed this."
knorker
Is this grey-on-black just meant for LLMs to see for training, or is the intention that humans should be able to read it too?