-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FormRecognizer] Service is throttling #31914
Comments
@kinelski What is the current progress on this issue? |
What is the likelihood that a test that encounters one of these issues would pass if retried? I've been seeing flaky responses from the text analytics service too, and:
Here's what I did:
I wonder if something like this would help here? |
Hi @kinelski, we deeply appreciate your input into this project. Regrettably, this issue has remained unresolved for over 2 years and inactive for 30 days, leading us to the decision to close it. We've implemented this policy to maintain the relevance of our issue queue and facilitate easier navigation for new contributors. If you still believe this topic requires attention, please feel free to create a new issue, referencing this one. Thank you for your understanding and ongoing support. |
Description
This issue collects multiple failures we've seen in the Form Recognizer test pipeline for the last couple of months. All these issues are believed to have the same underlying cause: throttling on the service side. They have all been reported to the Form Recognizer service team and are under investigation.
Failures
All failures described below are not happening deterministically and affect multiple different tests.
Content is not accessible
BuildModel
(inDocumentModelAdministrationClient
).Generic error during training
CreateCustomFormModelOperation
.Could not access Azure blob storage account
StartTraining
(inFormTrainingClient
).Managed Identity credential was rejected by the storage service
CreateCustomFormModelOperation
.Operation exceeded maximum processing time
CreateCustomFormModelOperation
.Action items
In order to prevent errors
InvalidRequest
and3014
from breaking the pipeline daily, we are suppressing them with theIgnoreServiceError
attribute in our test project. The attribute is set on the class level (instead of single method) because it can happen on any test that builds a model, which includes most of our tests.Once the service has fixed this issue on their side, we must remove those attributes from the following classes:
DocumentModelAdministrationClientLiveTests
DocumentAnalysisClientLiveTests
DocumentAnalysisSamples
FormRecognizerSamples
FormTrainingClientLiveTests
OperationsLiveTests
RecognizeCustomFormsLiveTests
The text was updated successfully, but these errors were encountered: