-
Notifications
You must be signed in to change notification settings - Fork 6k
storage: support kingsoft s3 (ks3) #47465
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
Conversation
Signed-off-by: lance6716 <[email protected]>
Hi @lance6716. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Signed-off-by: lance6716 <[email protected]>
/retest |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #47465 +/- ##
================================================
+ Coverage 72.0288% 72.8527% +0.8238%
================================================
Files 1396 1420 +24
Lines 404192 411065 +6873
================================================
+ Hits 291135 299472 +8337
+ Misses 93465 92763 -702
+ Partials 19592 18830 -762
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Signed-off-by: lance6716 <[email protected]>
Signed-off-by: lance6716 <[email protected]>
Signed-off-by: lance6716 <[email protected]>
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 pr need a release note?
Signed-off-by: lance6716 <[email protected]>
Currently this is only used for testing, ks3 SDK is lacking necessary features like golang context |
Signed-off-by: lance6716 <[email protected]>
Signed-off-by: lance6716 <[email protected]>
ks3 url require redaction of AK/SK |
Signed-off-by: lance6716 <[email protected]>
|
||
const ( | ||
// ks3 sdk does not expose context, we use hardcoded timeout for network request | ||
ks3HTTPDeadline = 5 * time.Minute |
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.
if global sort upload a 10g+ file, if failed, is retry time included?
/retest |
/retest |
@lance6716: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/retest |
@lance6716: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/retest |
@lance6716: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/hold |
/unhold |
/retest |
What problem does this PR solve?
Issue Number: close #47230
Problem Summary:
What is changed and how it works?
when URL scheme is
ks3
, use ks3 SDK rather than AWS SDK. Note that a main difference is ks3 SDK does not expose context on API ks3sdklib/aws-sdk-go#29 , so I manually set a 5 minutes timeout on HTTP client.Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.