If you, using the multi threading of DMA, send a number of http calls multi threaded using an url column from a table : will then an HTTP client be created for each thread (row) ?
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 18th July 2023
Hi,
Every thread (row) is going to open a TCP connection towards the destination url to send a request and receive a response, so this could indeed be considered that there will be an HTTP client for each thread.
Regards,
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 18th July 2023
Thanks for the info