#sayori-batching
1 messages · Page 1 of 1 (latest)
Hi 👋 I'm not aware of any typical approaches that people use for processes like this.
In addition to our typical rate limiter though, you should also keep an eye out for lock_timeout rate limits in case you try to interact with the same objects too frequently.
https://stripe.com/docs/rate-limits#object-lock-timeouts
Recently saw someone doing batch transactions, and the order of requests in their batch was ordered by Customers. So they tried to access the same Customer/Payment Method too fast and hit those lock timeouts.