Bugfix for throttlingException when calling the InvokeAgent operation#66
Open
johntelforduk wants to merge 2 commits intoawslabs:mainfrom
Open
Bugfix for throttlingException when calling the InvokeAgent operation#66johntelforduk wants to merge 2 commits intoawslabs:mainfrom
johntelforduk wants to merge 2 commits intoawslabs:mainfrom
Conversation
tonykchen
suggested changes
May 30, 2024
| back_off = 0.01 # In seconds. | ||
| done = False | ||
| while not done: | ||
| try: |
Contributor
There was a problem hiding this comment.
I think the try/except should be applied only when iterating through the completion EventStream. Throttling exceptions from invoke_agent should already be handled using adaptive retry.
| ) | ||
| done = True | ||
|
|
||
| except ClientError as exception_obj: |
Contributor
There was a problem hiding this comment.
Can we move the retry functionality to another module and add some unit tests?
Contributor
|
Some linting errors in CI also need to be addressed |
tica3467
approved these changes
Dec 27, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue #64: throttlingException when calling the InvokeAgent operation
Description of changes:
In Bedrock Agent
target.pyprogram. Try/Except and exponential backoff logic implemented to overcome the Bedrock Agent throttling problem.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.