Merged
Conversation
Contributor
|
👍 |
fjy
approved these changes
Dec 7, 2016
fjy
reviewed
Dec 7, 2016
| |`druid.server.http.maxIdleTime`|The Jetty max idle time for a connection.|PT5m| | ||
| |`druid.broker.http.numConnections`|Size of connection pool for the Broker to connect to historical and real-time nodes. If there are more queries than this number that all need to speak to the same node, then they will queue up.|20| | ||
| |`druid.broker.http.readTimeout`|The timeout for data reads.|PT15M| | ||
| |`druid.broker.http.compressionCodec`|Compression codec the Broker uses to communicate with historical and real-time nodes. May be "gzip" or "identity".|gzip| |
|
|
||
| public class DruidHttpClientConfig | ||
| { | ||
| private final String DEFAULT_COMPRESSION_CODEC = "gzip"; |
Contributor
There was a problem hiding this comment.
i think uncompressed shuld be default
Contributor
Author
There was a problem hiding this comment.
I don't want to change the default in this PR.
Contributor
|
👍 |
Contributor
|
PR looks good, I do have a suggestion but it would involve releasing another version of http-client: The String->CompressionCodec enum conversion could be done within http-client, e.g.: Then DruidHttpClientConfig could use CompressionCodec enums directly instead of accepting String |
dgolitsyn
pushed a commit
to metamx/druid
that referenced
this pull request
Feb 14, 2017
* Configurable HTTP compression. * Call real-time nodes real-time processes in docs.
seoeun25
pushed a commit
to seoeun25/incubator-druid
that referenced
this pull request
Jan 10, 2020
* Configurable HTTP compression. * Call real-time nodes real-time processes in docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Based on metamx/http-client#26.