在Flink中,为作业分配了73ca9d2c10693ff8fd002738a7fc538a
之类的作业ID。关于如何计算此作业ID的任何指针?
答案 0 :(得分:0)
Flink作业ID是随机生成的数字。有关详细信息,请参见JobID.java
和AbstractID.java
。
/**
* Constructs a new random ID from a uniform distribution.
*/
public AbstractID() {
this.lowerPart = RND.nextLong();
this.upperPart = RND.nextLong();
}