Re: how to improve throughput for long time running sessions

2020-01-08 Thread Wesley Peng
Any more details? regards on 2020/1/9 14:11, Mithun Bhattacharya wrote: You need to split the request handler and the request processor. Receive the request in mod_perl and then queue it into a separate application which does the actual heavy lifting.

Re: how to improve throughput for long time running sessions

2020-01-08 Thread Mithun Bhattacharya
You need to split the request handler and the request processor. Receive the request in mod_perl and then queue it into a separate application which does the actual heavy lifting. On Wed, Jan 8, 2020 at 8:59 PM Wesley Peng wrote: > Hallo > > We are running LR[1] and GBDT[2] and similar

how to improve throughput for long time running sessions

2020-01-08 Thread Wesley Peng
Hallo We are running LR[1] and GBDT[2] and similar algorithm in MP2 handles. For each request, there were about 1000 features as arguments passed into the handles, via HTTP POST. The request will wait for about 100ms to get responses, coz the calculation is not cheap. My question is, how can