如何在hadoop中执行MapReduce作业期间在控制台上打印

发布于 2024-11-27 22:26:06 字数 193 浏览 0 评论 0原文

我想在控制台上执行后打印“地图”的每一步。

System.out.println("完成第一步"); System.out.println("第二步完成");

等等

是否有一个特殊的命令可以做到这一点,或者根本不可能,因为 System.out.println 似乎根本不起作用?

请指导

I want to print each step of my "map" after its execution on the console.

Something like

System.out.println("Completed Step one");
System.out.println("Completed Step two");

and so on

Is there a special command to do that or is it not possible at all, as System.out.println doesn't seem to work at all ?

Please guide

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

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

发布评论

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

评论(2

寒尘 2024-12-04 22:26:06

您可以使用 System.out.println(..)。要查看打印的内容,请打开 jobtracker Web 控制台。然后导航到您提交的作业的链接。在作业页面上,您将看到所有作业的链接您的个人 Map/Reduce 任务请点击链接。您将找到一个显示标准输出和标准错误转储的链接。

You can use System.out.println(... To see whats been printed, open the jobtracker web console. Then navigate to your submitted job's link. On the Job page, you will see links to all your individual Map/Reduce tasks. Follow the links.. you will find a link that displays the dump of both the Standard output as well as the Standard error.

美人如玉 2024-12-04 22:26:06

您可以使用 stdout 纱线日志来检查使用 System.out.println() 完成的打印。检查这个答案:

https://stackoverflow.com/a/35526819/3998212

You can use the stdout yarn log to check the prints done with System.out.println(). Check this answer:

https://stackoverflow.com/a/35526819/3998212

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