TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ceph SQLite VFS

16 点作者 Fizzadar大约 1 年前

2 条评论

justinclift大约 1 年前
Super interesting. A major point to be aware of from the docs:<p><pre><code> Note what this is not: a distributed SQL engine. [...] SQLite on RADOS is meant to be accessed by a single SQLite client database connection at a given time. </code></pre> So it distributes the backend storage across multiple nodes for the increased reliability, but any individual SQLite database is only accessible from a single node at a time.<p>That still sounds like a good trade off in a lot of cases.<p>Performance wise, the docs mention this when SQLite is configured for WAL journaling:<p><pre><code> You can expect around 150-250 transactions per second ... </code></pre> That&#x27;s easily good enough for a lot of things. Obviously that would vary too depending on how the Ceph cluster itself is set up.<p>Wonder if this could be extended somehow, maybe with range locking?, to enable simultaneous operations from multiple nodes? Thereby to create a cheap mans Oracle RAC equivalent... :)
mdaniel大约 1 年前
you&#x27;re rolling the dice linking to &quot;lolo latest&quot; URLs <a href="https:&#x2F;&#x2F;docs.ceph.com&#x2F;en&#x2F;reef&#x2F;rados&#x2F;api&#x2F;libcephsqlite&#x2F;" rel="nofollow">https:&#x2F;&#x2F;docs.ceph.com&#x2F;en&#x2F;reef&#x2F;rados&#x2F;api&#x2F;libcephsqlite&#x2F;</a><p>the previous (2022) submission had one comment that seems interesting: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=32395905">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=32395905</a>