We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As you can see in sources of thrift plugin for elasticsearch:
https://github.com/elasticsearch/elasticsearch-transport-thrift/blob/master/src/main/java/org/elasticsearch/thrift/ThriftServer.java#L82-L86
Supported protocols are TBinaryProtocol and TCompactProtocol (binary y default).
As I can see in sources on ThriftConnetion
https://github.com/elasticsearch/elasticsearch-net/blob/d5a743d4f3b6863a20e0c4b3e95342b8a6025e60/src/Connections/Elasticsearch.Net.Connection.Thrift/ThriftConnection.cs#L41
Only TBinaryProtocol is supported. Please add support of TCompactProtocol, it is more effective that TBinaryProtocol.
The text was updated successfully, but these errors were encountered:
I did some tests, and it looks like TCompactProtocol is more effective for bigger messages.
I'll create PR for this.
Sorry, something went wrong.
this has been implemented by @robertlyson as per #1157
No branches or pull requests
As you can see in sources of thrift plugin for elasticsearch:
https://github.com/elasticsearch/elasticsearch-transport-thrift/blob/master/src/main/java/org/elasticsearch/thrift/ThriftServer.java#L82-L86
Supported protocols are TBinaryProtocol and TCompactProtocol (binary y default).
As I can see in sources on ThriftConnetion
https://github.com/elasticsearch/elasticsearch-net/blob/d5a743d4f3b6863a20e0c4b3e95342b8a6025e60/src/Connections/Elasticsearch.Net.Connection.Thrift/ThriftConnection.cs#L41
Only TBinaryProtocol is supported.
Please add support of TCompactProtocol, it is more effective that TBinaryProtocol.
The text was updated successfully, but these errors were encountered: