frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Do you use Claude Code or Cursor slash commands?

1•alexoberneyer•28s ago•0 comments

Microservices and the Ops / Dev Ratio

https://logical.li/blog/ops-dev-ratio/
1•BinaryIgor•56s ago•0 comments

AI for Adults

https://matthewsanabria.dev/posts/ai-for-adults/
1•sebg•1m ago•0 comments

Hue and Cry

https://en.wikipedia.org/wiki/Hue_and_cry
1•n1b0m•1m ago•0 comments

The New AirPods Can Translate Languages in Your Ears. This Is Profound

https://www.nytimes.com/2025/09/18/technology/personaltech/new-airpods-language-translation-featu...
1•ingve•4m ago•0 comments

Hard Disk Unexpectedly Not Dead

https://blog.dshr.org/2025/09/hard-disk-unexpectedly-not-dead.html
1•zdw•4m ago•0 comments

New bill aims to block both online adult content and VPNs

https://www.cnet.com/tech/services-and-software/new-bill-aims-to-block-both-online-adult-content-...
5•heavyset_go•8m ago•0 comments

Show HN: Burnt US Dollars

https://busd.steviep.xyz
1•scyclow•8m ago•2 comments

Show HN: HuMo AI – Multi-modal human-centric video generator (text+image+audio)

https://humo-ai.com
1•dallen97•9m ago•0 comments

Mise En Place

https://en.wikipedia.org/wiki/Mise_en_place
1•thunderbong•9m ago•0 comments

Building a Secure and Interoperable Future for AI-Driven Payments

https://ap2-protocol.org/
1•nateb2022•10m ago•0 comments

Changing Clouds May Tell Us Something About Climate Change

https://www.nytimes.com/interactive/2025/09/10/opinion/clouds-climate-change.html
2•mooreds•10m ago•0 comments

American Prairie unlocks another 70k acres in Montana

https://earthhope.substack.com/p/victory-for-public-access-american
7•mooreds•10m ago•0 comments

Cut Costs, Not Accuracy: LLM-Powered Data Processing with Guarantees

https://arxiv.org/abs/2509.02896
1•PaulHoule•11m ago•0 comments

Samsung confirms its smart fridges will start showing you ads

https://www.androidauthority.com/samsung-confirms-smart-refrigerator-ads-are-coming-3598848/
5•kotaKat•12m ago•2 comments

FTC Sues Live Nation and Ticketmaster for Resale Tactics, Price/Limit Deception

https://www.ftc.gov/news-events/news/press-releases/2025/09/ftc-sues-live-nation-ticketmaster-eng...
2•gnabgib•12m ago•0 comments

Nvidia invests $5B US in stake and chip partnership with Intel

https://www.cbc.ca/news/business/nvidia-intel-deal-1.7636948
2•uladzislau•13m ago•1 comments

Lingokids raises $120M for interactive learning app for kids

https://gamesbeat.com/lingokids-raises-120m-for-interactive-learning-app-for-kids/
1•doppp•14m ago•0 comments

Introducing: Next-Gen UniFi Storage [video]

https://www.youtube.com/watch?v=nv36qeanFIo
1•ksec•14m ago•0 comments

Disconnecting from Discord

https://omglol.news/2025/09/18/disconnecting-from-discord
2•brantonb•16m ago•0 comments

Application vs. Database: Where Should Permissions Live?

https://mergify.com/blog/application-vs-database-where-should-permissions-live
1•jd__•16m ago•0 comments

Swiyu, the Swiss Trust Infrastructure ecosystem (e-id)

https://github.com/swiyu-admin-ch
1•BafS•17m ago•0 comments

If restaurants ran like AWS

https://stackadilly.com/blog/if-restaurants-ran-like-aws
2•twerkman•17m ago•0 comments

Launch HN: Cactus (YC S25) – AI inference on smartphones

https://github.com/cactus-compute/cactus
8•HenryNdubuaku•17m ago•0 comments

Link Extractor

https://github.com/cssnr/link-extractor
1•toomuchtodo•18m ago•1 comments

