So I did some profiling on our JavaScript-based app and exported the generated data.
For a process which took about 330 seconds, adding up all values in "Elapsed Exclusive Time (msec)" will only yield about 110 seconds of runtime.
Also, the third-most effective time was spent in "getResults" which is apparently the function that returns the returned value of a promise and part of the runtime.
Do you have any tips how to explain this behaviour and/or how to improve performance?
All the best
Marcus