Hi Community,
When join operator is used in GQI query and the amount of data is considerable big, is it important to think about the size of table (number of row) manipulated by the join action or to reduce the number of operator (select, filter)
Attached screenshot showing 2 implementations giving the same result:
- many select operator used to reduce the number of columns sent to 'join' operator which will decrease the outcome data size.
- All the data sent to 'join' operator without filtration to decrease the number of processing action
Please for your recommendation for such case.
Thank you in advance
Hi Souhail,
Today it is indeed recommended to reduce the columns in the right side of your join (in your case the Get Elements query).
This is something that we can automatically optimize inside the GQI process as well. We'll follow-up on that and report back here once it's done.

Hi Sebastien,
Well noted
Thanks for your feedback