We are trying to fetch multiple objects using the Query-Links. We use 2 Query-Links embedded inside "Parallel" webject. Each Query-Links webject will get approx 124-125 objects each.
Please refer the below snippet for the same.
<ie:parallel>
<ie:webject name="Query-Links" type="OBJ">
...
<ie:param name="group_out" data="objects1"/>
</ie:webject>
<ie:webject name="Query-Links" type="OBJ">
....
<ie:param name="group_out" data="objects2"/>
</ie:webject>
</ie:parallel>
<ie:webject name="Concat-Groups" type="GRP">
<ie:param name="GROUP_IN" data="objects1"/>
<ie:param name="GROUP_IN" data="objects2"/>
<ie:param name="GROUP_OUT" data="objects"/>
</ie:webject>
We then combine the results using a group webject.
This task file will be called multiple times. In about 7-8th call, we face below Exception. We tried "Merge-Groups" and "Concat-Groups" webjects and we still face the "No group" exception. It works fine for less than 7 calls, but later gives some runtime exception.
Exception:
15:46:35,199 INFO [ajp-nio-127.0.0.1-8010-exec-2] wt.system.err wcadmin - com.infoengine.util.IEException: (com.infoengine.util.IEResource/64) com.infoengine.procunit.webject.GroupWebjectException: "objects1": No such group. : Error In parallelWebject Task2022-08-19 15:46:35,199 INFO [ajp-nio-127.0.0.1-8010-exec-2] wt.system.err wcadmin -
Does anyone has any ideas? Any help will be appretiated.