Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

> It's not worth pointing out the technical flaws in the post[1].

It might help your argument if you pointed out a real technical flaw in the content of the post, and not an example of the author being mistaken about a stranger's first name.



sure. 1. sqlite can have more than 1 file when using wal mode. 2. You don't need to know your exact dyanmodb access patterns upfront, you can evolve the schema. again, not worth effort to point out more.


Denormalizing data always locks you into certain access patterns, regardless of your ability to evolve schema.


DynamoDb is not a distributed hash map, it is a distributed forest of B-Trees. And B-Trees are what PG uses for indices and MySQL for both tables and indices. You don’t demoralize with it, but rather you build and maintain table and index like structures, they would contain submitted of ids or other data fields but it is the same with normal DB indexes. The difference if you have to maintain them manually. The upside is scale, serverlessnes and maybe less latency.


You do not have to denormalize data to use dynamodb, just like how data doesn’t have to be normalized to use a relational DB.

Man people have no clue what they’re talking about lol


I believe what the author has in mind is the fact that you need to create your LSI at the same time as you create the table, you cannot add them later (until GSI). So there's some truth to what they are saying regarding access patterns.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: