Github user vasia commented on the pull request:
https://github.com/apache/flink/pull/400#issuecomment-74527767
Right, so let me copy:
The problem is here:
```
DataSet<Tuple2<K, HashSet<K>>> neighborhoods = input.reduceOnEdges(new
NeighborhoodEdgesFunction<K>(), EdgeDirection.OUT);
```
and we try to get the return type `Tuple2<K, HashSet<K>>` like this:
```
public TypeInformation<T> getProducedType() {
return TypeExtractor.createTypeInfo(EdgesFunction.class,
function.getClass(), 2, null, null);
}
```
Anyone have an idea? Is it because of the nested type parameter in
`Tuple2<K, HashSet<K>>` ?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---