-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
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
Consistent handling of Trino uri properties #22687
Conversation
client/trino-client/src/main/java/io/trino/client/uri/AbstractConnectionProperty.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/AbstractConnectionProperty.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/ConnectionProperties.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/ConnectionProperties.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/ConnectionProperties.java
Show resolved
Hide resolved
87bfc5a
to
a21764d
Compare
f3e02f6
to
aade18a
Compare
this.debug = debug; | ||
|
||
OkHttpClient.Builder builder = new OkHttpClient.Builder(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are moved to a HttpClientFactory which is a single place to construct a HttpClient used by the Client libraryThese are moved to a HttpClientFactory which is a single place to construct a HttpClient used by the Client library
@@ -319,6 +322,42 @@ public void testDuplicateExtraCredentialKey() | |||
.hasMessage("Multiple entries with same key: test.token.foo=bar and test.token.foo=foo"); | |||
} | |||
|
|||
@Test | |||
public void testAllClientOptionsHaveMappingToAConnectionProperty() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test ensures that ClientOptions fields are mapped to TrinoUri ConnectionProperties
client/trino-client/src/main/java/io/trino/client/uri/ConnectionProperties.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/ConnectionProperty.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/ConnectionProperty.java
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/TrinoUri.java
Outdated
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/TrinoUri.java
Outdated
Show resolved
Hide resolved
client/trino-client/src/main/java/io/trino/client/uri/TrinoUri.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems fine. But hard to review
@losipiuk i know :( |
219ed78
to
3d71ab9
Compare
This change makes configuration consistent between JDBC and client libraries so they can be configured in the same way. Instead of keeping individual values in the TrinoUri fields, properties are kept in `Properties` map and decoded on access. When `TrinoUri` is constructed, typed properties are encoded before being added to `Properties`. `OkHttpClient` is constructed from the `TrinoUri` in the single place to keep the client configuration consistent.
This property is already set through the uri
This will allow easier switching of the underlying http library in the future
3d71ab9
to
df65c98
Compare
This change makes configuration consistent between JDBC and client libraries so they can be configured in the same way. Instead of keeping individual values in the TrinoUri fields, properties are kept in
Properties
map and decoded on access. WhenTrinoUri
is constructed, typed properties are encoded before being added toProperties
.OkHttpClient
is constructed from theTrinoUri
in the single place to keep the client configuration consistent.This comes with bunch of tests that ensure that CLI options are mapped to connection properties and all connection properties can be set via TrinoUriBuilder.