Zero trust isn't a feature, it's a philosophy

https://www.spiceworks.com/security/zero-trust-isnt-a-feature-its-a-philosophy/
2•CrankyBear•19m ago•0 comments

Mapping Competitive Biotech Landscapes with Embeddings

https://rxdatalab.com/research/biotech-competitive-landscape-embeddings/
2•nnmg•19m ago•0 comments

Glass Substrates Gain Momentum

https://semiengineering.com/glass-substrates-gain-momentum/
3•rbanffy•19m ago•0 comments

A glimpse into Oscar winner movie "Flow" – Blender Conference 2025 [video]

https://www.youtube.com/watch?v=hLKSudM6BcQ
3•shankysingh•20m ago•0 comments

Tiny but mighty: The Phi-3 small language models with big potential

https://news.microsoft.com/source/features/ai/the-phi-3-small-language-models-with-big-potential/
1•jimsojim•22m ago•0 comments
Open in hackernews

TernFS – An exabyte scale, multi-region distributed filesystem

https://www.xtxmarkets.com/tech/2025-ternfs/
58•rostayob•1h ago

Comments

mrbluecoat•54m ago
Cool project and kudos for open sourcing it. Noteworthy limitation:

> TernFS should not be used for tiny files — our median file size is 2MB.

heipei•46m ago
Yeah, that was the first thing I checked as well. Being suited for small / tiny files is a great property of the SeaweedFS system.
pandemic_region•39m ago
What happens if you put a tiny file on it then? Bad perf, possible file corruption, ... ?
redundantly•35m ago
Probably wasting space and lower performance.
jleahy•33m ago
It's just not optimised for tiny files. It absolutely would work with no problems at all, and you could definitely use it to store 100 billion 1kB files with zero problems (and that is 100 terabytes of data, probably on flash, so no joke). However you can't use it to store 1 exabyte of 1 kilobyte files (at least not yet).
jandrewrogers•4m ago
I have worked on exabyte-scale storage engines, there is a good engineering reason for this type of limitation.

If you had 1 KiB average file size then you have quadrillions of metadata objects to quickly search and manage with fine-granularity. The kinds of operations and coordination you need to do with metadata is difficult to achieve reliably when the metadata structure itself is many PB in size. There are many interesting edge cases that show up when you have to do deep paging of this metadata off of storage. Making this not slow requires unorthodox and unusual design choices that introduce a lot of complexity. Almost none of the metadata fits in memory, including many parts of conventional architectures we assume will easily fit in memory.

A mere trillion objects is right around the limit of where the allocators, metadata, etc can be made to scale with heroic efforts before conventional architectures break down and things start to become deeply weird on the software design side. Storage engines need to be reliable, so avoiding that design frontier makes a lot of sense if you can avoid it.

It is possible to break this barrier but it introduces myriad interesting design and computer science problems for which there is little literature.

ttfvjktesd•42m ago
How does TernFS compare to CephFS and why not CephFS, since it is also tested for the multiple Petabyte range?
rostayob•33m ago
(Disclaimer: I'm one of the authors of TernFS and while we evaluated Ceph I am not intimately familiar with it)

Main factors:

* Ceph stores both metadata and file contents using the same object store (RADOS). TernFS uses a specialized database for metadata which takes advantage of various properties of our datasets (immutable files, few moves between directories, etc.).

* While Ceph is capable of storing PBs, we currently store ~600PBs on a single TernFS deployment. Last time we checked this would be an order of magnitude more than even very large Ceph deployments.

* More generally, we wanted a system that we knew we could easily adapt to our needs and more importantly quickly fix when something went wrong, and we estimated that building out something new rather than adapting Ceph (or some other open source solution) would be less costly overall.

mgrandl•11m ago
There are definitely insanely large Ceph deployments. I have seen hundreds of PBs in production myself. Also your usecase sounds like something that should be quite manageable for Ceph to handle due to limited metadata activity, which tends to be the main painpoint with CephFS.
sreekanth850•19m ago
Wow, great project.
nunobrito•17m ago
Thanks for sharing.