Skip to content

Remove deprecated gateways #5520

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

Merged
merged 1 commit into from
Mar 26, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/reference/indices.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ and warmers.
* <<indices-refresh>>
* <<indices-flush>>
* <<indices-optimize>>
* <<indices-gateway-snapshot>>

--

Expand Down Expand Up @@ -105,5 +104,3 @@ include::indices/refresh.asciidoc[]

include::indices/optimize.asciidoc[]

include::indices/gateway-snapshot.asciidoc[]

29 changes: 0 additions & 29 deletions docs/reference/indices/gateway-snapshot.asciidoc

This file was deleted.

9 changes: 2 additions & 7 deletions docs/reference/modules/gateway.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ When the cluster first starts up, the state will be read from the
gateway and applied.

The gateway set on the node level will automatically control the index
gateway that will be used. For example, if the `fs` gateway is used,
gateway that will be used. For example, if the `local` gateway is used,
then automatically, each index created on the node will also use its own
respective index level `fs` gateway. In this case, if an index should
respective index level `local` gateway. In this case, if an index should
not persist its state, it should be explicitly set to `none` (which is
the only other value it can be set to).

Expand Down Expand Up @@ -68,8 +68,3 @@ will be recovered once the settings has been reached.

include::gateway/local.asciidoc[]

include::gateway/fs.asciidoc[]

include::gateway/hadoop.asciidoc[]

include::gateway/s3.asciidoc[]
39 changes: 0 additions & 39 deletions docs/reference/modules/gateway/fs.asciidoc

This file was deleted.

36 changes: 0 additions & 36 deletions docs/reference/modules/gateway/hadoop.asciidoc

This file was deleted.

51 changes: 0 additions & 51 deletions docs/reference/modules/gateway/s3.asciidoc

This file was deleted.

33 changes: 0 additions & 33 deletions rest-api-spec/api/indices.snapshot_index.json

This file was deleted.

4 changes: 0 additions & 4 deletions rest-api-spec/test/indices.snapshot_index/10_basic.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions src/main/java/org/elasticsearch/action/ActionModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@
import org.elasticsearch.action.admin.indices.exists.types.TypesExistsAction;
import org.elasticsearch.action.admin.indices.flush.FlushAction;
import org.elasticsearch.action.admin.indices.flush.TransportFlushAction;
import org.elasticsearch.action.admin.indices.gateway.snapshot.GatewaySnapshotAction;
import org.elasticsearch.action.admin.indices.gateway.snapshot.TransportGatewaySnapshotAction;
import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingAction;
import org.elasticsearch.action.admin.indices.mapping.delete.TransportDeleteMappingAction;
import org.elasticsearch.action.admin.indices.mapping.get.*;
Expand Down Expand Up @@ -240,7 +238,6 @@ protected void configure() {
registerAction(GetIndexTemplatesAction.INSTANCE, TransportGetIndexTemplatesAction.class);
registerAction(DeleteIndexTemplateAction.INSTANCE, TransportDeleteIndexTemplateAction.class);
registerAction(ValidateQueryAction.INSTANCE, TransportValidateQueryAction.class);
registerAction(GatewaySnapshotAction.INSTANCE, TransportGatewaySnapshotAction.class);
registerAction(RefreshAction.INSTANCE, TransportRefreshAction.class);
registerAction(FlushAction.INSTANCE, TransportFlushAction.class);
registerAction(OptimizeAction.INSTANCE, TransportOptimizeAction.class);
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading