Hi there,
When are table scripts instantiated? Once per application life time or once per job run? I have a TableScript that needs to compare incoming users to existing users. I want to load the existing users just once, and not N+1 for every row imported in ProcessInputRow. However, I am not sure what the best approach to store my user data is. If I store it in a static, it won't be recreated until the app recycles. Can I store it in an instance variable and assign it in the constructor and expect my class to be instantiated on each run?
Thanks,
Imar