Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a .NET equivalent to Apache Hadoop? [closed]

So, I've been looking at Hadoop with keen interest, and to be honest I'm fascinated, things don't get much cooler.

My only minor issue is I'm a C# developer and it's in Java.

It's not that I don't understand the Java as much as I'm looking for the Hadoop.net or NHadoop or the .NET project that embraces the Google MapReduce approach. Does anyone know of one?

like image 412
danswain Avatar asked Dec 04 '08 01:12

danswain


People also ask

What is Hadoop being replaced by?

1. Apache Spark. Hailed as the de-facto successor to the already popular Hadoop, Apache Spark is used as a computational engine for Hadoop data. Unlike Hadoop, Spark provides an increase in computational speed and offers full support for the various applications that the tool offers.

Is Hadoop becoming obsolete?

Or, is it dead altogether? In reality, Apache Hadoop is not dead, and many organizations are still using it as a robust data analytics solution. One key indicator is that all major cloud providers are actively supporting Apache Hadoop clusters in their respective platforms.

Is Hadoop always open source?

Hadoop is open-source that provides space for large datasets, and it is stored on groups of software with similarities. Hadoop is a project of Apache, and it is used by different users also supported by a large community for the contribution of codes.

Does Microsoft use Hadoop?

Microsoft is contributing to HadoopServices like Azure Data Lake Analytics and the largest internal data lake now run on Apache Hadoop and YARN.


1 Answers

Have you looked at using Hadoop's streaming?

I use it in python all the time :-).

I'm starting to see that the heterogeneous approach is often the best and it looks like other folks are doing the same.

If you look at projects like protocol-buffers or facebook's thrift you see that sometimes it's just best to use an app written in another language and build the glue in the language of your preference.

like image 95
chews Avatar answered Sep 21 '22 15:09

chews