How to Job Scheduler to flush node level data page to be processed synchronously
I have a connector which is slow as it returns huge data, and this data is loaded on a node level data page.
I have to call the connector once in a day to have the latest information hence I'm using a job scheduler to flush the node level data page and reload it on all the web nodes.
However as job scheduler spuns off requests from all nodes at the same time, the end system is unable to process the request and it returns the response for first request but fails on all the otehr request.
for example If I have 10 nodes, data page(connector) loads in time on 1st node, but time out's in all the other nodes.
Is there a way I can have job scheduler process synchronously. ?
I can achieve this using advanced agent, and have the agent enabled on just one node. and system pulse will sync the data on all the other nodes. as this is not the appropriate approach would like to hear if anyone has addressed similar issue in a different way.