-
Notifications
You must be signed in to change notification settings - Fork 3
Stack Overview
If you are already familiar with our Cassandra stack and just want to move on to the first exercise go to the next section => βοΈ Create Astra Instance. Otherwise, read on.
We will cover:
Sources Cassandra Documentation, Astra Documentation and Stargate Documentation
π΅ Cassandra: is the NoSQL Open Source Database which is the foundation of the stack. Cassandra powers many extremely large and demanding databases for enterprises around the world, and is the best option for companies needing scalability and performance.
π΅ Astra: provides a serverless instance of Cassandra. This comes with a free $25 credit, providing a significant amount of data and transactions. You're charged only for what you use, and there's no credit card needed.
π΅ Stargate: is an open source engine to provide APIs for Cassandra databases. It's available free for your use, and comes with every Astra instance.
π΅ NoSQL: Cassandra is a NoSQL database. Unlike many other systems, by default it requires a schema (the Stargate Document API does not require a schema). There is a CQL query language for working with Cassandra. CQL does not handle joins, and transactions are unbelievably fast.
π΅ Nodes: Cassandra is designed to be distributed. You decide how many nodes you need, and you can introduce them into your instance without any downtime. Each node can handle thousands of transactions per second per core, and every node can handle any query. Nodes keep each other up to date by something called "gossiping", making sure your data stays current.
π΅ Datacenters: Cassandra can have many nodes per datacenter, and as many data centers as you like.
π΅ Use cases: Here's a high level overview of the use cases where Cassandra really shines.
π΅ Serverless: SOMEBODY HELP ME WITH MESSAGING HERE
π΅ Free tier: We replaced our free tier with a $25/month credit which gets you a great deal of bandwidth and storage. I need examples. This is super vague.
π΅ Stargate: All Cassandra instances come with Stargate included.