Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
让我们假设我是一个已经构建了多个节点的 Hadoop 集群的新手,我想知道哪些恶魔正在这个特定集群中的哪个节点上运行,有什么办法吗?
命令行 hadoop dfsadmin -report 将为您提供数据节点列表以及有关它们的基本统计信息。如果需要,它可以相对容易地以编程方式解析。 要获取任务跟踪器列表,我建议在 JobTracker 上打开 Web UI(端口 50030)。据我所知,有任务跟踪器列表。
我们可以使用“jps”工具来了解节点上正在运行哪些守护进程。JPS 代表 Java 虚拟机进程状态工具。
jps 将列出系统中正在运行的所有 java 进程。