Kevin Sijo Puthusseri
Results
1
issues of
Kevin Sijo Puthusseri
### What happened? ``` p.apply( Create.of(KV.of("X", "Y")) .withCoder(KvCoder.of(StringUtf8Coder.of(), StringUtf8Coder.of()))) .apply(GroupByKey.create()) .setCoder( SerializableCoder.of( TypeDescriptors.kvs( TypeDescriptors.strings(), TypeDescriptors.iterables(TypeDescriptors.strings())))); ``` The pipeline above exemplifies how it is, at the moment, acceptable to author pipelines...
java
core
bug
P2