The loading sequence / dependency of PEGA JS files
We're current facing performance issue of PEGA8 applications.
Though performance tools, we can find that such issue often starts from a gen_xxxxxapplicationdata.js request.
Full request URL like:
When the issue happens, from the Chrome console, we can find that this request often takes more than 10s.
But from the access log of our application server, it shows the request took only 0.003s to complete.
And also, we found follow dozens of JS/CSS requests also take more than 10s; but these requests are load files from disk cache instead of remote application server. One of followed requests like:
We want to know the relation ship between gen_xxxxxapplicationdata.js and other JS file requests.
Are requests like pzpega_ui_harnesscontext_xxx.js waiting for gen_xxxxxapplicationdata.js to complete? Or actually these request should be initialized at the same time?
We're current facing performance issue of PEGA8 applications.
Though performance tools, we can find that such issue often starts from a gen_xxxxxapplicationdata.js request.
Full request URL like:
When the issue happens, from the Chrome console, we can find that this request often takes more than 10s.
But from the access log of our application server, it shows the request took only 0.003s to complete.
And also, we found follow dozens of JS/CSS requests also take more than 10s; but these requests are load files from disk cache instead of remote application server. One of followed requests like:
We want to know the relation ship between gen_xxxxxapplicationdata.js and other JS file requests.
Are requests like pzpega_ui_harnesscontext_xxx.js waiting for gen_xxxxxapplicationdata.js to complete? Or actually these request should be initialized at the same time?
Thanks very much.