Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The question I'd have to ask is - what do you do when you hit nulls? Reject the record or route it for reprocessing? You can use the tSchemaComplianceCheck upstream to filter and segregate your records and you can use the codes in the error message to process the colums in a subsequent job - see the bottom of https://help.talend.com/search/all?query=tSchemaComplianceCheck&content-lang=en
Else you can use a tReplace... Or (much harder - I know you're looking for easy!), tJavaRow...
It might be a lot of work, once you do it, you'll sleep well knowing your job is resilient to null pointer errors...
Hi jeanjpotgieter - null pointer exceptions are among the most common Java errors. No need to defend Talend here, but because it generates java code, you have to deal with constraints of the coding language at certain points in your code, especially when you're processing and 'touching' your data.
There are tons of old posts on this forum on this error and they all have similar solutions to what I suggested; but you already know all of them and unfortunately, they don't provide that quick fix you're looking for...