We are currently utilizing the bulkOperationRunQuery to fetch bulk data from the orders connection. We use polling to receive the data. However, since last week, the response times have significantly increased. In some cases, the delay is substantial enough that our backend services (Heroku) are hitting timeout thresholds.
To work around this, we have moved the polling logic to the frontend, but even there, the response times remain unusually long, sometimes taking 40 to 60 seconds or more for a single order’s data (around 300kB data). This is a noticeable change compared to earlier performance, and it’s starting to affect our operational workflows.
Could someone please help confirm:
If there are any known issues or performance degradations related to the bulkQueries on Shopify’s end?
Whether there have been recent changes to API behavior or rate limits that could be contributing to this slowdown?
Any recommended approaches or optimizations that might help improve fetch times?
Most likely the amount of data you’re requesting is growing in size, therefore it takes longer to retrieve.
Congrats, your merchants are most likely growing.
You shouldn’t expect the Bulk Operation API to finish in any timely manner, it’s designed to optimize for completeness, not for timing.
If it’s initialized from your app by the merchant, perhaps consider showing feedback that the job has started and they can come back or expect an email with the operation has finished.
We haven’t changed anything on our end, but it’s good to know that the Bulk Operation API is designed to optimize completeness. We might update the flow accordingly.
Thanks