hadoop 0.20中如何设置map任务的数量?

发布于 2024-12-05 23:05:51 字数 426 浏览 1 评论 0原文

我正在尝试设置要在 hadoop 0.20 环境中运行的映射任务的数量。

我正在使用旧的 api。

以下是我到目前为止尝试过的选项:

    conf.set("mapred.tasktracker.map.tasks.maximum", "5");
    conf.set("mapred.map.tasks", "10");
    conf.set("mapred.map.tasksperslot", "5");
    conf.set("mapred.tasktracker.map", "5");
    conf.set("mapred.map.parallel.copies", "5");

启用所有这些选项后,并行运行的映射任务数量仍为 2。

要设置哪些正确选项才能使并行运行的映射器数量最多为 5?

I'm trying to set the number of map tasks to run in hadoop 0.20 environment.

I am using the old api.

Here are the options I've tried so far:

    conf.set("mapred.tasktracker.map.tasks.maximum", "5");
    conf.set("mapred.map.tasks", "10");
    conf.set("mapred.map.tasksperslot", "5");
    conf.set("mapred.tasktracker.map", "5");
    conf.set("mapred.map.parallel.copies", "5");

With all of those on, the number of map tasks running parallely remains 2.

What are the proper options to set to get the number of parallely running mappers up to 5?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

软糖 2024-12-12 23:05:51

TaskTracker.java

maxCurrentMapTasks = conf.getInt("mapred.tasktracker.map.tasks.maximum", 2);

根据“Hadoop:权威指南”。所以,在客户端设置属性是没有用的。您需要在配置文件中进行相同的设置。

请注意,某些属性在客户端配置中设置时无效。为了
例如,如果在您的作业提交中您设置了mapred.tasktracker.map.tasks.maximum
期望它会改变运行你的作业的任务跟踪器的任务槽数,那么你会感到失望,因为这个属性只被尊重
如果在任务跟踪器的mapred-site.html 文件中设置。一般来说,你可以告诉组件
其中属性应按其名称设置,因此 mapred.task.tracker.map.tasks.maximum 以 mapred.tasktracker 开头的事实给您一个线索,它可以
仅为任务跟踪器守护进程设置。然而,这并不是一个硬性规定,因此
在某些情况下,您可能需要尝试和犯错,甚至阅读源代码。

In the TaskTracker.java

maxCurrentMapTasks = conf.getInt("mapred.tasktracker.map.tasks.maximum", 2);

According to the "Hadoop : The Definitive Guide". So, setting the property on the client side is of no use. You need to set the same in the configuration file.

Be aware that some properties have no effect when set in the client configuration. For
example, if in your job submission you set mapred.tasktracker.map.tasks.maximum with
the expectation that it would change the number of task slots for the tasktrackers running your job, then you would be disappointed, since this property only is only honored
if set in the tasktracker’s mapred-site.html file. In general, you can tell the component
where a property should be set by its name, so the fact that mapred.task.tracker.map.tasks.maximum starts with mapred.tasktracker gives you a clue that it can
be set only for the tasktracker daemon. This is not a hard and fast rule, however, so in
some cases you may need to resort to trial and error, or even reading the source.

云巢 2024-12-12 23:05:51

为了使答案与 Hadoop API 的更改保持同步,我列出了已弃用属性的新替代品。

mapred.tasktracker.map.tasks.maximum => mapreduce.tasktracker.map.tasks.maximum
mapred.map.tasks => mapreduce.job.maps

看看这个链接 已弃用的 API 和新的 API

但我更喜欢将地图任务的数量保留在框架本身中,以获得更好的工作性能。

To keep answer up-to-date with changes in Hadoop API, I have listed new replacements for deprecated properties.

mapred.tasktracker.map.tasks.maximum => mapreduce.tasktracker.map.tasks.maximum
mapred.map.tasks => mapreduce.job.maps

Have a look at this link for deprecated API & new API

But I prefer to keep number of map tasks decision to framework itself for better performance of job.

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