我为这样的工作设置了一个全局变量:
Configuration conf = new Configuration();
Job job = new Job(conf, "new_job");
conf.set("attribute", "value");
我像这样在减速器中访问它,并检查了值:
Configuration conf = context.getConfiguration();
attribute = conf.get("attribute");
System.out.println("attribute:"+attribute);
但它的值也打印为 null
空指针异常
当我尝试使用检索到的变量时遇到
属性
稍后在代码中。
请帮助我找出问题所在。