BDIA rate limit and backoff policy | Community
Skip to main content
Level 1
February 2, 2026
Solved

BDIA rate limit and backoff policy

  • February 2, 2026
  • 1 reply
  • 13 views

Hello,

I’m using the Bulk Data Insertion API and i’ve been encountering some 429 errors.

I do understand that the rate limit is at 1 request per second, and I am setting up a retry policy after waiting some time before resending.

My question is: should I simply wait one second before retrying? Or is there some sort of time-out for a report suite ID that has exceeded the rate limit?

Thanks in advance,

Best answer by Harveer_SinghGi1

Hi ​@gcholletCA ,

In my experience when an API returns 429 status which is “too many requests” it also returns a response header called retry-after which gives you the specific number of seconds to wait before attempting another API call.

I’d suggest you inspect the response of your 429 calls and then build the logic to retry after the retry time the response cam back with.

Cheers!

1 reply

Harveer_SinghGi1
Community Advisor and Adobe Champion
Harveer_SinghGi1Community Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
February 4, 2026

Hi ​@gcholletCA ,

In my experience when an API returns 429 status which is “too many requests” it also returns a response header called retry-after which gives you the specific number of seconds to wait before attempting another API call.

I’d suggest you inspect the response of your 429 calls and then build the logic to retry after the retry time the response cam back with.

Cheers!