如何在 Dataflow 中创建用户定义的计数器?
How do I create user defined counters in Dataflow?
如何在我的 DoFns 中创建自己的计数器?
在我的 DoFn 中,我想在处理记录时每次满足条件时增加一个计数器。我希望这个计数器对所有记录的值求和。
您可以使用Aggregators,计数器的总值将显示在UI中。
这是一个示例,我在一个管道中试验了聚合器,该管道仅让 numOutputShards 工作人员休眠 sleepSecs 秒。 (开始时的 GenFakeInput PTransform 只是 returns 一个扁平化的 PCollection,大小为 numOutputShards):
PCollection<String> output = p
.apply(new GenFakeInput(options.getNumOutputShards()))
.apply(ParDo.named("Sleep").of(new DoFn<String, String>() {
private Aggregator<Long> tSleepSecs;
private Aggregator<Integer> tWorkers;
private Aggregator<Long> tExecTime;
private long startTimeMillis;
@Override
public void startBundle(Context c) {
tSleepSecs = c.createAggregator("Total Slept (sec)", new Sum.SumLongFn());
tWorkers = c.createAggregator("Num Workers", new Sum.SumIntegerFn());
tExecTime = c.createAggregator("Total Wallclock (sec)", new Sum.SumLongFn());
startTimeMillis = System.currentTimeMillis();
}
@Override
public void finishBundle(Context c) {
tExecTime.addValue((System.currentTimeMillis() - startTimeMillis)/1000);
}
@Override
public void processElement(ProcessContext c) {
try {
LOG.info("Sleeping for {} seconds.", sleepSecs);
tSleepSecs.addValue(sleepSecs);
tWorkers.addValue(1);
TimeUnit.SECONDS.sleep(sleepSecs);
} catch (InterruptedException e) {
LOG.info("Ignoring caught InterruptedException during sleep.");
}
c.output(c.element());
}}));
如何在我的 DoFns 中创建自己的计数器?
在我的 DoFn 中,我想在处理记录时每次满足条件时增加一个计数器。我希望这个计数器对所有记录的值求和。
您可以使用Aggregators,计数器的总值将显示在UI中。
这是一个示例,我在一个管道中试验了聚合器,该管道仅让 numOutputShards 工作人员休眠 sleepSecs 秒。 (开始时的 GenFakeInput PTransform 只是 returns 一个扁平化的 PCollection
PCollection<String> output = p
.apply(new GenFakeInput(options.getNumOutputShards()))
.apply(ParDo.named("Sleep").of(new DoFn<String, String>() {
private Aggregator<Long> tSleepSecs;
private Aggregator<Integer> tWorkers;
private Aggregator<Long> tExecTime;
private long startTimeMillis;
@Override
public void startBundle(Context c) {
tSleepSecs = c.createAggregator("Total Slept (sec)", new Sum.SumLongFn());
tWorkers = c.createAggregator("Num Workers", new Sum.SumIntegerFn());
tExecTime = c.createAggregator("Total Wallclock (sec)", new Sum.SumLongFn());
startTimeMillis = System.currentTimeMillis();
}
@Override
public void finishBundle(Context c) {
tExecTime.addValue((System.currentTimeMillis() - startTimeMillis)/1000);
}
@Override
public void processElement(ProcessContext c) {
try {
LOG.info("Sleeping for {} seconds.", sleepSecs);
tSleepSecs.addValue(sleepSecs);
tWorkers.addValue(1);
TimeUnit.SECONDS.sleep(sleepSecs);
} catch (InterruptedException e) {
LOG.info("Ignoring caught InterruptedException during sleep.");
}
c.output(c.element());
}}));