I wonder what would be the case to migrate from SQL to noSQL db. I believe that the strictness of relational databases make them a great choice to write and store the data in a structured manner. Their drawback is ofc the read time (especially with a lot of relations to join). So to address this issue I'd typically opt for CQRS to write and store the data in a relational way and provide the read model with noSQL stores as highly denormalized views (refreshed asynchronously).
I wonder what would be the case to migrate from SQL to noSQL db. I believe that the strictness of relational databases make them a great choice to write and store the data in a structured manner. Their drawback is ofc the read time (especially with a lot of relations to join). So to address this issue I'd typically opt for CQRS to write and store the data in a relational way and provide the read model with noSQL stores as highly denormalized views (refreshed asynchronously).