I have a transformation that reads millions of ids from a mega data store.
I would like to somehow store those ids in a list or hashmap.
I have about a dozen other transformations. Each of those transformations gets input data (ids) from other distinct child data stores.
What I would like to do is, in a UDJC, as I get the ids from the child data stores, somehow check if each id is already in the mega id list.
Due to performance reasons, I can't call the mega store for every transformation.
How can I create/incorporate a list of mega ids that I can use in my subsequent UDJCs?
Thanks