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.

Umbra: A Disk-Based System with In-Memory Performance [pdf]

55 pointsby itunpredictableabout 1 year ago

9 comments

hinkleyabout 1 year ago
I still maintain that the existence of in memory databases has two main sources: scalability bottlenecks in GC, and storage latency falling behind network latency and staying there.<p>If general purpose programming languages could store the data efficiently in main memory, the feature set of in memory databases is not so high that you can’t roll your own incrementally. But your GC times are going to go nuts, and you’ll go off the rails.<p>If the speed of light governed data access, you’d collect your data locally and let the operating system decide which hot paths to keep in memory versus storage.<p>The last time network was faster than disk was the 1980’s, and we got things like process migration systems (Sprite). Those evaporated once the pendulum swung back.
评论 #40240565 未加载
评论 #40241924 未加载
planckscnstabout 1 year ago
&gt; we can achieve comparable performance to an in-memory database system for the cached working set<p>Should I keep reading, or is the title misleading?<p>The abstract seems to say that the system provides memory-comparable performance for data that is... in-memory
评论 #40243246 未加载
zX41ZdbWabout 1 year ago
Umbra in ClickBench: <a href="https:&#x2F;&#x2F;github.com&#x2F;ClickHouse&#x2F;ClickBench&#x2F;pull&#x2F;161">https:&#x2F;&#x2F;github.com&#x2F;ClickHouse&#x2F;ClickBench&#x2F;pull&#x2F;161</a><p>The initial submission didn&#x27;t reproduce successfully due to a segmentation fault in an attempt to restart it after data loading. But after some changes, it started to work and showed exceptionally good results.
评论 #40242032 未加载
评论 #40241996 未加载
epistasisabout 1 year ago
This is a Database System, if you&#x27;re checking the comments to understand what type of system this is about. The paper appears in <i>10th Annual Conference on Innovative Data Systems Research</i>, and appearing in that context makes it clear.
CurtHagenlocherabout 1 year ago
You can see additional papers from the same group at <a href="https:&#x2F;&#x2F;umbra-db.com&#x2F;#publications" rel="nofollow">https:&#x2F;&#x2F;umbra-db.com&#x2F;#publications</a>
评论 #40240085 未加载
nextaccounticabout 1 year ago
Does this use io_uring?
评论 #40245562 未加载
m3kw9about 1 year ago
What black magic is this?
avinasshabout 1 year ago
Can this beat Redis
评论 #40245610 未加载
beoberhaabout 1 year ago
Obligatory link to Neumann’s presentation for the CMU DB lecture series<p><a href="https:&#x2F;&#x2F;m.youtube.com&#x2F;watch?v=pS2_AJNIxzU" rel="nofollow">https:&#x2F;&#x2F;m.youtube.com&#x2F;watch?v=pS2_AJNIxzU</a>