We are building an interface for a client in which we are doing a high volume of data synchronization, as we are moving forward by activation of multiple levels of interface, we found a unique issue.
The unique issue is when we basically sync the data from one system to another, we are using HTTPS Axios module to do so and while processing the data we found a huge amount of occasional latency coming in from our destination system, by comparing the logs we found that, the HTTP request created at our end reached the destination system with a few minutes delay.Our understanding is that it might be Axios who is adding delay as we found this Git issue
Infra setup: We have a k8 cluster setup. Our interface is built on NodeJs.
Nodejs v15.3.0
Axios v0.19.2
Please guide me on this as it's a bit critical topic.