# elasticsearch-transport-thrift **Repository Path**: mirrors_elastic/elasticsearch-transport-thrift ## Basic Information - **Project Name**: elasticsearch-transport-thrift - **Description**: Thrift Transport for elasticsearch (STOPPED) - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Thrift Transport for Elasticsearch ================================== **DEPRECATED: The thrift transport is deprecated as of Elasticsearch v1.5.0, and will be removed in 2.0** The thrift transport plugin allows to use the REST interface over [thrift](http://thrift.apache.org/) on top of HTTP. In order to install the plugin, simply run: ```sh bin/plugin install elasticsearch/elasticsearch-transport-thrift/2.7.0 ``` You need to install a version matching your Elasticsearch version: | elasticsearch | Thrift Plugin | Docs | |---------------|-----------------------|------------| | master | Build from source | See below | | es-1.7 | 2.7.0 | [2.7.0](https://github.com/elastic/elasticsearch-transport-thrift/tree/v2.7.0/#version-270-for-elasticsearch-17) | | es-1.6 | 2.6.0 | [2.6.0](https://github.com/elastic/elasticsearch-transport-thrift/tree/v2.6.0/#version-260-for-elasticsearch-16) | | es-1.5 | 2.5.0 | [2.5.0](https://github.com/elastic/elasticsearch-transport-thrift/tree/v2.5.0/#version-250-for-elasticsearch-15) | | es-1.4 | 2.4.1 | [2.4.1](https://github.com/elasticsearch/elasticsearch-transport-thrift/tree/v2.4.1/#version-241-for-elasticsearch-14) | | es-1.3 | 2.3.0 | [2.3.0](https://github.com/elasticsearch/elasticsearch-transport-thrift/tree/v2.3.0/#thrift-transport-for-elasticsearch) | | es-1.2 | 2.2.0 | [2.2.0](https://github.com/elasticsearch/elasticsearch-transport-thrift/tree/v2.2.0/#thrift-transport-for-elasticsearch) | | es-1.0 | 2.0.0 | [2.0.0](https://github.com/elasticsearch/elasticsearch-transport-thrift/tree/v2.0.0/#thrift-transport-for-elasticsearch) | | es-0.90 | 1.8.0 | [1.8.0](https://github.com/elasticsearch/elasticsearch-transport-thrift/tree/v1.8.0/#thrift-transport-for-elasticsearch) | To build a `SNAPSHOT` version, you need to build it with Maven: ```bash mvn clean install plugin --install transport-thrift \ --url file:target/releases/elasticsearch-transport-thrift-X.X.X-SNAPSHOT.zip ``` ## Guide The thrift definition can be found under the `elasticsearch.thrift` file. The thrift [schema](https://github.com/elasticsearch/elasticsearch-transport-thrift/blob/master/elasticsearch.thrift) can be used to generate thrift clients. * `thrift.port`: The port to bind to. Defaults to `9500-9600`. * `thrift.frame`: Defaults to `-1`, which means no framing. Set to a higher value to specify the frame size (like `15mb`). * `thrift.bind_host`: Set explicit bindings for thrift protocol. Defaults to `transport.bind_host` or `transport.host`. * `thrift.publish_host`: Set explicit bindings for thrift protocol. Defaults to `transport.publish_host` or `transport.host`. * `thrift.protocol`: `binary` (default) which use Binary protocol or `compact` which uses Compact Protocol. See [Thrift documentation](https://thrift.apache.org/docs/concepts). License ------- This software is licensed under the Apache 2 license, quoted below. Copyright 2009-2014 Elasticsearch Licensed 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.