I get the recruiting meme asking for years of experience that exceeds the age of the tech they need experience on, but this is the first time I've heard someone talk about FLAT OUT LYING on their resume, especially as a response to watching a 100 second rundown on said tech
There's a price-tag on. You selling your channel? Would I get all the subscribers and the videos there copyrighted under my name automatically? Explain the process to me.
@@diamondDog_629 great, I'd like to initiate a purchase, please. I can understand many people might not be able to afford such transactions, but I can. So, I'd like to buy you, Tim Anthony Sir, please. You can have my 5 Euros. Does this thing get press coverage or what?
2:09 Thanks for this graphic. Granted, I've never looked too deeply into NoSQL databases, but I was never really sure how an application would be structured using one. Setting them up as set of denormalised tables makes sense. This is a bit of an "aha" moment for me.
Seems like a great NoSQL database with nice SQL like queries. One of the things I end up hating with solutions like mongo or firebase is the long chain of functions that you need to write. CQL seems to be a good alternative.
@@alexnahas2907 Sometimes taking the simplest database there is and adapting it to the project is the best choice you could make, though it's pretty rare you'd need to do that these days...
In my first software engineering job, I got to work a bit with Cassandra. Pretty interesting stuff but very complex for someone who just graduated college and only knew relational DBs.
definitely takes a second to wrap your head around denormalized data 1st, and the idea of tabular/columnar when RDBMS is all you've known. Not uncommon.
Yes I want to see a full tutorial on Cassandra! I was looking for so long to finally find a good Cassandra Tutorial but after all I had to read the docs -.- PLEASE MAKE ONE :)
@@pajeetsingh Cassandra CQL is really limited, you have to create a table for every query, filtering, and ordering it's only within your partition key, for most general use cases Cassandra it's not a good option.
_Each instance of Cassandra is called a node. Nodes are grouped together in a cluster or "ring". The data is wrapped in a keyspace, each containing one or more tables which represent tabular data._ That explains everything!
No wayyy, I just started thinking about switching to Cassandra for one of my projects yesterday, and you upload a video about it today, how many times are you gonna do that 😂😂
A question for the end of the video: let's assume a user wants to change his/her username. Should we then change the same username across 3 different tables/containers in Cassandra? In that case, writing or editing is going to be super costly :s
@@ivanpartida7467 agin when u mention that if and modify it you modify all the other parts right ?? Answer is yes as this is down side of having backups pretty much
Cassandra is definitely an interesting database. You should definitely pay attention to how you build your primary key because it plays a HUGE part in what queries are available to you.
couldn't agree more. note that SAI (storage attached indexes) allow for relational style, secondary indexes, but this is an Astra DB feature only at the moment, it's in the process of being open sourced to Apache Cassandra as CEP-7. Also, it's not a cureall; while you can also filter by arbitrary (non-key) fields, relying on this for major work is a strong anti-pattern.
until that video arrives, there is some useful info on slash dev slash cassandra-indexing on the datastax site. TLDR is: relational style, secondary indexes for Cassandra which is currently as Astra DB only feature, but is being open sourced to Apache Cassandra as CEP-7.
Cassandra yes please But please also try to explain more what differs it from relation database like relational database have triggers strored functions
NoSQL DB can have triggers and stored functions, no problem. The only real difference is a rigid structure with consistency checks goes against an arbitrary structure without full consistency checks, but easier horizontal scaling.
A coworker toldme a war story where the ring of nodes got complete cut in half by the network and the autorecovery turn it into two separate rings, effectibly 2 dbs that started diverging in time, a nigthmare indeed!
@@brujua7 Cassandra is actually built for this sort of thing, it's called partition tolerance and is a part of the datacenter topology awareness. A cluster consists of multiple datacenters with a complete copy of the data. Once the partition is fixed, there are automatic repair mechanisms that reconcile any differences.
Id love a video on how you should run your ts, going thru things like esbuild, swc, tsc, ts-node and babel. You can also quickly go over how to install them and some comparisons!
Hey, i love ur vids, and i just saw an ad by someone using your vid as an ad, a business called datastax, i love ur content so if this isnt with your approval i thought you should know, ❤️
Jeff, please do a Salesforce LWC in 100 seconds video. The LWC framework has made strides and Javascript now plays a large role in the Salesforce ecosystem. This makes it a great path for young JS developers!
And if you like Cassandra, there's a good chance you'll also like Scylla DB - a Cassandra (and Alternator) spinoff that's written in C++ and puts a premium on maximizing the available resources. Same core concepts in terms of DB architecture, mostly the same CQL and tools, but hella pefromant.
yes! Also GraphQL, gRPC, and even a JSON Document API so that Stargate + Cassandra can function as a document database (with some limitations). You can use with Postman, cURL, HTTPie etc
I don’t work with sponsors often, but AstraDB is an awesome product that makes Cassandra fun (and free) astra.dev/cass100sec
I love your videos!
do svelte for haters in 100 seconds.
pls do c++ for haters
Would be good to mention in the video when a product is sponsored. (I'll allow 102 seconds video for this purpose 😅)
This is one of the few channels I trust that an advertised "awesome product" is really an awesome product.
this literally didn't feel like an ad. please get more sponsors like this, i don't mind if companies pay you to do your usual content format
This whole channel is a perfect example of quick documentation so pretty much any program or technology is welcome
A full Cassandra tutorial would be great. 🙏
I can't wait to go beyond 100 seconds.
Yesss🔥
Yes, sounds interesting. Maine SQL last week hi chalu Kiya h 😅🥲🙏
Please, full Cassandra tutorial
Absolutely!
Thanks! Time to add 10 years experience of Cassandra to my Resume.
Hahaha
I get the recruiting meme asking for years of experience that exceeds the age of the tech they need experience on, but this is the first time I've heard someone talk about FLAT OUT LYING on their resume, especially as a response to watching a 100 second rundown on said tech
True 😂
@@poulticegeist he's not lying, he's using hacker years.
@@poulticegeist Oh sweet summer child..
I think we all agree we need a full tutorial on this!
There's a price-tag on. You selling your channel? Would I get all the subscribers and the videos there copyrighted under my name automatically? Explain the process to me.
@@rohanmanchanda5250 Yeah he selling his channel for 5 euro. 😂
@@diamondDog_629 great, I'd like to initiate a purchase, please. I can understand many people might not be able to afford such transactions, but I can. So, I'd like to buy you, Tim Anthony Sir, please. You can have my 5 Euros. Does this thing get press coverage or what?
@@rohanmanchanda5250 either ur high rn or its ur 1st day on the internet, Rohan.
I used just a bit Cassandra. It's nice and yeah Jeff, let's go with full tutorial 💪🏻
I guess Universe has spoken Jeff.
A full tutorial would be awesome! Thanks for the work you put in your videos, it makes learning fun for newbies like myself :)
2:09 Thanks for this graphic. Granted, I've never looked too deeply into NoSQL databases, but I was never really sure how an application would be structured using one. Setting them up as set of denormalised tables makes sense. This is a bit of an "aha" moment for me.
Your content is so good that i'm happy to see your sponsored content, and that you got sponsored (which is really rare).
Cassandra AstraDB was one of the first database I worked with. I would recommend it!
Seems like a great NoSQL database with nice SQL like queries. One of the things I end up hating with solutions like mongo or firebase is the long chain of functions that you need to write. CQL seems to be a good alternative.
So is SQL still said the same as CQL? (Sequel) 😂
I'll take a complicated Mongo query over a complicated SQL query any day. Joins get out of hand quick lol
@@alexnahas2907 Sometimes taking the simplest database there is and adapting it to the project is the best choice you could make, though it's pretty rare you'd need to do that these days...
Try use different key order in CQL and will find out that you need data duplication to support different query. Good luck!
@@alexnahas2907 my client need complicated report to be generated daily, it has > 1000 lines of sql query and I don't think it can be done in Mongo..
As someone who has been running a few large scale data mining projects, I can say Cassandra is unique in it's design.
Wow - I typically don’t get excited by databases, but Casandra looks amazing- let’s go for the full tut please!
In my first software engineering job, I got to work a bit with Cassandra.
Pretty interesting stuff but very complex for someone who just graduated college and only knew relational DBs.
definitely takes a second to wrap your head around denormalized data 1st, and the idea of tabular/columnar when RDBMS is all you've known. Not uncommon.
the full tutorial is highly anticipated!
I am addicted to your content, it is literally crack for us developers I do not understand how this has happened to me.
Simple. This guy has a talent to summarize concepts.
That is what we want. High efficiency in learning.
He saves us from research fatigue big time
Yes I want to see a full tutorial on Cassandra!
I was looking for so long to finally find a good Cassandra Tutorial but after all I had to read the docs -.-
PLEASE MAKE ONE :)
Scylla: just a better Cassandra. Here, you got your "Scylla in 2 seconds".
Worked a bit with Cassandra last year, it was actually really smooth and the model was pretty easy to get into.
So it is just a database? Why do companies still have SQL db when they already use Cassandra.
@@pajeetsingh Cassandra CQL is really limited, you have to create a table for every query, filtering, and ordering it's only within your partition key, for most general use cases Cassandra it's not a good option.
_Each instance of Cassandra is called a node. Nodes are grouped together in a cluster or "ring". The data is wrapped in a keyspace, each containing one or more tables which represent tabular data._
That explains everything!
Sounds like a synopsis of a cosmic Lovecraftian porn, lol!
No wayyy, I just started thinking about switching to Cassandra for one of my projects yesterday, and you upload a video about it today, how many times are you gonna do that 😂😂
let us know if we can help!
A question for the end of the video: let's assume a user wants to change his/her username. Should we then change the same username across 3 different tables/containers in Cassandra? In that case, writing or editing is going to be super costly :s
There should be a single source of truth for every entity type on the database, and every reference to an instance of said entities should be by id.
@@ivanpartida7467 agin when u mention that if and modify it you modify all the other parts right ??
Answer is yes as this is down side of having backups pretty much
Yess please, full tutorial on Cassandra
i dont get it did i intentionally click on an ad and are they unironically the best videos on youtube
Cassandra is definitely an interesting database. You should definitely pay attention to how you build your primary key because it plays a HUGE part in what queries are available to you.
couldn't agree more. note that SAI (storage attached indexes) allow for relational style, secondary indexes, but this is an Astra DB feature only at the moment, it's in the process of being open sourced to Apache Cassandra as CEP-7. Also, it's not a cureall; while you can also filter by arbitrary (non-key) fields, relying on this for major work is a strong anti-pattern.
Cassandra was actually created by two people, one of them is my friend's dad. Pretty cool.
:0
Cap
Let me get his digits for a reference
@@4Funzzies bro I can't drop his digits in public 💀
I think storage attached indexing deserves its own video. Honestly a lot of the DDIA concepts would make great videos
until that video arrives, there is some useful info on slash dev slash cassandra-indexing on the datastax site. TLDR is: relational style, secondary indexes for Cassandra which is currently as Astra DB only feature, but is being open sourced to Apache Cassandra as CEP-7.
Wonderful Cassandra logo animation! 👏👏👏
Cassandra yes please
But please also try to explain more what differs it from relation database like relational database have triggers strored functions
NoSQL DB can have triggers and stored functions, no problem. The only real difference is a rigid structure with consistency checks goes against an arbitrary structure without full consistency checks, but easier horizontal scaling.
ah yes, Cassandra, so reliable, that nobody in the company knows how to recover when shit hits the fan
A coworker toldme a war story where the ring of nodes got complete cut in half by the network and the autorecovery turn it into two separate rings, effectibly 2 dbs that started diverging in time, a nigthmare indeed!
@@brujua7 reminds me of the good ol days of netsplits in IRC
@@brujua7 Cassandra is actually built for this sort of thing, it's called partition tolerance and is a part of the datacenter topology awareness. A cluster consists of multiple datacenters with a complete copy of the data. Once the partition is fixed, there are automatic repair mechanisms that reconcile any differences.
Id love a video on how you should run your ts, going thru things like esbuild, swc, tsc, ts-node and babel. You can also quickly go over how to install them and some comparisons!
1. Don't use babel
2. use a framework and don't bother with all that
Yeah! A full tutorial would be very appreciated..
I didn't know my neighbor was an awesome database...
Great video, man!
A full tutorial of cassandra will be wholesome
I was just looking for a quick overview of this and this appeared 🔥
i got this video as an advertisment, one of the first advertisment i was actually interested in and might even look at myself.
your videos and the uniqueness of showing them is so addictive like an old wine ... 🥂🍻🍻
And suddenly i see an ad made by my favorite programming youtuber lol
the only ads i wont skip 🔥
A full tutorial will be appreciated Jeff!
Man, great vid, as always! More videos on Apache tools would be great. They power the world!
Very nice intro to Cassandra. Thank you.
I would love to see a full tutorial! And great work as always!
Long form content on this topic would be really interesting!
Is it efficient for columnar self referential data such as a graph, perhaps rdf?
A full Cassandra tutorial would be great. 🙏 please!!! 😀
Hey, i love ur vids, and i just saw an ad by someone using your vid as an ad, a business called datastax, i love ur content so if this isnt with your approval i thought you should know, ❤️
Oh my goodness yes! I've been looking for Cassandra courses badly!
Yes, need full tutorial on Cassandra
I don’t know shit about coding yet I watch every one of these videos.
Very cool to have such a product that requires a different headspace
This looks tempting tbh
Awesome. Full Tutorial please ✌🏼
Full tutorial would be perfect! Nice video!
Yes Full Tutorial please !
Resident Evil 8 is the first thing that comes to my mind after reading Cassandra which I just happens to play these days as well
Full tutorial? Yes please.
I Love your videos after lunch
A full tutorial would be amazing. This is tech that has been proven by time and can handle lots of use cases, so I would love to know more about ut
Love these 100 second vids!!!!
Yes please for the full tutorial. THE ANSWER IS ALWAYS YES PLEASE.
Full tutorial would be awesome
Now everybody is gonna talk about how cool is Cassandra.
Finally, we have the definitive sequel: CQL
we definitely need this tutorial
love your videos man keep it up
Would love to see a cover of gRPC! Thanks for all your hard work 🙏
I can't hear Cassandra without thinking about Wayne's World.
hehheee
A full tutorial would be appreciated. Subscribed for when it drops. Thanks!
Jeff, please do a Salesforce LWC in 100 seconds video. The LWC framework has made strides and Javascript now plays a large role in the Salesforce ecosystem. This makes it a great path for young JS developers!
We're going to need a video explaining what "storage attached indexing" means.
A full tutorial would be appreciated.
And if you like Cassandra, there's a good chance you'll also like Scylla DB - a Cassandra (and Alternator) spinoff that's written in C++ and puts a premium on maximizing the available resources. Same core concepts in terms of DB architecture, mostly the same CQL and tools, but hella pefromant.
You should do a video on Nim!
Discord uses it as well, oh by the way does fireship have a discord server?
Great video as always. I learned a lot. Thanks
Bro really couldn't separate himself from Greek Iliad ❤❤
My motivation for keeping on learning.
Ummm, Yes I want a full tutorial please 😍
yesterday I was reading about, cause I'm reading about distributed databases.
Nice Video, keep it up 🔥🔥❤❤
Wow Icon seems like very nice , Im going to do this right now..
More interview preparation with js video please. The graph one was awesome
Never knew Cassandra has the eyes of Saturo Gojo
Great Video. A tutorial will be great
Full tutorial please! We need it!
Full tut would be 🔥
my big data prof thinks cassandra is important, so lets go full tutorial!
I would love to have a full video on it 😁
Yes absolutely, please make a full tutorial for Cassandra. Great video as always 🔥
Proud to be an Indian after all... Apple uses an Indian made technology... 👍😗
I will like every single video in this channel if you make a comparison of backend infastructures
I would love any NO RELATIONAL database full tutorial
I would really like to see 100 seconds of Exasol and 100 seconds of ScyllaDB
Voting for a full tutorial
so stargate automatically exposes REST endpoints?
yes! Also GraphQL, gRPC, and even a JSON Document API so that Stargate + Cassandra can function as a document database (with some limitations). You can use with Postman, cURL, HTTPie etc
I've used it store events using event sourcing
I just saw this add while watching youtube and was shocked to hear Fireship's voice in an add XD
happy teachers day master.
Please make a video on Py-script
So it's got all the good features of SQL without the downsides? I'm in!