Github user hsaputra commented on a diff in the pull request:
https://github.com/apache/incubator-flink/pull/263#discussion_r21694186
--- Diff:
flink-scala/src/main/java/org/apache/flink/api/scala/operators/ScalaAggregateOperator.java
---
@@ -164,18 +160,8 @@ public ScalaAggregateOperator(Grouping<IN> input,
Aggregations function, int fie
}
genName.setLength(genName.length()-1);
- TypeSerializer<IN> serializer =
getInputType().createSerializer();
- TypeSerializerFactory<IN> serializerFactory;
- if (serializer.isStateful()) {
- serializerFactory = new
RuntimeStatefulSerializerFactory<IN>(
- serializer,
getInputType().getTypeClass());
- } else {
- serializerFactory = new
RuntimeStatelessSerializerFactory<IN>(
- serializer,
getInputType().getTypeClass());
- }
-
@SuppressWarnings("rawtypes")
- RichGroupReduceFunction<IN, IN> function = new
AggregatingUdf(serializerFactory, aggFunctions, fields);
+ RichGroupReduceFunction<IN, IN> function = new
AggregatingUdf((TupleSerializerBase) getInputType().createSerializer(),
aggFunctions, fields);
--- End diff --
At least for now, could we change the signature of the constructor to
TypeSerializer and add validate for the argument if it could be cast to
TupleSerializerBase?
So add check:
Validate.isTrue(serializer instanceof TupleSerializerBase);
Casting without proper check makes me nervous.
---
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.
---