TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Petabyte Dictionary Lookup

2 pointsby fleroviumalmost 2 years ago
What is the cheapest and most efficient way to make a map from keys to values at very large scale, perhaps several petabytes?<p>When you query, the results are allowed to be a little stale.<p>It should be available to several boxes on a datacenter. Services that provide this are acceptable.

2 comments

nikonyrhalmost 2 years ago
Well the theory tells us that lookups are O(1) anyway, so the implementation doesn&#x27;t matter ;)<p>Will the dataset change over time, or is it immutable? I have some thoughts on this, but I have no idea how it would scale to terabyte-scale and even further.
icsaalmost 2 years ago
Extendible hashing or Minimal perfect hashing