-
Notifications
You must be signed in to change notification settings - Fork 421
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
feat: use url parsing from object store #1592
Merged
Merged
Conversation
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
roeap
requested review from
houqp,
xianwill,
wjones127,
fvaleye,
rtyler and
mosyp
as code owners
August 16, 2023 19:31
roeap
force-pushed
the
storage-config
branch
5 times, most recently
from
August 16, 2023 21:04
f5ea94f
to
7c3d8c1
Compare
vipeller
reviewed
Sep 8, 2023
("hdfs", Some(_)) => (Self::Hdfs, url.path()), | ||
("https", Some(host)) => { | ||
if host.ends_with("dfs.core.windows.net") || host.ends_with("blob.core.windows.net") | ||
{ |
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 does not seem to have the latest object store changes for fabric support
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.
will definately add that !
rtyler
force-pushed
the
storage-config
branch
from
September 19, 2023 04:34
c4e0a6b
to
bfa0202
Compare
roeap
force-pushed
the
storage-config
branch
from
September 22, 2023 20:33
bfa0202
to
ea3fbef
Compare
roeap
force-pushed
the
storage-config
branch
4 times, most recently
from
September 22, 2023 23:14
58a25ee
to
d45cc68
Compare
roeap
force-pushed
the
storage-config
branch
2 times, most recently
from
September 23, 2023 07:12
53caeaa
to
d5a9e14
Compare
roeap
force-pushed
the
storage-config
branch
from
September 23, 2023 07:17
d5a9e14
to
1035ccb
Compare
rtyler
approved these changes
Sep 25, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Description
This PR moves the url parsing and options to the object store implementation where applicable. This also provides a fix for a subtle bug we had in our configuration handling. Specifically in certain scenarios we may choose an unexpected credential. If the user passed in configuration for a credential, but there is another credential defined in the environment, the choice of credential depends on the order credentials are checked within object store.
While not completely robust, we now try to create a credential without info added from the environment, and if that fails, augment the options with specs from the environment.
closes #1356