-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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: Support config timeout for AlibabaCloud OSS requests #14856
feat: Support config timeout for AlibabaCloud OSS requests #14856
Conversation
} | ||
|
||
// NewOssObjectClient makes a new chunk.Client that writes chunks to OSS. | ||
func NewOssObjectClient(_ context.Context, cfg OssConfig) (client.ObjectClient, error) { | ||
client, err := oss.New(cfg.Endpoint, cfg.AccessKeyID, cfg.SecretAccessKey) | ||
var options []oss.ClientOption | ||
if cfg.ConnectionTimeoutSec > 0 || cfg.ReadWriteTimeoutSec > 0 { |
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.
looking at the code, setting ConnectionTimeoutSec
to 0 means no timeout on connection. but setting ReadWriteTimeoutSec
to 0 would fail the reads and writes immediately i think
should we pass these values as is and have a validation on ReadWriteTimeoutSec
during config validation to make sure it is greater than 0?
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.
Timeout: httpTimeOut.ConnectTimeout, |
c.SetReadDeadline(time.Now().Add(c.timeout)) |
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.
Done! move value check to a separate validate function is great!
Thanks for your fast reply!
@@ -52,11 +54,17 @@ func (cfg *OssConfig) RegisterFlagsWithPrefix(prefix string, f *flag.FlagSet) { | |||
f.StringVar(&cfg.Endpoint, prefix+"oss.endpoint", "", "oss Endpoint to connect to.") | |||
f.StringVar(&cfg.AccessKeyID, prefix+"oss.access-key-id", "", "alibabacloud Access Key ID") | |||
f.StringVar(&cfg.SecretAccessKey, prefix+"oss.secret-access-key", "", "alibabacloud Secret Access Key") | |||
f.Int64Var(&cfg.ConnectionTimeoutSec, prefix+"oss.conn-timeout-sec", 5, "Connection timeout in seconds") |
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.
nit: would be nice if we could revert the defaults to the existing values. 30 and 60s
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.
Agree, done!
} | ||
|
||
func (cfg *OssConfig) Validate() error { | ||
if len(cfg.Bucket) == 0 { |
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.
by default loki validates all provider configs, this would fail if someone is using a different provider. CI is failing as a result, can you remove the extra validations?
I would suggest only validating ReadWriteTimeoutSec
to ensure it is gt 0 as a zero value would result in all reads and writes to fail immediately as a result of timeout. ConnectionTimeoutSec
can be gt or eq to 0 as it supports indefinite waits
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.
Ok! modified it.
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.
lgtm! @honganan thanks for the contribution!
What this PR does / why we need it:
Which issue(s) this PR fixes:
The AlibabaCloud OSS Client have a default connection timeout value with 30 seconds and read-write timeout with 60 seconds, I think it's too long and we should support user to config it.
Special notes for your reviewer:
Checklist
CONTRIBUTING.md
guide (required)feat
PRs are unlikely to be accepted unless a case can be made for the feature actually being a bug fix to existing behavior.docs/sources/setup/upgrade/_index.md
deprecated-config.yaml
anddeleted-config.yaml
files respectively in thetools/deprecated-config-checker
directory. Example PR