Hadoop and Django, is it possible?

后端 未结 4 1401
情话喂你
情话喂你 2021-02-05 04:43

From what I understood, Hadoop is a distributed storage system thingy. However what I don\'t really get is, can we replace normal RDBMS(MySQL, Postgresql, Oracle) with Hadoop? O

4条回答
  •  花落未央
    2021-02-05 05:38

    Django can connect with most RDMS, so you can use it with a Hadoop based solution.

    Keep in mind, Hadoop is many things, so specifically, you want something with low latency such as HBase, don't try to use it with Hive or Impala.

    Python has a thrift based binding, happybase, that let you query Hbase.

提交回复
热议问题