# What will be the motivation to move from cassandra to YB

**URL:** https://forum.yugabyte.com/t/what-will-be-the-motivation-to-move-from-cassandra-to-yb/1440
**Category:** General
**Created:** [February 12, 2022, 6:13pm UTC](https://forum.yugabyte.com/t/what-will-be-the-motivation-to-move-from-cassandra-to-yb/1440 "2022-02-12T18:13:42Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Rajib\_Deb](https://yyz1.discourse-cdn.com/flex027/user_avatar/forum.yugabyte.com/rajib_deb/32/460_2.png) [@Rajib\_Deb](https://forum.yugabyte.com/u/Rajib_Deb)
#### Post date: [February 12, 2022, 6:13pm UTC](https://forum.yugabyte.com/t/what-will-be-the-motivation-to-move-from-cassandra-to-yb/1440/1 "2022-02-12T18:13:42Z")

</div>

I am currently going through Yugabyte courses and trying to understand the advantage that one may get by moving from cassandra to YB. I see YB uses RAFT while Cassandra uses PAXOS for consensus. Does RAFT provide better performance? Are there any other advantages one will get by moving to YB from Cassandra.

---

<div class="post-metadata">

### Author: ![kannan](https://yyz1.discourse-cdn.com/flex027/user_avatar/forum.yugabyte.com/kannan/32/18_2.png) [@kannan](https://forum.yugabyte.com/u/kannan)
#### Post date: [February 14, 2022, 12:10am UTC](https://forum.yugabyte.com/t/what-will-be-the-motivation-to-move-from-cassandra-to-yb/1440/2 "2022-02-14T00:10:57Z")

</div>

Apache Cassandra’s basic DML operations do not use Paxos. It is eventually consistent. Only for operations such as INSERT … IF NOT EXISTS or UPDATE … IF EXISTS… (and a few others like these which need read-modify-write atomicity) they use Paxos… they refer to these as light-weight transactions, and it requires about 4 network round-trips.

YugabyteDB uses Raft in a fundamental manner. So the key difference between the two systems is not about Raft vs. Paxos… but the scope of operations for which a distributed consensus protocol (like Raft or Paxos) is used.

To read about other differences/advantages, see here: [Compare Apache Cassandra with YugabyteDB | YugabyteDB Docs](https://docs.yugabyte.com/latest/comparisons/cassandra/)
