Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
hemantjoshi
Contributor
Contributor

Performance for Qlik Analytical connection in load editor

Dear Community,

Trying to use the aes capabilities in form analytical connection (AC) as published on git hub:

https://github.com/Qlik-PE/javaSSE.

Data Load Editor script is attached :

         

[DateFlieSeed100.csv_pii_masked]:
LOAD
[ID],
[NAME],
[DOB],
[ACCOUNT]
 FROM [lib://QlikSetup/DateFlieSeed100.csv_pii_masked.csv]
(txt, utf8, embedded labels, delimiter is ',', msq);
 
Load
[ID],
DataPlus.UnMaskData([NAME],'NAME') as unmasked_name,
    DataPlus.UnMaskData([DOB],'DOB') as unmasked_dob,
    DataPlus.UnMaskData([ACCOUNT],'ACCOUNT') as unmasked_account;
 

While checking logs, I am finding that in execute function, bundledrow is having single column value, and execute function is called for every column values in my file against each column above for which we used AC. 

My question here is:

For any analytical connection used this way, is it possible that execute function gets multiple column values in one call  instead one by one? How can we achieve it in load editor? Or is there any configuration which needs to be set?

 

Looking forward to your kind replies....

Labels (2)
0 Replies