作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下命令重新运行失败的协调器,但是每次重新启动时,都会使用一些随机的协调器操作,而不是首先执行最旧的协调器操作。
oozie job -rerun {co-ordinator ID} -action 6374-6441
最佳答案
我想目前无法通过查看这段代码来实现:getActionsIds
Set<String> actions = new HashSet<String>();
String[] list = scope.split(",");
for (String s : list) {
s = s.trim();
// An action range is specified with two actions separated by '-'
if (s.contains("-")) {
String[] range = s.split("-");
...............
int start;
int end;
//Get the starting and ending action numbers
try {
start = Integer.parseInt(range[0].trim());
} catch (NumberFormatException ne) {
throw new CommandException(ErrorCode.E0302, "could not parse " + range[0].trim() + "into an integer", ne);
}
try {
end = Integer.parseInt(range[1].trim());
} catch (NumberFormatException ne) {
throw new CommandException(ErrorCode.E0302, "could not parse " + range[1].trim() + "into an integer", ne);
}
...............
// Add the actionIds
for (int i = start; i <= end; i++) {
actions.add(jobId + "@" + i);
}
关于hadoop - Oozie协调员操作重新运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41378626/
我正在尝试创建 Ooize 协调器。问题是我已经有了等待使用 oozie 处理的暂存数据。 想象一下这样的情况。 当前日期是:01.03.2013(2013 年 3 月 1 日) 我确实有这些输入目录
我是一名优秀的程序员,十分优秀!