vote up 0 vote down star
2

Is there an implementation of MapReduce/Hadoop on Azure?

flag

3 Answers

vote up 3 vote down

Microsoft Research has DryadLINQ which is a powerful LINQ expression distribution engine. I hope they port this to Azure!

Automatic parallelization: from sequential declarative code the DryadLINQ compiler generates highly parallel query plans spanning large computer clusters. For exploiting multi-core parallelism on each machine DryadLINQ relies on the PLINQ parallelization framework.

It has an implementation of MapReduce like this:

public static IQueryable<Rs> MapReduce<Ts, Ms, K, Rs> (
    this IQueryable<Ts> source,
    Expression<Func<Ts, IEnumerable<Ms>>> mapper,
    Expression<Func<Ms, K>> keySelector,
    Expression<Func<IGrouping<K, Ms>, IEnumerable<Rs>>> reducer) {

    IQueryable<Ms> mapped = source.SelectMany (mapper);
    IQueryable<IGrouping<K, Ms>> groups = mapped.GroupBy (keySelector);
    return groups.SelectMany (reducer);
}

Amazingly simple implementation! With the power of DryadLINQ, I don't see why you need to be constrained to MapReduce - you can simply create the exact LINQ query that returns the information you're looking for.

NOTE: this is my approximation of their implementation - the PDF does not contain the exact method signature or implementation

link|flag
DryadLINQ is for clusters and it does not work with Windows Azure. Neither it is available outside Microsoft. – Rinat Abdullin Jun 18 at 23:02
2  
Just because it's not available outside of microsoft right now doesn't mean it won't be in the future ;-) – Joel Martinez Aug 14 at 4:18
vote up 1 vote down

No, there is not at the moment. And it does not look like there is one coming soon. Details

Cloud Computing: could Windows Azure catch up with Amazon?

PS: Elastic Map Reduce is not solution for .NET developers till Amazon starts including Mono that could be used with Hadoop Streaming.

link|flag
in other words, forget Azure - go straight to using Hadoop yourself, or via Amazon. – gbjbaanb Aug 7 at 14:21
1  
Another option is to wait for Microsoft to implement Dryad for Azure. They are already planning this (as discovered recently by looking at DryadLinq sources). – Rinat Abdullin Aug 11 at 12:00
vote up 0 vote down

I'm not sure there's an out-of-the-box solution in Azure, but AWS might have what you're looking for (in beta): http://aws.amazon.com/elasticmapreduce/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.