-
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
Add repository validation #7680
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
"timeout": { | ||
"type" : "time", | ||
"description" : "Explicit operation timeout" | ||
}, | ||
"verify": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wondering if we should also document this new option in create repository doc? |
||
"type" : "boolean", | ||
"description" : "Whether to verify the repository after creation" | ||
} | ||
} | ||
}, | ||
|
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,28 @@ | ||
{ | ||
"snapshot.verify_repository": { | ||
"documentation": "http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/modules-snapshots.html", | ||
"methods": ["POST"], | ||
"url": { | ||
"path": "/_snapshot/{repository}/_verify", | ||
"paths": ["/_snapshot/{repository}/_verify"], | ||
"parts": { | ||
"repository": { | ||
"type": "string", | ||
"required" : true, | ||
"description": "A repository name" | ||
} | ||
}, | ||
"params": { | ||
"master_timeout": { | ||
"type" : "time", | ||
"description" : "Explicit operation timeout for connection to master node" | ||
}, | ||
"timeout": { | ||
"type" : "time", | ||
"description" : "Explicit operation timeout" | ||
} | ||
} | ||
}, | ||
"body": null | ||
} | ||
} |
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
93 changes: 93 additions & 0 deletions
93
...asticsearch/action/admin/cluster/repositories/verify/TransportVerifyRepositoryAction.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,93 @@ | ||
/* | ||
* 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.action.admin.cluster.repositories.verify; | ||
|
||
import org.elasticsearch.ElasticsearchException; | ||
import org.elasticsearch.action.ActionListener; | ||
import org.elasticsearch.action.support.ActionFilters; | ||
import org.elasticsearch.action.support.master.TransportMasterNodeOperationAction; | ||
import org.elasticsearch.cluster.ClusterName; | ||
import org.elasticsearch.cluster.ClusterService; | ||
import org.elasticsearch.cluster.ClusterState; | ||
import org.elasticsearch.cluster.block.ClusterBlockException; | ||
import org.elasticsearch.cluster.block.ClusterBlockLevel; | ||
import org.elasticsearch.common.inject.Inject; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.repositories.RepositoriesService; | ||
import org.elasticsearch.repositories.RepositoryVerificationException; | ||
import org.elasticsearch.threadpool.ThreadPool; | ||
import org.elasticsearch.transport.TransportService; | ||
|
||
/** | ||
* Transport action for verifying repository operation | ||
*/ | ||
public class TransportVerifyRepositoryAction extends TransportMasterNodeOperationAction<VerifyRepositoryRequest, VerifyRepositoryResponse> { | ||
|
||
private final RepositoriesService repositoriesService; | ||
|
||
protected final ClusterName clusterName; | ||
|
||
@Inject | ||
public TransportVerifyRepositoryAction(Settings settings, ClusterName clusterName, TransportService transportService, ClusterService clusterService, | ||
RepositoriesService repositoriesService, ThreadPool threadPool, ActionFilters actionFilters) { | ||
super(settings, VerifyRepositoryAction.NAME, transportService, clusterService, threadPool, actionFilters); | ||
this.repositoriesService = repositoriesService; | ||
this.clusterName = clusterName; | ||
} | ||
|
||
@Override | ||
protected String executor() { | ||
return ThreadPool.Names.MANAGEMENT; | ||
} | ||
|
||
@Override | ||
protected VerifyRepositoryRequest newRequest() { | ||
return new VerifyRepositoryRequest(); | ||
} | ||
|
||
@Override | ||
protected VerifyRepositoryResponse newResponse() { | ||
return new VerifyRepositoryResponse(); | ||
} | ||
|
||
@Override | ||
protected ClusterBlockException checkBlock(VerifyRepositoryRequest request, ClusterState state) { | ||
return state.blocks().indexBlockedException(ClusterBlockLevel.METADATA, ""); | ||
} | ||
|
||
@Override | ||
protected void masterOperation(final VerifyRepositoryRequest request, ClusterState state, final ActionListener<VerifyRepositoryResponse> listener) throws ElasticsearchException { | ||
repositoriesService.verifyRepository(request.name(), new ActionListener<RepositoriesService.VerifyResponse>() { | ||
@Override | ||
public void onResponse(RepositoriesService.VerifyResponse verifyResponse) { | ||
if (verifyResponse.failed()) { | ||
listener.onFailure(new RepositoryVerificationException(request.name(), verifyResponse.failureDescription())); | ||
} else { | ||
listener.onResponse(new VerifyRepositoryResponse(clusterName, verifyResponse.nodes())); | ||
} | ||
} | ||
|
||
@Override | ||
public void onFailure(Throwable e) { | ||
listener.onFailure(e); | ||
} | ||
}); | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
...va/org/elasticsearch/action/admin/cluster/repositories/verify/VerifyRepositoryAction.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,47 @@ | ||
/* | ||
* 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.action.admin.cluster.repositories.verify; | ||
|
||
import org.elasticsearch.action.admin.cluster.ClusterAction; | ||
import org.elasticsearch.client.ClusterAdminClient; | ||
|
||
/** | ||
* Unregister repository action | ||
*/ | ||
public class VerifyRepositoryAction extends ClusterAction<VerifyRepositoryRequest, VerifyRepositoryResponse, VerifyRepositoryRequestBuilder> { | ||
|
||
public static final VerifyRepositoryAction INSTANCE = new VerifyRepositoryAction(); | ||
public static final String NAME = "cluster:admin/repository/verify"; | ||
|
||
private VerifyRepositoryAction() { | ||
super(NAME); | ||
} | ||
|
||
@Override | ||
public VerifyRepositoryResponse newResponse() { | ||
return new VerifyRepositoryResponse(); | ||
} | ||
|
||
@Override | ||
public VerifyRepositoryRequestBuilder newRequestBuilder(ClusterAdminClient client) { | ||
return new VerifyRepositoryRequestBuilder(client); | ||
} | ||
} | ||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems like this goes to 1.5 only ?