Earlier quoted context omitted.
> Those are all many times slower than Redis though I'd appreciate if there any links/doc that I could look into to learn more about this?
Blog post from antirez http://oldblog.antirez.com/post/redis-persistence-demystifie...
Apache Pegasus - A horizontally scalable, high-performance key-value store
31–40 of 41 posts
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#32Earlier quoted context omitted.
Blog post from antirez http://oldblog.antirez.com/post/redis-persistence-demystifie...
Thanks for the link. In that post, he writes "Note: when we talk about disk controller we actually mean the caching performed by the controller or the disk itself. In environments where durability is important system administrators usually disable this layer of caching." I'm not sure I completely understand that note. Can you illuminate?
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#33Earlier quoted context omitted.
Thanks for the link. In that post, he writes "Note: when we talk about disk controller we actually mean the caching performed by the controller or the disk itself. In environments where durability is important system administrators usually disable this layer of caching." I'm not sure I completely understand that note. Can you illuminate?
That's probably in cases where the disk controller can't guarantee that accepted writes will make it to the disk in the case of power failure. I worked with bare metal servers that had redundant power supplies including to the caching/raid disk controller and disks that in the event of power loss could still guarantee that writes that were 'sync'd by software were written after power loss.
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#34Note that this seems to be a relatively old project, first commits from 2015. The project seems active, but most of the work seems to have been done around its inception, with some significant activity from 2020 onwards. Speculation/interpretation: So this might be a project that was used internally by some company, but perhaps not any more, and they've decided to open-source it at some point (2017-2018?) because som…
Source: https://www.zhihu.com/question/66719537/answer/245270169 (in Chinese)
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#35Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#36Earlier quoted context omitted.
Apache foundation is retirement home for projects so it checks out
I wouldn't say thats accurate. Theres many super successful and active apache projects still. To name a few: Kafka, Cassandra, Zookeeper, Spark, Tomcat, Superset, Storm, Lucene,Log4j2, Hadoop, etc. The list goes on, but I would safely say that a majority of the world's systems run on Apache projects which are for the most part actively developed
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#37Earlier quoted context omitted.
I wouldn't say thats accurate. Theres many super successful and active apache projects still. To name a few: Kafka, Cassandra, Zookeeper, Spark, Tomcat, Superset, Storm, Lucene,Log4j2, Hadoop, etc. The list goes on, but I would safely say that a majority of the world's systems run on Apache projects which are for the most part actively developed
And arguably the venerable Apache HTTP Server · https://httpd.apache.org/ :-)
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#38Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#39Earlier quoted context omitted.
Apache foundation is retirement home for projects so it checks out
I wouldn't say thats accurate. Theres many super successful and active apache projects still. To name a few: Kafka, Cassandra, Zookeeper, Spark, Tomcat, Superset, Storm, Lucene,Log4j2, Hadoop, etc. The list goes on, but I would safely say that a majority of the world's systems run on Apache projects which are for the most part actively developed
So when there are better alternatives, it's not too inaccurate.
Re: Apache Pegasus - A horizontally scalable, high-performance key-value store
#40Note that this seems to be a relatively old project, first commits from 2015. The project seems active, but most of the work seems to have been done around its inception, with some significant activity from 2020 onwards. Speculation/interpretation: So this might be a project that was used internally by some company, but perhaps not any more, and they've decided to open-source it at some point (2017-2018?) because som…
> yet another RocksDB-based KV store Aaah, there was a super informative talk about the different databases at Facebook, most of them built on RocksDB, with different trade offs. (And I can't find the video :((((( ) Anyway, it makes sense to have yet another it if serves a different purpose. Eg. for read-heavy workloads (caches, serving user feeds, whatever), or write-heavy (monitoring, storing that sweet sweet track…