Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. When did Google get so weird? (sancho.bearblog.dev)
    277comments
  2. Ember-1 (fireworks.ai)
    160comments
  3. Lunar Terminator Paradox (secretsauce.net)
    17comments
  4. Alan Kay's answer to “Did the ENIAC have a BIOS”? (quora.com)
    19comments
  5. The state of SIMD in Rust in 2026 (shnatsel.github.io)
    19comments
  6. Show HN: Lofi Cities – Pixel-art city nights with browser-generated lofi (loficities.com)
    59comments
  7. There is more to code review than (automatable) detection (adaptivecapacitylabs.com)
    14comments
  8. Don't couple your Go code to GitHub (iain.rocks)
    51comments
  9. Imp is a full port of DSPy to the BEAM (github.com/deepfates)
    5comments
  10. S3 Is the Future, S3 Is the Past (btrblocks.com)
    13comments
  11. What I did at Recurse Center (thill.me)
    14comments
  12. In an $80 motel room, a discovery to shed light on the origins of life (nytimes.com)
    78comments
  13. Oral history of John Chowning, inventor of FM synthesis [video] (youtube.com)
    6comments
  14. Replacing the old battery on rechargeable bike lights (jvns.ca)
    67comments
  15. My Recent Woodworking Projects (notoriousbfg.com)
    2comments
  16. Writing Efficient C++ Code (2013) (asawicki.info)
    77comments
  17. Previously unheard recordings of John Coltrane, captured by Frank Tiberi (jazzwise.com)
    15comments
  18. A New Experiment Meta-Strategy (chillphysicsenjoyer.substack.com)
    —discuss
  19. The Cartesian Hand: In-Hand Manipulation with All-Linear Fingers (generalroboticslab.com)
    8comments
  20. Flip Fluid on Flip Dots (mitxela.com)
    24comments
  21. Fragment of oldest known peace treaty found in Turkey (livescience.com)
    8comments
  22. Fakecloud: Local AWS cloud emulator for integration tests (fakecloud.dev)
    49comments
  23. The Normalization of Inexplicable Failures (ihatethefuture.com)
    94comments
  24. EV Sales Are Booming in Europe with Gasoline at $10 a Gallon (bloomberg.com)
    23comments
  25. Faster prompt lookup drafting in llama.cpp (jadidbourbaki.github.io)
    9comments
  26. KICKI: a DECsystem1060 (icm.museum)
    2comments
  27. Show HN: TinyAIArena watch AI agents battle it out (tinyaiarena.com)
    40comments
  28. Video CDs Break Windows Explorer (clydesnotes.blogspot.com)
    32comments
  29. On caring for user data: NeoVim caused Vim undo files to be deleted (aresluna.org)
    303comments
  30. Show HN: Cartopolis, interactive globe-sized 3D world (garage44.eu)
    —discuss

S3 Is the Future, S3 Is the Past

26 pointsby 1d agobtrblocks.com
12 comments
53m agoHN ↗

S3’s dominance is due to its many advantages: effectively infinite capacity, high durability, and low per-gigabyte capacity cost.

It's not "cheap". 6 months of S3 is at around price of outright buying 4TB SSD at retail price. That before you do any IOPS to it

S3 is terrible deal on any front. it's just easy

39m agoHN ↗

Everything in AWS is expensive. But at least S3 adds a lot of value.

39m agoHN ↗

As someone with TBs of SSDs and HDDs laying around I am someone who agrees with your point, but this is not a good way to compare costs.

For one, this has no redundancy and doesn't factor the cost of the machine providing the storage. But also it's an upfront cost for storing 4TB. It would be implied you wouldn't literally store 4TB on the SSD because now you're out of capacity for more data. If you only have 2GB of data in a bucket then S3 is still magnitudes cheaper, faster, and more redundant than anything you could put together yourself because the cost is spread across all the users of the service.

Reality is there are so many times that S3 makes the most sense that it makes people short-circuit and always pick S3 despite the huge hidden IOPS and bandwidth costs everyone rightfully tries to point out.

27m agoHN ↗

It's not "cheap". 6 months of S3 is at around price of outright buying 4TB SSD at retail price. That before you do any IOPS to it

This is badly misunderstanding the problem: S3 is a highly available service with geographic redundancy and a huge range of integrated features. Your comparison would need to be updated to include multiple running servers in addition to redundant storage, and the software stack implementing things like immutability, not to mention all of the security features.

That’s not to say that you can’t build equivalents for the parts you use but you either need massive scale or giving up features to do that. For example, if you can tolerate bitrot or long access times if hardware fails, you can definitely get a lower cost per terabyte.

The reason why most people don’t do that, even when they have scale, is that it adds cost and risk everywhere else if you need engineering/ops people working on storage. If you’re, say, the internet archive that might make sense—it’s quite literally why your organization exists—but most other places are going to see all of the integrated features that they don’t have to build and operate paying for the difference between S3 and physical media pricing. For example, if I want to process files as soon as they’re uploaded or have immutability, I can just turn that on rather than having to build more services.

24m agoHN ↗

Even if you factor that it, S3 is pretty expensive for most small to medium size data.

19m agoHN ↗

Try doing the math and ask why your time costs. You need to buy a lot of storage to pay for the engineering work and most places would prefer to spend that time and attention on the product rather than shaving a few percent off of the storage bill (especially since the savings will be negative for quite some time).

6m agoHN ↗

Wait, I'm confused, are you arguing for or against S3? Did you mean factoring the time needed to obtain the multiple PhD levels of information in tracking the cost, usage, and security of those interoperable services plugged into S3?

34m agoHN ↗

Nice article. I agree that it is a bit of a shame that everything is forced to be so S3-centric (and I say that as someone whose work helped motivate a lot of people to do that), but right now its an unfortunate reality of running software in the cloud because cloud networking and SSDs are so expensive that you really are required to use S3 if you want a system that can handle "big data" scale workloads cost effectively

28m agoHN ↗

The unfortunate part of that graph is that I think it's not updated for today's prices given the memory shortage/crunch we're experiencing that's driven up the prices for all kinds of memory.

But also while it should be faster than it is, how would an S3 designed around SSDs look differently to an API user? I would think the API is basically the same.

8m agoHN ↗

It would probably look a lot like existing S3 concepts that have explicit hot and cold tiers. For example Intelligent Tiering, or Glacier.

12m agoHN ↗

We ran EBS for years. Finally the costs became ridiculous and we moved our entire dataset to S3. We’re saving 20k/month. There’s just no beating the price.

10m agoHN ↗

One thing I find notable about S3 today is that, while it used to drop in price reasonably often, there hasn't been a price drop in a full decade:

  2006-03-14  $0.150/GB-month
  2010-11-01  $0.140/GB-month
  2012-02-01  $0.125/GB-month
  2012-12-01  $0.095/GB-month
  2014-02-01  $0.085/GB-month
  2014-04-01  $0.030/GB-month
  2016-12-01  $0.023/GB-month

Today it's still $0.023/GB-month.