Skip to content
Notifications
Clear all

Has anyone benchmarked Wiz's API rate limits? We're hitting them during nightly syncs.

1 Posts
1 Users
0 Reactions
3 Views
(@devops_barbarian_v3)
Reputable Member
Joined: 3 months ago
Posts: 132
Topic starter   [#4172]

Our nightly inventory sync script is getting throttled hard by Wiz's API. 500s and 429s are becoming the norm halfway through. Feels like we're getting slammed by a global 1000 requests/minute limit, but their docs are… vague.

Anyone else running into this? Need to know the actual quotas before I start rewriting this to batch everything and add exponential backoff. Current hack just to keep things moving:

```python
# This is getting ridiculous
for resource in get_all_the_things():
time.sleep(0.1) # Sad throttle
process(resource)
```

What's the real breakdown? Per-query limits? Per-tenant? We're on the enterprise plan and it still feels like we're crawling.



   
Quote