Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to setup a log file to catch things like number of total rows, number of rows that go to this component, or that component...I have created, with that purpose, a tWarn that I link to a specific part of my job to get results, then I have a tlogcatcher. Sometimes, it works, but sometimes, it doesn't. I will provide an example.
Here is the execution of my job:
Here is the content of the tWarn:
"number of lines: "+((Integer)globalMap.get("tFileInputDelimited_4_NB_LINE"))+" Customer address number of records: "+ ((Integer)globalMap.get("tExtractJSONFields_4_NB_LINE"))
Here is what I expected:
number of lines: 26424 Customer address number of records: : 15424
Here is what I get:
number of lines: 26424 Customer address number of records: : null
As well, how can I capture the 2 branches of the tMap (12152 and 14272 lines respectively).
Any help is welcome.
Hi,
I have a trigger when subjob ok linking the tWarn with the subjob. Theoretically, tWarn won't be active until the subjob ends.
Thanks,
Now I know what can and what cannot be done.