Skip to content
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

Merged
merged 5 commits into from
Jul 17, 2024
Merged

Conversation

wendigo
Copy link
Contributor

@wendigo wendigo commented Jul 16, 2024

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 comes with bunch of tests that ensure that CLI options are mapped to connection properties and all connection properties can be set via TrinoUriBuilder.

@cla-bot cla-bot bot added the cla-signed label Jul 16, 2024
@github-actions github-actions bot added the jdbc Relates to Trino JDBC driver label Jul 16, 2024
@wendigo wendigo requested a review from nineinchnick July 16, 2024 18:22
@wendigo wendigo force-pushed the serafin/refactor-client branch from 87bfc5a to a21764d Compare July 16, 2024 18:52
@wendigo wendigo requested a review from electrum July 16, 2024 18:53
@wendigo wendigo force-pushed the serafin/refactor-client branch 2 times, most recently from f3e02f6 to aade18a Compare July 16, 2024 20:39
@wendigo
Copy link
Contributor Author

wendigo commented Jul 16, 2024

This is how DBeaver sees driver properties now:

Screenshot 2024-07-16 at 22 46 37

this.debug = debug;

OkHttpClient.Builder builder = new OkHttpClient.Builder();
Copy link
Contributor Author

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()
Copy link
Contributor Author

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

@wendigo wendigo requested review from ebyhr, hashhar and losipiuk July 17, 2024 05:20
Copy link
Member

@losipiuk losipiuk left a 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

@wendigo
Copy link
Contributor Author

wendigo commented Jul 17, 2024

@losipiuk i know :(

@wendigo wendigo force-pushed the serafin/refactor-client branch 2 times, most recently from 219ed78 to 3d71ab9 Compare July 17, 2024 08:53
wendigo added 5 commits July 17, 2024 10:56
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
@wendigo wendigo force-pushed the serafin/refactor-client branch from 3d71ab9 to df65c98 Compare July 17, 2024 08:56
@wendigo wendigo merged commit 0305dd9 into master Jul 17, 2024
108 checks passed
@wendigo wendigo deleted the serafin/refactor-client branch July 17, 2024 09:45
@github-actions github-actions bot added this to the 453 milestone Jul 17, 2024
@colebow colebow added the no-release-notes This pull request does not require release notes entry label Jul 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-signed jdbc Relates to Trino JDBC driver no-release-notes This pull request does not require release notes entry
Development

Successfully merging this pull request may close these issues.

3 participants