Merge pull request #10169 from clintongormley/deprecate_thrift_memcached

Remove references to the thrift and memcached transport plugins
This commit is contained in:
Clinton Gormley 2015-03-19 20:56:25 +01:00
commit a8e5c6eeb0
4 changed files with 9 additions and 13 deletions

View File

@ -3,11 +3,7 @@
[partintro]
--
The *elasticsearch* REST APIs are exposed using:
* <<modules-http,JSON over HTTP>>,
* <<modules-thrift,thrift>>,
* <<modules-memcached,memcached>>.
The *elasticsearch* REST APIs are exposed using <<modules-http,JSON over HTTP>>.
The conventions listed in this chapter can be applied throughout the REST
API, unless otherwise specified.

View File

@ -281,6 +281,12 @@ index.
=== Scripts
Deprecated script parameters `id`, `file`, and `scriptField` have been removed
from all scriptable APIs. `script_id`, `script_file` and `script` should be used
Deprecated script parameters `id`, `file`, and `scriptField` have been removed
from all scriptable APIs. `script_id`, `script_file` and `script` should be used
in their place.
=== Thrift and memcached transport
The thrift and memcached transport plugins are no longer supported. Instead, use
either the HTTP transport (enabled by default) or the node or transport Java client.

View File

@ -11,8 +11,6 @@ include::modules/http.asciidoc[]
include::modules/indices.asciidoc[]
include::modules/memcached.asciidoc[]
include::modules/network.asciidoc[]
include::modules/node.asciidoc[]
@ -27,8 +25,6 @@ include::modules/advanced-scripting.asciidoc[]
include::modules/threadpool.asciidoc[]
include::modules/thrift.asciidoc[]
include::modules/transport.asciidoc[]
include::modules/snapshots.asciidoc[]

View File

@ -259,8 +259,6 @@ You can disable that check using `plugins.check_lucene: false`.
==== Transport Plugins
.Supported by Elasticsearch
* https://github.com/elasticsearch/elasticsearch-transport-memcached[Memcached transport plugin]
* https://github.com/elasticsearch/elasticsearch-transport-thrift[Thrift Transport]
* https://github.com/elasticsearch/elasticsearch-transport-wares[Servlet transport]
.Supported by the community