Pulling information down is much slower then from outside the alteryx application, im wondering if its a problem with my workflow.
Screenshot attached.
The limit with the API is 9,999 rows per pull. Im pulling each day down from Jul 1st to now. So 3 months data, about 90 individual calls.
Hi @StephenF
Which version of Alteryx are you using? Since some recent update (i dont know exactly which one) we have the throttle option inside the download tool. I think it is a worth try for you.
Another (and maybe more important) question, are you sending paginated requests? I understand that the throttle tool would make more sense before the download tool, configuring the requests per second that you are sending to the download tool.
Hi @StephenF
The throttle tool acts as a gatekeeper, so if you want it to affect your download tool, then it would need to be upstream of it.
However, in this case I don't believe you want to throttle your workflow as you want to speed it up.
In the Connections tab of the download tool, you can increase the number of maximum connections from 2 to a higher number. This will increase how many calls the download tool can make at the same time which could speed up your workflow.
The throttle tool (or throttle options in the download tool) will just slow down your workflow, it's not going to limit the number of calls.
If you have a limit of 9,999 rows per call, then you'd need a different logic to ensure that you don't go over that limit, but the throttle tool is not going to help with that here.
Hope that helps,
Ollie