Skip to content
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

Merged
merged 6 commits into from
Nov 12, 2024

Conversation

honganan
Copy link
Contributor

@honganan honganan commented Nov 11, 2024

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

  • Reviewed the CONTRIBUTING.md guide (required)
  • Documentation added
  • Tests updated
  • Title matches the required conventional commits format, see here
    • Note that Promtail is considered to be feature complete, and future development for logs collection will be in Grafana Alloy. As such, feat PRs are unlikely to be accepted unless a case can be made for the feature actually being a bug fix to existing behavior.
  • Changes that require user attention or interaction to upgrade are documented in docs/sources/setup/upgrade/_index.md
  • If the change is deprecating or removing a configuration option, update the deprecated-config.yaml and deleted-config.yaml files respectively in the tools/deprecated-config-checker directory. Example PR
@honganan honganan requested a review from a team as a code owner November 11, 2024 07:12
@github-actions github-actions bot added the type/docs Issues related to technical documentation; the Docs Squad uses this label across many repositories label Nov 11, 2024
@pull-request-size pull-request-size bot added size/M and removed size/S labels Nov 11, 2024
}

// 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 {
Copy link
Contributor

@ashwanthgoli ashwanthgoli Nov 11, 2024

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?

Copy link
Contributor

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))

Copy link
Contributor Author

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")
Copy link
Contributor

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

Copy link
Contributor Author

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 {
Copy link
Contributor

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok! modified it.

Copy link
Contributor

@ashwanthgoli ashwanthgoli left a 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!

@ashwanthgoli ashwanthgoli merged commit ac2e21f into grafana:main Nov 12, 2024
58 checks passed
@honganan honganan deleted the support_alibabacloud_timeout branch November 12, 2024 05:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size/M type/docs Issues related to technical documentation; the Docs Squad uses this label across many repositories
2 participants