Skip to content

Commit 4178409

Browse files
committed
Remove deprecated gateways
Closes #5422
1 parent 7453d9a commit 4178409

File tree

51 files changed

+5
-3791
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+5
-3791
lines changed

docs/reference/indices.asciidoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ and warmers.
5555
* <<indices-refresh>>
5656
* <<indices-flush>>
5757
* <<indices-optimize>>
58-
* <<indices-gateway-snapshot>>
5958

6059
--
6160

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

106105
include::indices/optimize.asciidoc[]
107106

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

docs/reference/indices/gateway-snapshot.asciidoc

Lines changed: 0 additions & 29 deletions
This file was deleted.

docs/reference/modules/gateway.asciidoc

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ When the cluster first starts up, the state will be read from the
1212
gateway and applied.
1313

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

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

6969
include::gateway/local.asciidoc[]
7070

71-
include::gateway/fs.asciidoc[]
72-
73-
include::gateway/hadoop.asciidoc[]
74-
75-
include::gateway/s3.asciidoc[]

docs/reference/modules/gateway/fs.asciidoc

Lines changed: 0 additions & 39 deletions
This file was deleted.

docs/reference/modules/gateway/hadoop.asciidoc

Lines changed: 0 additions & 36 deletions
This file was deleted.

docs/reference/modules/gateway/s3.asciidoc

Lines changed: 0 additions & 51 deletions
This file was deleted.

rest-api-spec/api/indices.snapshot_index.json

Lines changed: 0 additions & 33 deletions
This file was deleted.

rest-api-spec/test/indices.snapshot_index/10_basic.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/main/java/org/elasticsearch/action/ActionModule.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@
8282
import org.elasticsearch.action.admin.indices.exists.types.TypesExistsAction;
8383
import org.elasticsearch.action.admin.indices.flush.FlushAction;
8484
import org.elasticsearch.action.admin.indices.flush.TransportFlushAction;
85-
import org.elasticsearch.action.admin.indices.gateway.snapshot.GatewaySnapshotAction;
86-
import org.elasticsearch.action.admin.indices.gateway.snapshot.TransportGatewaySnapshotAction;
8785
import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingAction;
8886
import org.elasticsearch.action.admin.indices.mapping.delete.TransportDeleteMappingAction;
8987
import org.elasticsearch.action.admin.indices.mapping.get.*;
@@ -240,7 +238,6 @@ protected void configure() {
240238
registerAction(GetIndexTemplatesAction.INSTANCE, TransportGetIndexTemplatesAction.class);
241239
registerAction(DeleteIndexTemplateAction.INSTANCE, TransportDeleteIndexTemplateAction.class);
242240
registerAction(ValidateQueryAction.INSTANCE, TransportValidateQueryAction.class);
243-
registerAction(GatewaySnapshotAction.INSTANCE, TransportGatewaySnapshotAction.class);
244241
registerAction(RefreshAction.INSTANCE, TransportRefreshAction.class);
245242
registerAction(FlushAction.INSTANCE, TransportFlushAction.class);
246243
registerAction(OptimizeAction.INSTANCE, TransportOptimizeAction.class);

src/main/java/org/elasticsearch/action/admin/indices/gateway/package-info.java

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/main/java/org/elasticsearch/action/admin/indices/gateway/snapshot/GatewaySnapshotAction.java

Lines changed: 0 additions & 47 deletions
This file was deleted.

src/main/java/org/elasticsearch/action/admin/indices/gateway/snapshot/GatewaySnapshotRequest.java

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)