Skip to content

Commit

Permalink
[KYUUBI #6346] Change Kyuubi JDBC Driver default port and make it eff…
Browse files Browse the repository at this point in the history
…ective

# 🔍 Description
## Issue References 🔗

This pull request fixes #6346

## Describe Your Solution 🔧

Change Kyuubi JDBC Driver default port and make it effective.

## Types of changes 🔖

- [X] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Test Plan 🧪

#### Behavior Without This Pull Request ⚰️

#### Behavior With This Pull Request 🎉

#### Related Unit Tests

---

# Checklist 📝

- [X] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html)

**Be nice. Be informative.**

Closes #6347 from wForget/KYUUBI-6346.

Closes #6346

0a30852 [wforget] [KYUUBI #6346] Change Kyuubi JDBC Driver default port and make it effective

Authored-by: wforget <643348094@qq.com>
Signed-off-by: wforget <643348094@qq.com>
  • Loading branch information
wForget committed May 8, 2024
1 parent 9075fbb commit 4f76373
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -42,7 +42,7 @@ public class Utils {
Arrays.asList("jdbc:hive2://", "jdbc:kyuubi://");

/** If host is provided, without a port. */
static final String DEFAULT_PORT = "10000";
static final String DEFAULT_PORT = "10009";
// To parse the intermediate URI as a Java URI, we'll give a dummy authority(dummyhost:00000).
// Later, we'll substitute the dummy authority for a resolved authority.
static final String dummyAuthorityString = "dummyhost:00000";
Expand Down Expand Up @@ -381,8 +381,8 @@ public static JdbcConnectionParams extractURLComponents(String uri, Properties i
if (port <= 0) {
port = Integer.parseInt(Utils.DEFAULT_PORT);
}
connParams.setHost(jdbcBaseURI.getHost());
connParams.setPort(jdbcBaseURI.getPort());
connParams.setHost(host);
connParams.setPort(port);
}
// We check for invalid host, port while configuring connParams with configureConnParams()
authorityStr = connParams.getHost() + ":" + connParams.getPort();
Expand Down

0 comments on commit 4f76373

Please sign in to comment.