Apache Beam中有状态处理的问题

问题描述 投票:5回答:1

所以我读过梁的stateful processingtimely processing文章,并发现了实现这些功能的问题。

我试图解决的问题类似于this,为每一行生成一个顺序索引。因为我希望能够将数据流生成的行引用到原始源的行。

public static class createIndex extends DoFn<String, KV<String, String>> {
  @StateId("count")
  private final StateSpec<ValueState<Long>> countState = StateSpecs.value(VarLongCoder.of());

  @ProcessElement
  public void processElement(ProcessContext c, @StateId("count") ValueState<Long> countState)  {

    String val = c.element();
    long count = 0L;
    if(countState.read() != null)
      count = countState.read();

    count = count + 1;
    countState.write(count);

    c.output(KV.of(String.valueOf(count), val));

  }
}

Pipeline p = Pipeline.create(options);

p.apply(TextIO.read().from("gs://randomBucket/file.txt"))
 .apply(ParDo.of(new createIndex()));

我按照我在网上找到的任何内容查看了ParDo的原始源代码,但不确定需要做什么。我得到的错误是:

java.lang.IllegalArgumentException: ParDo requires its input to use KvCoder in order to use state and timers.

我查了例子herehere

我意识到这是一个简单的问题,但由于缺乏足够的示例或文档,我无法解决问题。我很感激任何帮助。谢谢!

java state google-cloud-dataflow apache-beam
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.