Hadoop comparison to RDBMS

后端 未结 4 567
囚心锁ツ
囚心锁ツ 2020-12-16 07:59

I really do not understand the actual reason behind hadoop scaling better than RDBMS . Can anyone please explain at a granular level ? Has this got something to do with unde

4条回答
  •  独厮守ぢ
    2020-12-16 08:43

    In RDBMS , data is structured , rather it is indexed. Retrieval of data of any particular 'nth' column is loading the entire database and then selecting the 'nth' column.

    where as in Hadoop, say Hive, we load the only the particular column from the entire data set. More so over the data loading is also done by Map reduce programs which is done in a distributed structure which reduce the overall time.

    Hence, two advantages of using Hadoop and its tools.

提交回复
热议问题