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.

Hardware Acceleration of Key-Value Stores [pdf]

37 pointsby StylifyYourBlogover 10 years ago

4 comments

TD-Linuxover 10 years ago
Their system works well on a RISC-V, which is a deeply pipelined but in-order architecture running at only 50MHz, with very fast memory relative to its clock speed. I&#x27;d like to see results compared to a more reasonable CPU implementation. For example they could have used a Xilinx Zynq, which includes hard Cortex A9 cores, which are out-of-order and superscalar. They also run at a much higher frequency relative to the memory speed.<p>I think this paper vastly underestimates memory constraints of higher performance systems.
评论 #8802479 未加载
toomimover 10 years ago
At first, I was impressed they reduced latency by 10x:<p><pre><code> Our initial evaluation with a realistic workload shows a 10x improvement in latency for 40% of requests without adding significant overhead to the remaining requests. </code></pre> And then I re-read this claim, did a little math, and realized that they only reduced it by 36%.<p>&quot;10x for 40% of requests&quot; is a skeezy way of saying 36%.
评论 #8802926 未加载
评论 #8801825 未加载
评论 #8801830 未加载
pradnover 10 years ago
Nothing revolutionary, but someone had to do it. (Of course, you would take something expensive in software and implement the logic in software. Of course you can get by implementing only the most common requests: GETs to a small subset of keys.)<p>I don&#x27;t intend to criticize this paper in particular, but, generally, I don&#x27;t see small performance improvements in such software to be very useful for society. Academia just becomes a research arm of corporations that might even be a net negative for society: eroding privacy rights (Facebook et al) or introducing volatility into stock markets (HFT could use this paper&#x27;s insight just as fruitfully.)
评论 #8801841 未加载
评论 #8801894 未加载
评论 #8801831 未加载
moru0011over 10 years ago
Main source of latency will be network. The main problem are synchronous GET requests as then performance == latency. Better go async instead of reducing latency with hardware accel.
评论 #8802263 未加载