View Categories

Exchange values between ETL and EAC

< 1 min read

Different values can be exchanged between the ETL and EAC.

Root PID

The root pid of the job is used to display on the execution task ETL logs, meters and statistics.

Use the following code in a tJava component (but can be any other java componant you prefer):

System.out.println("@@eac@@root_pid="+rootPid);

Specific identifier

This value is « the main information » of the job. For example, you have 2 tasks on one job executed with to different values for a context. Use this option to display the value on the table which list execution task.

In a tJava component (but can be any other java componant you prefer):

System.out.println("@@eac@@identifier="+context.myParam);