hadoop 中需要迭代的一个很好的例子
我目前正在 hadoop 上实现并行 for,以按照用户指定的次数迭代映射器。有人可以帮助我提供一个有用的示例,我可以使用我的实现进行测试。 Hadoop 中的一些应用程序需要迭代 Mapper 函数。 谢谢
I am currently implement a parallel-for on hadoop to iterate the mapper a number of times as specify by the user. Can someone help me with a useful example that I can use my implementation for testing. Some application in Hadoop that needs iteration of the Mapper function.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
“映射器的迭代”到底是什么意思?我有一个递归启动作业的示例(根据上一个作业的输入)。
看看这里,它解释了一个简单的图思维搜索/图探索算法:http://codingwiththomas.blogspot.com/2011/04/graph-exploration-with-hadoop-mapreduce.html
这是一个更通用的版本 这里:
http://codingwiththomas.blogspot.com/2011/04/controlling -hadoop-job-recursion.html
What do you exactly mean by "iteration of the mapper"? I have an example of starting a job recursively (on the input of the last job).
Have a look here, it explains a simple graph mindist-search / graph exploration algorithm: http://codingwiththomas.blogspot.com/2011/04/graph-exploration-with-hadoop-mapreduce.html
A bit more generic version is this here:
http://codingwiththomas.blogspot.com/2011/04/controlling-hadoop-job-recursion.html
数据挖掘中有很多例子。例如,您可以尝试其中一种聚类算法。
There are plenty of examples in data mining. You could try one of the clustering algorithms, for example.
最简单的一种是实现 Apriori 算法,用于查找频繁项集。
The simplest one is implementing Apriori algorithm which is used to find the frequent itemset.