You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where len(instances) > 200, you will get the following error:
An error occurred (FilterLimitExceeded) when calling the DescribeInstances operation:
The maximum number of filter values specified on a single call is 200
This seems like something boto3 should handle for the user, but I'm not sure. Should boto3 be responsible for batching requests where needed, like in this case, to avoid FilterLimitExceeded, or is that on us?
We typically don't do automatic batch handling unless explicitly called out. The only cases I'm aware of are the dynamodb batch get/write operations. For now you'll have to manually handle that.
It would be great to have this feature more generally, so marking as a feature request.
Greetings! It looks like this issue hasn’t been active in longer than two years. We encourage you to check if this is still an issue in the latest release. Because it has been longer than two years since the last update on this, and in the absence of more information, we will be closing this issue soon. If you find that this is still a problem, please feel free to provide a comment to prevent automatic closure, or if the issue is already closed, please feel free to reopen it.
If you do something like this
where
len(instances) > 200
, you will get the following error:This seems like something boto3 should handle for the user, but I'm not sure. Should boto3 be responsible for batching requests where needed, like in this case, to avoid
FilterLimitExceeded
, or is that on us?Related:
The text was updated successfully, but these errors were encountered: