How can I develop an ASP.NET web application using Hadoop as a database?

I want to create an ASP.NET web application that uses Hadoop DFS as a database. I have already installed and configured Hadoop on Windows Server 2008 R2 on my intranet. Now I want to use it as a database for developing my ASP.NET web application. Please suggest.

+4
source share
1 answer

First of all, Hadoop is not a database. This is FS (HDFS) + calculation structure. If you are looking for a scalable DB tool that runs on top of Hadoop, you can find HBase in good shape. If you know, MS also has its own Hadoop offering, HDInsights . Through HDInsights, you can use HBase conveniently on your Windows machine. If you need help setting up HDInsights, you can see the link. You can also find examples on your website. They also provide Hadoop.NET sdk, which makes it easy to work with Hadoop with .NET. Take a look.

Hope this helps.

+9
source

Source: https://habr.com/ru/post/1487027/


All Articles