Ui Builder - multiple data broker calls are batched in to one
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2023 11:46 AM - edited ‎12-09-2023 11:48 AM
My team have been working on a application whose UI has been built using UI builder. The application uses many transform data brokers and these are called from event handling client scripts. As a performance improvement effort, we wanted to call the independent data brokers asynchronous in parallel.
While experimenting with two "mutate server data" transform data brokers, we called these two data brokers from two different client scripts. These two client scripts are invoked by another transform data broker's "On fetch successful" event.
We are observing that, despite the data brokers are called independently by their respective execute() methods, ultimately, both requests are batched into one POST call, and sent once.
Is this behavior overridable?
See the attachment which shows the network calls being batched into one.