Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To specify custom file name and location, use the parameters outfilepattern and outfolder as in the below example:


<taskParameter>
<name>outfilepattern</name>
<dataType>S</dataType>
<value>custom_file_name.dat</value>
</taskParameter>
<taskParameter>
<name>outfolder</name>
<dataType>S</dataType>
<value>data/msgcenter/cmw_staging_folder</value>
</taskParameter>

...

Updated rule files to correctly manage parameters.
Note: until a corresponding change is made within IWS, workflows must be updated manually in IWS as follows:
Update each loader task that follows a python translator task within the workflowto have custom parameter DataFromwith DataFrom with value

EXPR#iif(atoi(:isMC2 = 1,'TASK_{name of translator task} ','')

...

SDP-58783 Duplicated execution of eds interfaces

...

Updated the EDS upload to blob storage to not overwrite an existing file by default.
To change the default, add the below to estar/tpe/dynamic/pyrules/custom/env.py:

def overwrite_azure_blob() -> bool:

...

    return True

...