How does a relational database work?
21–30 of 62 posts
Re: How does a relational database work?
#22Re: How does a relational database work?
#23Re: How does a relational database work?
#24I'm I crazy for wanting to write a database after reading this? Noting too serious, just to flex that dev muscle
Use lmdb for db library.
Use redis for the protocol.
Use twitter.gizzard for replication+sharding.
Boom! Your own webscale nosql!
Re: How does a relational database work?
#25That's a pretty bold statement...
Very thorough explanations though!
Re: How does a relational database work?
#26Not that Cassandra and Hadoop don't have a place. But because NO-SQL is hot I see lots of young coders (I'm and old DBA) try to turn document store systems into relational databases. They should all be made to read this post.
(I'm the author of the article) I'm 28 and I’m currently a Big Data developer (I use Hadoop, HBase, Hive …) and I don’t understand the buzz surrounding Big Data and NoSQL. With a relational database the complexity is hidden (more or less…) whereas with Big Data and NoSQL the developer needs to deal with this complexity himself/herself. As a result, most of the Big Data applications I’ve seen don’t work well. A really…
Teradata, Oracle, PostgreSQL for example are reasonably complex databases to cluster and manage yourself. Just as easy/hard as setting up HDFS and installing Hive. In all cases people who are at big data scale are buying OTS solutions e.g. Cloudera appliance. They aren't rolling their own.
And if you are using Hive then I can understand why you are not feeling the buzz. But play around for Spark for a while and it's easy to see the future. Being able to write Scala/Python/SQL/R against a data set that can be anywhere from 100MB to 100PB without any changes is pretty compelling.
Re: How does a relational database work?
#27Re: How does a relational database work?
#28Wow, I wanted this recently. Anyone know stuff related to graph databases and how those work?
Re: How does a relational database work?
#29> Nowadays, many developers don’t care about time complexity … and they’re right! That's a pretty bold statement... Very thorough explanations though!
Re: How does a relational database work?
#30Earlier quoted context omitted.
At Couchbase we did a survey of developers (this was ages ago) and the biggest motivator for NoSQL was schema flexibility. Not having to coordinate migrations is seen as a productivity boost. [1] The other thing document databases can offer that relational databases struggle with is taking subsets (which we use for offline sync.) [2] [1] http://blog.couchbase.com/nosql-adoption-survey-surprises [2] http://developer.c…
As someone who spent several years studying programming languages, the thing that drives me crazy about traditional relational databases is the assumption that all data is tuple-structured. Much data is structured as unions of alternates or more complex things like maps. Shoehorning your data model into a tuple-based system is always possible, but often unnatural. The place NoSQL shines is the acknowledgement that mo…