Hi all,
in my code I create my model objects extending some TupleX in order to perform joins etc but now I have to add additional info to those classes. Since those attributes are not involved in any Flink operator (just in the end in my UDF) I was thinking to add them as fields instead of increasing the arity of the extended Tuple to avoid to change all the input and output of my UDFs.
In this way I'm mixing POJO and Tuples. Do you see any problem in that approach?
Best,
Flavio