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 retry options to Azure Blob client #5098

Merged
merged 1 commit into from
Jul 2, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ import com.azure.storage.blob.sas.BlobContainerSasPermission
import com.azure.storage.blob.sas.BlobSasPermission
import com.azure.storage.blob.sas.BlobServiceSasSignatureValues
import com.azure.storage.common.StorageSharedKeyCredential
import com.azure.storage.common.policy.RequestRetryOptions
import com.azure.storage.common.policy.RetryPolicyType
import com.azure.storage.common.sas.AccountSasPermission
import com.azure.storage.common.sas.AccountSasResourceType
import com.azure.storage.common.sas.AccountSasService
import com.azure.storage.common.sas.AccountSasSignatureValues
import groovy.transform.CompileStatic
import groovy.transform.Memoized
import groovy.util.logging.Slf4j
import nextflow.cloud.azure.config.AzConfig
import nextflow.cloud.azure.config.AzRetryConfig
import nextflow.cloud.azure.nio.AzPath
import nextflow.util.Duration
/**
Expand Down Expand Up @@ -180,6 +184,7 @@ class AzHelper {
return new BlobServiceClientBuilder()
.endpoint(endpoint)
.credential(credential)
.retryOptions(requestRetryOptions())
.buildClient()
}

Expand All @@ -197,6 +202,7 @@ class AzHelper {
return new BlobServiceClientBuilder()
.endpoint(endpoint)
.sasToken(sasToken)
.retryOptions(requestRetryOptions())
.buildClient()
}

Expand All @@ -215,6 +221,7 @@ class AzHelper {
return new BlobServiceClientBuilder()
.credential(credential)
.endpoint(endpoint)
.retryOptions(requestRetryOptions())
.buildClient()
}

Expand All @@ -231,7 +238,26 @@ class AzHelper {
return new BlobServiceClientBuilder()
.credential(credentialBuilder.build())
.endpoint(endpoint)
.retryOptions(requestRetryOptions())
.buildClient()
}

@Memoized
static protected RequestRetryOptions requestRetryOptions() {
final cfg = AzConfig.getConfig().retryConfig()
return requestRetryOptions0(cfg)
}

static protected RequestRetryOptions requestRetryOptions0(AzRetryConfig cfg) {
final retryDelay = java.time.Duration.ofMillis(cfg.getDelay().millis)
final maxRetryDelay = java.time.Duration.ofMillis(cfg.getMaxDelay().millis)
new RequestRetryOptions(
RetryPolicyType.EXPONENTIAL,
cfg.maxAttempts,
null,
retryDelay,
maxRetryDelay,
null)
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* Copyright 2013-2024, Seqera Labs
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

package nextflow.cloud.azure.batch

import java.time.Duration

import com.azure.storage.common.policy.RetryPolicyType
import nextflow.cloud.azure.config.AzRetryConfig
import spock.lang.Specification
import spock.lang.Unroll

/**
*
* @author Paolo Di Tommaso <[email protected]>
*/
class AzHelperTest extends Specification {

@Unroll
def 'should create retry options' () {
given:
def opts = AzHelper.requestRetryOptions0(CONFIG)
expect:
opts.@retryPolicyType == RetryPolicyType.EXPONENTIAL
opts.maxRetryDelay.toMillis() == CONFIG.maxDelay.millis
opts.retryDelay.toMillis() == CONFIG.delay.millis
opts.maxTries == CONFIG.maxAttempts
and:
opts.secondaryHost == null
opts.tryTimeoutDuration == Duration.ofSeconds(Integer.MAX_VALUE)

where:
_ | CONFIG
_ | new AzRetryConfig()
_ | new AzRetryConfig([delay: '10s', maxAttempts: 20, maxDelay: '200s'])
}

}