Hello @Serhii Vaiser
Regarding your question about limiting the peak connections to 1, unfortunately, ADF does not provide an option to limit the peak connections. However, there are a few things you can try to resolve this issue:
- You can try setting the "Concurrency" property to 1 in the REST dataset configuration. This will limit the number of concurrent requests to 1, which might help in your case.
- Another option is to use the "Wait" activity in your pipeline to wait for 1 minute before sending the next request. This will ensure that you are not violating the rate limit policy.
- You can also try using the "Lookup" activity to check the rate limit status before sending the request. If the rate limit is reached, you can wait for 1 minute before sending the next request. Regarding the "Peak connections" value of 2, this might not be causing the issue. The "Peak connections" value represents the maximum number of connections that were open at any given time during the copy activity. It does not necessarily mean that two requests were sent at the same time.
I hope this helps.