MapReduce: LINQ to HPC vs Daytona ?
-
10 สิงหาคม 2554 11:23
Using LINQ to HPC, its also possible to implement a MapReduce
var mapped = source.SelectMany(mapper);
var groups = mapped.GroupBy(keySelector);
return groups.SelectMany(reducer);why is MS Research working on another MapReduce implementation (project Daytona - http://research.microsoft.com/en-us/projects/azure/daytona.aspx ), when LINQ to HPC is already cloud ready and capable of implementing MapReduce?
- แก้ไขโดย JReuben1MVP 10 สิงหาคม 2554 11:24 additional info
ตอบทั้งหมด
-
30 พฤศจิกายน 2554 17:29
Hi,
Sorry for the late reply.
Linq to HPC and Daytona have different designs and focus. With Daytona, it is easy to do Iterative MapReduce.
Another news: LinqToHPC project was dropped at Microsoft. See web site: http://social.microsoft.com/Forums/en-US/windowshpcdevs/thread/43e8a6d3-eb7e-4ddf-9e54-189b487ef0df
Daytona is still in active and supported mode.
Thanks.
Liwei
-
4 มีนาคม 2555 14:58
Looks like Azure Hadoop makes both LinqToHPC and Daytona redundant ... at this point in time!- ทำเครื่องหมายเป็นคำตอบโดย JReuben1MVP 4 มีนาคม 2555 14:58