-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
[CI] FollowerFailOverIT testReadRequestsReturnsLatestMappingVersion failed #37807
Comments
I muted the test on master in f12bfb4 |
This reproduces for me locally with:
|
The actual test failure in https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+intake/1474/consoleText was:
|
The same problem occurred on 6.x too, in https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+6.x+intake/1145/consoleText The test assertion error is:
And the
The repro command from this build was:
|
I muted the test on 6.x in c162771 |
I am on it today. |
If the index request is executed before the mapping update is applied on the IndexShard, the index request will perform a dynamic mapping update. This mapping update will be timeout (i.e, ProcessClusterEventTimeoutException) because the latch is not open. This leads to the failure of the index request and the test. This commit makes sure the mapping is ready before we execute the index request. Closes elastic#37807
If the index request is executed before the mapping update is applied on the IndexShard, the index request will perform a dynamic mapping update. This mapping update will be timeout (i.e, ProcessClusterEventTimeoutException) because the latch is not open. This leads to the failure of the index request and the test. This commit makes sure the mapping is ready before we execute the index request. Closes #37807
If the index request is executed before the mapping update is applied on the IndexShard, the index request will perform a dynamic mapping update. This mapping update will be timeout (i.e, ProcessClusterEventTimeoutException) because the latch is not open. This leads to the failure of the index request and the test. This commit makes sure the mapping is ready before we execute the index request. Closes #37807
Seems this happened again in master today in https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+internalClusterTest/549/console
|
Muted this one in master |
org.elasticsearch.xpack.ccr.FollowerFailOverIT testReadRequestsReturnsLatestMappingVersion
failed in https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+intake/1474/consoleThe test got an unexpected
InterruptedException
:The repro command is:
This did not reproduce locally for me.
The text was updated successfully, but these errors were encountered: