Live data from Hacker News

SimpleDB: A Basic RDBMS Built from Scratch

awelm.com

21–30 of 53 posts

Re: SimpleDB: A Basic RDBMS Built from Scratch

#22
post #18

A quick question about the MIT course this student followed[1]. Am I correct in assuming that the way to follow this course would be to take the lecture notes, the assigned reading material, and simply read it before then moving on to the assignments? Just wanted to make sure I'm not missing some video/other content before I take a look into this stuff. [1] https://ocw.mit.edu/courses/electrical-engineering-and-compu…

I think that is the recommended approach, but I just read the lecture notes and started working on the assignments. I tried to prioritize coding because it helps me retain knowledge better over time

Re: SimpleDB: A Basic RDBMS Built from Scratch

#23

Nice work! In my experience adding (basic) support for indexes shouldn't be too hard [0]. And good choice to support transactions up front. Adding that in later is pretty challenging. Mine doesn't support transactions and refactoring to support it would take a while. :( If HN-ers are interested in more database Internals content check out /r/databasedevelopment too. [0] https://notes.eatonphil.com/database-basics-ind…

Thanks! I do plan on adding indexes soon

Re: SimpleDB: A Basic RDBMS Built from Scratch

#30

There is already Amazon SimpleDB database service[1] written in Erlang, but it's kind of deprecated in favor of Amazon DynamoDB. [1] https://aws.amazon.com/simpledb/

Ah yes, by the time I realized this it was too late to rename unfortunately. And very neat how Amazon SimpleDB is written in Erlang!
Post reply on HN