You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains 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
Bear in mind that a JDBC connection pool might create some dozens of connections ahead of time for reuse. If each of these connections spawns another threadpool, we might run into issues.
Bear in mind that a JDBC connection pool might create some dozens of connections ahead of time for reuse. If each of these connections spawns another threadpool, we might run into issues.
max_threads_per_client defaults to zero, but when it's configured with a number greater than zero, each client will have its own thread pool, instead of reusing ClickHouseClient.defaultExecutor. Maybe keep alive timeout should be set for core pool as well to avoid the situation of having too many idle threads.
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.
ClickHouseInputStream
http_connection_provider
defaults toHTTP_URL_CONNECTION
, can be changed toHTTP_CLIENT
in JDK 11 or abovecustomTypeMappings
to define mapping between ClickHouse data type and Java classselect :p1(DateTime64(3)) p1, :p2 p2, :p1 p3
has only two parameters:p1
andp2
select ? p1, ? p2, ? p3
has 3 parametersBool
(instead of treating it as alias toInt8
)system
schemainsert into ... values
insert into ... format ...