-
Notifications
You must be signed in to change notification settings - Fork 400
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
[#5051] GravitinoClient needs metalake to obtain version #5060
Closed
Closed
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
bbfb599
fix bug [Bug report] spark-connector: run sql 'describe table t1' enc…
lsyulong ddc3b3d
rollback
lsyulong 6b0165f
Merge remote-tracking branch 'origin/main'
lsyulong 64d7f17
fix bug [Bug report] spark-connector: run sql 'describe table t1' enc…
lsyulong 5fec7ba
fix bug [Bug report] spark-connector: run sql 'describe table t1' enc…
lsyulong c386635
modifiy Spark and Gravitino data type mapping
lsyulong 00b4639
modifiy Spark and Gravitino data type mapping
lsyulong 1565594
Merge branch 'apache:main' into main
lsyulong 8a38dba
Fix the data type mapping in some catalog doc
lsyulong bc61489
[Improvement] GravitinoClient needs metalake to obtain version
lsyulong 52a60df
Merge branch 'apache:main' into main
lsyulong 800c2b4
Merge branch 'apache:main' into main
lsyulong 4814ee6
Merge branch 'apache:main' into main
lsyulong aaadf9c
[Improvement] use incubating version in docs#5114
lsyulong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,7 @@ | |
public class GravitinoClient extends GravitinoClientBase | ||
implements SupportsCatalogs, TagOperations { | ||
|
||
private final GravitinoMetalake metalake; | ||
private static GravitinoMetalake metalake = null; | ||
|
||
/** | ||
* Constructs a new GravitinoClient with the given URI, authenticator and AuthDataProvider. | ||
|
@@ -84,6 +84,24 @@ private GravitinoClient( | |
this.metalake = loadMetalake(metalakeName); | ||
} | ||
|
||
/** | ||
* Constructs a new GravitinoClient with the given URI, authenticator and AuthDataProvider. | ||
* | ||
* @param uri The base URI for the Gravitino API. | ||
* @param authDataProvider The provider of the data which is used for authentication. | ||
* @param checkVersion Whether to check the version of the Gravitino server. Gravitino does not | ||
* support the case that the client-side version is higher than the server-side version. | ||
* @param headers The base header for Gravitino API. | ||
* @throws NoSuchMetalakeException if the metalake with specified name does not exist. | ||
*/ | ||
private GravitinoClient( | ||
String uri, | ||
AuthDataProvider authDataProvider, | ||
boolean checkVersion, | ||
Map<String, String> headers) { | ||
super(uri, authDataProvider, checkVersion, headers); | ||
} | ||
|
||
/** | ||
* Get the current metalake object | ||
* | ||
|
@@ -537,7 +555,7 @@ public GravitinoClient build() { | |
metalakeName != null && !metalakeName.isEmpty(), | ||
"The argument 'metalakeName' must be a valid name"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the checks on metalakeName will stop the new constructor from being called if metalake name is null or empty. |
||
|
||
return new GravitinoClient(uri, metalakeName, authDataProvider, checkVersion, headers); | ||
return new GravitinoClient(uri, authDataProvider, checkVersion, headers); | ||
} | ||
} | ||
} |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
How is the metalake set after calling this constructor?
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.
Hello, I will close this PR first and make some modifications. Later, I will open a new PR for further discussion