Skip to content

Commit

Permalink
[#1078] fixed parallelism bug (#1079)
Browse files Browse the repository at this point in the history
fixes #1078
  • Loading branch information
Kevin Gómez committed Nov 12, 2018
1 parent b074161 commit 123f601
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ protected <E extends Element> DataSet<Tuple3<String, String, String>> createMeta
DataSet<E> elements) {
return elements
.map(new ElementToPropertyMetaData<>())
.groupBy(1)
.groupBy(0, 1)
.reduce(new ReducePropertyMetaData())
.map(tuple -> Tuple3.of(tuple.f0, tuple.f1, MetaDataParser.getPropertiesMetaData(tuple.f2)))
.returns(new TupleTypeInfo<>(
Expand Down

0 comments on commit 123f601

Please sign in to comment.