Commit ee2b1e28 by 吴延飞

指定jobName便于任务区分

parent 1dc7a657
...@@ -75,6 +75,6 @@ public class DirectionEvalJob { ...@@ -75,6 +75,6 @@ public class DirectionEvalJob {
.addSink(new DirectionEvalSecondSink()); .addSink(new DirectionEvalSecondSink());
// 旅行数据流 // 旅行数据流
env.execute(); env.execute("DirectionEvalJob");
} }
} }
...@@ -125,6 +125,6 @@ public class TravelInfoJob { ...@@ -125,6 +125,6 @@ public class TravelInfoJob {
return travel; return travel;
}).addSink(new TravelMetricSink()); }).addSink(new TravelMetricSink());
env.execute(); env.execute("TravelInfoJob");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment