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.
当某个特定任务失败时,我们能否获得运行该任务的输入拆分的转储,以便我们可以在输入的该部分本地运行该作业并进行远程调试?
您可以在映射器的设置中写入有关输入拆分的信息。示例FileInputFormat:
FileInputFormat
@Override protected void setup(Context context) throws IOException, InterruptedException { FileSplit inputSplit = (FileSplit) context.getInputSplit(); System.out.println(inputSplit.toString()); }