Skip to content

Commit ac2e21f

Browse files
authored
feat: Support config timeout for AlibabaCloud OSS requests (#14856)
1 parent bfc2890 commit ac2e21f

File tree

3 files changed

+36
-13
lines changed

3 files changed

+36
-13
lines changed

‎docs/sources/shared/configuration.md

+16-8
Original file line numberDiff line numberDiff line change
@@ -840,27 +840,35 @@ kafka_config:
840840
841841
The `alibabacloud_storage_config` block configures the connection to Alibaba Cloud Storage object storage backend. The supported CLI flags `<prefix>` used to reference this configuration block are:
842842

843-
- `common`
844-
- `ruler`
843+
- `common.storage`
844+
- `ruler.storage`
845845

846846
&nbsp;
847847

848848
```yaml
849849
# Name of OSS bucket.
850-
# CLI flag: -<prefix>.storage.oss.bucketname
850+
# CLI flag: -<prefix>.oss.bucketname
851851
[bucket: <string> | default = ""]
852852
853853
# oss Endpoint to connect to.
854-
# CLI flag: -<prefix>.storage.oss.endpoint
854+
# CLI flag: -<prefix>.oss.endpoint
855855
[endpoint: <string> | default = ""]
856856
857857
# alibabacloud Access Key ID
858-
# CLI flag: -<prefix>.storage.oss.access-key-id
858+
# CLI flag: -<prefix>.oss.access-key-id
859859
[access_key_id: <string> | default = ""]
860860
861861
# alibabacloud Secret Access Key
862-
# CLI flag: -<prefix>.storage.oss.secret-access-key
862+
# CLI flag: -<prefix>.oss.secret-access-key
863863
[secret_access_key: <string> | default = ""]
864+
865+
# Connection timeout in seconds
866+
# CLI flag: -<prefix>.oss.conn-timeout-sec
867+
[conn_timeout_sec: <int> | default = 30]
868+
869+
# Read/Write timeout in seconds
870+
# CLI flag: -<prefix>.oss.read-write-timeout-sec
871+
[read_write_timeout_sec: <int> | default = 60]
864872
```
865873

866874
### analytics
@@ -1643,6 +1651,7 @@ storage:
16431651
16441652
# The alibabacloud_storage_config block configures the connection to Alibaba
16451653
# Cloud Storage object storage backend.
1654+
# The CLI flags prefix for this block configuration is: common.storage
16461655
[alibabacloud: <alibabacloud_storage_config>]
16471656
16481657
# The bos_storage_config block configures the connection to Baidu Object
@@ -4543,7 +4552,7 @@ storage:
45434552
[azure: <azure_storage_config>]
45444553
45454554
# Configures backend rule storage for AlibabaCloud Object Storage (OSS).
4546-
# The CLI flags prefix for this block configuration is: ruler
4555+
# The CLI flags prefix for this block configuration is: ruler.storage
45474556
[alibabacloud: <alibabacloud_storage_config>]
45484557
45494558
# Configures backend rule storage for GCS.
@@ -5350,7 +5359,6 @@ The `storage_config` block configures one of many possible stores for both the i
53505359
```yaml
53515360
# The alibabacloud_storage_config block configures the connection to Alibaba
53525361
# Cloud Storage object storage backend.
5353-
# The CLI flags prefix for this block configuration is: common
53545362
[alibabacloud: <alibabacloud_storage_config>]
53555363
53565364
# The aws_storage_config block configures the connection to dynamoDB and S3

‎pkg/storage/chunk/client/alibaba/oss_object_client.go

+16-5
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ type OssObjectClient struct {
3535

3636
// OssConfig is config for the OSS Chunk Client.
3737
type OssConfig struct {
38-
Bucket string `yaml:"bucket"`
39-
Endpoint string `yaml:"endpoint"`
40-
AccessKeyID string `yaml:"access_key_id"`
41-
SecretAccessKey string `yaml:"secret_access_key"`
38+
Bucket string `yaml:"bucket"`
39+
Endpoint string `yaml:"endpoint"`
40+
AccessKeyID string `yaml:"access_key_id"`
41+
SecretAccessKey string `yaml:"secret_access_key"`
42+
ConnectionTimeoutSec int64 `yaml:"conn_timeout_sec"`
43+
ReadWriteTimeoutSec int64 `yaml:"read_write_timeout_sec"`
4244
}
4345

4446
// RegisterFlags registers flags.
@@ -52,11 +54,20 @@ func (cfg *OssConfig) RegisterFlagsWithPrefix(prefix string, f *flag.FlagSet) {
5254
f.StringVar(&cfg.Endpoint, prefix+"oss.endpoint", "", "oss Endpoint to connect to.")
5355
f.StringVar(&cfg.AccessKeyID, prefix+"oss.access-key-id", "", "alibabacloud Access Key ID")
5456
f.StringVar(&cfg.SecretAccessKey, prefix+"oss.secret-access-key", "", "alibabacloud Secret Access Key")
57+
f.Int64Var(&cfg.ConnectionTimeoutSec, prefix+"oss.conn-timeout-sec", 30, "Connection timeout in seconds")
58+
f.Int64Var(&cfg.ReadWriteTimeoutSec, prefix+"oss.read-write-timeout-sec", 60, "Read/Write timeout in seconds")
59+
}
60+
61+
func (cfg *OssConfig) Validate() error {
62+
if cfg.ReadWriteTimeoutSec <= 0 {
63+
return errors.New("read write timeout must be greater than 0")
64+
}
65+
return nil
5566
}
5667

5768
// NewOssObjectClient makes a new chunk.Client that writes chunks to OSS.
5869
func NewOssObjectClient(_ context.Context, cfg OssConfig) (client.ObjectClient, error) {
59-
client, err := oss.New(cfg.Endpoint, cfg.AccessKeyID, cfg.SecretAccessKey)
70+
client, err := oss.New(cfg.Endpoint, cfg.AccessKeyID, cfg.SecretAccessKey, oss.Timeout(cfg.ConnectionTimeoutSec, cfg.ReadWriteTimeoutSec))
6071
if err != nil {
6172
return nil, err
6273
}

‎pkg/storage/factory.go

+4
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ type Config struct {
311311

312312
// RegisterFlags adds the flags required to configure this flag set.
313313
func (cfg *Config) RegisterFlags(f *flag.FlagSet) {
314+
cfg.AlibabaStorageConfig.RegisterFlags(f)
314315
cfg.AWSStorageConfig.RegisterFlags(f)
315316
cfg.AzureStorageConfig.RegisterFlags(f)
316317
cfg.BOSStorageConfig.RegisterFlags(f)
@@ -368,6 +369,9 @@ func (cfg *Config) Validate() error {
368369
if err := cfg.ObjectStore.Validate(); err != nil {
369370
return errors.Wrap(err, "invalid object store config")
370371
}
372+
if err := cfg.AlibabaStorageConfig.Validate(); err != nil {
373+
return errors.Wrap(err, "invalid Alibaba Storage config")
374+
}
371375

372376
return cfg.NamedStores.Validate()
373377
}

0 commit comments

Comments
 (0)