hadoop 中需要迭代的一个很好的例子

发布于 2024-11-24 04:43:32 字数 111 浏览 1 评论 0原文

我目前正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

葬花如无物 2024-12-01 04:43:33

“映射器的迭代”到底是什么意思?我有一个递归启动作业的示例(根据上一个作业的输入)。

看看这里,它解释了一个简单的图思维搜索/图探索算法: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

思念满溢 2024-12-01 04:43:33

数据挖掘中有很多例子。例如,您可以尝试其中一种聚类算法。

There are plenty of examples in data mining. You could try one of the clustering algorithms, for example.

也只是曾经 2024-12-01 04:43:32

最简单的一种是实现 Apriori 算法,用于查找频繁项集。

The simplest one is implementing Apriori algorithm which is used to find the frequent itemset.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文