/pollJourney is the API endpoint that is called 80 times by a web job every 5 minutes. Several issues with this:
- It is screwing the performance metrics - each call takes 1.5 seconds on average.
- We are making 80 async calls to this API and to the InfoConnect API every 5 minutes.
We should probably get all of the data in one call and then process it straight into storage from the webjob.
/pollJourney is the API endpoint that is called 80 times by a web job every 5 minutes. Several issues with this:
We should probably get all of the data in one call and then process it straight into storage from the webjob.