From 34245a1bef704899b517c952422d9e44fffbf49c Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Tue, 29 Aug 2023 13:14:27 +0200 Subject: [PATCH] update backblaze pricing --- src/routes/posts/quick-comparison-of-s3/+page.md | 2 +- .../posts/quick-comparison-of-s3/_compare/Compare.svelte | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/posts/quick-comparison-of-s3/+page.md b/src/routes/posts/quick-comparison-of-s3/+page.md index 0313175..1d415c0 100644 --- a/src/routes/posts/quick-comparison-of-s3/+page.md +++ b/src/routes/posts/quick-comparison-of-s3/+page.md @@ -64,7 +64,7 @@ Has a policy that egress shouldn't be higher than the stored amount. Consider us | Category | Free | Paid | | -------- | ---- | ---- | -| Storage | 10GB | $5/TB/month | +| Storage | 10GB | $6/TB/month | | Egress | 1GB/day | $10/TB/month | | Class A ops | $\infty$ | - | | Class B ops | 2500/day | $4 / 10 million | diff --git a/src/routes/posts/quick-comparison-of-s3/_compare/Compare.svelte b/src/routes/posts/quick-comparison-of-s3/_compare/Compare.svelte index 3d92be6..d89b5b2 100644 --- a/src/routes/posts/quick-comparison-of-s3/_compare/Compare.svelte +++ b/src/routes/posts/quick-comparison-of-s3/_compare/Compare.svelte @@ -27,8 +27,8 @@ }, { name: "Backblaze B2", nameShort: "B2", - price: ({ storage, egress, fileCount, dataRetention, cloudflareProxy }) => 4 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6, - priceString: "4 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6", + price: ({ storage, egress, fileCount, dataRetention, cloudflareProxy }) => 6 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6, + priceString: "6 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6", color: "red", link: "backblaze-b2" }, {