Re: Reusing Values() in tuple

2016-02-23 Thread Robin Verlangen
Thanks, this explains the weird behavior I was seeing :) Best regards, Robin Verlangen *Chief Data Architect* Disclaimer: The information contained in this message and attachments is intended solely for the attention and use of the named addressee and may be confidential. If you are not the inte

Re: Reusing Values() in tuple

2016-02-22 Thread Abhishek Agarwal
Reusing values in tuple is not possible. collector.emit puts values into a queue from where they are transferred in batch. If you reuse the values, you will modify the tuples in transfer queue as well, leading to duplicate data. On Mon, Feb 22, 2016 at 10:19 PM, Robin Verlangen wrote: > Hi there