Hi everyone,
I'm using JPA datasources, and I noticed the fetch operations to be very slow. Looking at the console in the RPC tab, I noticed that the DSReponse comes with all the datasource fields, which raises 2 performance issues in my opinion :
- bandwith usage
- useless server side processing. Measured around 10 seconds between the "INFO DSResponse - DSResponse: List with 42 items" log, and the actual data showing on the browser (IE10 in dev mode, on localhost). Not sure what happens during those precious seconds, probably Records creation from entities ?
I tried to flag my datasources with dropExtraField option set, but it has no effect.
Can anyone help me please with either or both of these questions :
-Does JPA Datasource support the dropExtraField flag ?
-How can I improve server side processing ?
Thanks a lot in advance,
Fz
I'm using Version: v8.3d_2012-10-24/PowerEdition Deployment (built 2012-10-24)
I'm using JPA datasources, and I noticed the fetch operations to be very slow. Looking at the console in the RPC tab, I noticed that the DSReponse comes with all the datasource fields, which raises 2 performance issues in my opinion :
- bandwith usage
- useless server side processing. Measured around 10 seconds between the "INFO DSResponse - DSResponse: List with 42 items" log, and the actual data showing on the browser (IE10 in dev mode, on localhost). Not sure what happens during those precious seconds, probably Records creation from entities ?
I tried to flag my datasources with dropExtraField option set, but it has no effect.
Can anyone help me please with either or both of these questions :
-Does JPA Datasource support the dropExtraField flag ?
-How can I improve server side processing ?
Thanks a lot in advance,
Fz
I'm using Version: v8.3d_2012-10-24/PowerEdition Deployment (built 2012-10-24)
Comment