forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preserve index_uuid when creating QueryShardException
As part of elastic#32608 we made sure that the fully qualified index name is taken from the query shard context whenever creating a new `QueryShardException`. That change introduced a regression as instead of setting the entire `Index` object to the exception, which holds index name and index uuid, we ended up setting only the index name (including cluster alias). With this commit we make sure that the index uuid does not get lost and we try to lower the chances that a similar bug makes it in another time. That's done by making `QueryShardContext` return the fully qualified `Index` (which also holds the uuid) rather than only the fully qualified index name.
- Loading branch information
Showing
7 changed files
with
107 additions
and
57 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
53 changes: 53 additions & 0 deletions
53
server/src/test/java/org/elasticsearch/index/query/QueryShardExceptionTests.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.index.query; | ||
|
||
import org.elasticsearch.index.Index; | ||
import org.elasticsearch.test.ESTestCase; | ||
|
||
import static org.hamcrest.CoreMatchers.equalTo; | ||
|
||
public class QueryShardExceptionTests extends ESTestCase { | ||
|
||
public void testCreateFromQueryShardContext() { | ||
String indexUuid = randomAlphaOfLengthBetween(5, 10); | ||
String clusterAlias = randomAlphaOfLengthBetween(5, 10); | ||
QueryShardContext queryShardContext = QueryShardContextTests.createQueryShardContext(indexUuid, clusterAlias); | ||
{ | ||
QueryShardException queryShardException = new QueryShardException(queryShardContext, "error"); | ||
assertThat(queryShardException.getIndex().getName(), equalTo(clusterAlias + ":index")); | ||
assertThat(queryShardException.getIndex().getUUID(), equalTo(indexUuid)); | ||
} | ||
{ | ||
QueryShardException queryShardException = new QueryShardException(queryShardContext, "error", new IllegalArgumentException()); | ||
assertThat(queryShardException.getIndex().getName(), equalTo(clusterAlias + ":index")); | ||
assertThat(queryShardException.getIndex().getUUID(), equalTo(indexUuid)); | ||
} | ||
} | ||
|
||
public void testCreateFromIndex() { | ||
String indexUuid = randomAlphaOfLengthBetween(5, 10); | ||
String indexName = randomAlphaOfLengthBetween(5, 10); | ||
Index index = new Index(indexName, indexUuid); | ||
QueryShardException queryShardException = new QueryShardException(index, "error", new IllegalArgumentException()); | ||
assertThat(queryShardException.getIndex().getName(), equalTo(indexName)); | ||
assertThat(queryShardException.getIndex().getUUID(), equalTo(indexUuid)); | ||
} | ||
} |
This file contains 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