Hello, I read that it is good practice to declare the schema in Pig Script as well as in the UDF (by implementing outputSchema), because of performance reasons.
Now in my case I have a EvalFunc that takes a chararray as input and produces a tuple with a dynamic number of chararrays (it creates it result by .newTuple(List list)). How can I specify a schema for an unknown number of elements? Best, Will
