NoSql and Data-Warehouse

前端 未结 4 1297
借酒劲吻你
借酒劲吻你 2021-01-30 00:45

What are the relations between NoSql and Data-Warehouse technologies/theories?

What concepts they share?

What are the basic differences between them?

4条回答
  •  不要未来只要你来
    2021-01-30 01:51

    Data Warehouses have very little in common with NoSQL - the main similarity is that any two data warehouses can have very different philosopohies or conventions just like any two NoSQL systems can be nearly unrelated.

    The only concept they share is that they are both used to analyze large amounts of data.

    NoSQL solutions usually manage relatively limited schemas with large cardinality in few entities, while data warehouses typically have lots of facts and dimensions (in a dimensional model) or lots of entities in a 3NF model. DW systems usually manage multiple lines of business and attempt to combine that data.

    DW systems typically have reporting abilities in SQL which allows you to access all the data in a standard way. NoSQL systems are typically more code-based - for instance Map/Reduce.

提交回复
热议问题