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

Add Support for retries when using Azure Blob Storage #1253

Merged
merged 4 commits into from
Jun 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ We use *breaking* word for marking changes that are not backward compatible (rel

- [#1097](https://github.com/improbable-eng/thanos/pull/1097) Added `thanos check rules` linter for Thanos rule rules files.

- [#1253](https://github.com/improbable-eng/thanos/pull/1253) Add support for specifying a maximum amount of retries when using Azure Blob storage (default: no retries).

## [v0.5.0](https://github.com/improbable-eng/thanos/releases/tag/v0.5.0) - 2019.06.05

TL;DR: Store LRU cache is no longer leaking, Upgraded Thanos UI to Prometheus 2.9, Fixed auto-downsampling, Moved to Go 1.12.5 and more.
Expand Down
1 change: 1 addition & 0 deletions docs/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ config:
storage_account_key: ""
container: ""
endpoint: ""
max_retries: 0
```

### OpenStack Swift Configuration
Expand Down
11 changes: 9 additions & 2 deletions pkg/objstore/azure/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ type Config struct {
StorageAccountKey string `yaml:"storage_account_key"`
ContainerName string `yaml:"container"`
Endpoint string `yaml:"endpoint"`
MaxRetries int `yaml:"max_retries"`
}

// Bucket implements the store.Bucket interface against Azure APIs.
Expand All @@ -43,17 +44,20 @@ func (conf *Config) validate() error {
return errors.New("invalid Azure storage configuration")
}
if conf.StorageAccountName == "" && conf.StorageAccountKey != "" {
return errors.New("no Azure storage_account specified while storage_account_key is present in config file; both should be present.")
return errors.New("no Azure storage_account specified while storage_account_key is present in config file; both should be present")
}
if conf.StorageAccountName != "" && conf.StorageAccountKey == "" {
return errors.New("no Azure storage_account_key specified while storage_account is present in config file; both should be present.")
return errors.New("no Azure storage_account_key specified while storage_account is present in config file; both should be present")
}
if conf.ContainerName == "" {
return errors.New("no Azure container specified")
}
if conf.Endpoint == "" {
conf.Endpoint = azureDefaultEndpoint
}
if conf.MaxRetries < 0 {
return errors.New("the value of maxretries must be greater than or equal to 0 in the config file")
}
return nil
}

Expand Down Expand Up @@ -199,6 +203,9 @@ func (b *Bucket) getBlobReader(ctx context.Context, name string, offset, length
BlockSize: blob.BlobDefaultDownloadBlockSize,
Parallelism: uint16(3),
Progress: nil,
RetryReaderOptionsPerBlock: blob.RetryReaderOptions{
MaxRetryRequests: b.config.MaxRetries,
},
},
); err != nil {
return nil, errors.Wrapf(err, "cannot download blob, address: %s", blobURL.BlobURL)
Expand Down
14 changes: 14 additions & 0 deletions pkg/objstore/azure/azure_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ func TestConfig_validate(t *testing.T) {
StorageAccountKey string
ContainerName string
Endpoint string
MaxRetries int
}
tests := []struct {
name string
Expand All @@ -25,6 +26,7 @@ func TestConfig_validate(t *testing.T) {
StorageAccountName: "foo",
StorageAccountKey: "bar",
ContainerName: "roo",
MaxRetries: 3,
},
wantErr: false,
wantEndpoint: azureDefaultEndpoint,
Expand Down Expand Up @@ -67,6 +69,17 @@ func TestConfig_validate(t *testing.T) {
},
wantErr: true,
},
{
name: "invalid max retries (negative)",
fields: fields{
StorageAccountName: "foo",
StorageAccountKey: "bar",
ContainerName: "roo",
MaxRetries: -3,
},
wantErr: true,
wantEndpoint: azureDefaultEndpoint,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
Expand All @@ -75,6 +88,7 @@ func TestConfig_validate(t *testing.T) {
StorageAccountKey: tt.fields.StorageAccountKey,
ContainerName: tt.fields.ContainerName,
Endpoint: tt.fields.Endpoint,
MaxRetries: tt.fields.MaxRetries,
}
err := conf.validate()
if (err != nil) != tt.wantErr {
Expand Down
4 changes: 3 additions & 1 deletion pkg/objstore/azure/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ func getContainerURL(ctx context.Context, conf Config) (blob.ContainerURL, error
return blob.ContainerURL{}, err
}

retryOptions := blob.RetryOptions{}
retryOptions := blob.RetryOptions{
MaxTries: int32(conf.MaxRetries),
}
if deadline, ok := ctx.Deadline(); ok {
retryOptions.TryTimeout = deadline.Sub(time.Now())
}
Expand Down