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

[type:bugfix]Add more retry strategies #5969

Merged
merged 24 commits into from
Apr 2, 2025
Merged

Conversation

JerryDtj
Copy link
Contributor

修复了#5920,保持原有代码不变的基础上,重构了AbstractHttpClientPlugin.让它支持更多的重试策略
Fixes #5920 ,On the basis of keeping the original code unchanged, we refactored AbstractFHIR Plugin Enable it to support more retry strategies

Make sure that:

  • You have read the contribution guidelines.
  • You submit test cases (unit or integration tests) that back your changes.
  • Your local test passed ./mvnw clean install -Dmaven.javadoc.skip=true.

@@ -960,7 +960,11 @@ public interface Constants {
* The constant Content-Encoding.
*/
String CONTENT_ENCODING = "Content-Encoding";

/**
* http请求重试策略 http request retry policy.
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

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,i fix it

public enum HttpRetryBackoffSpecEnum {

/**
* 默认重试.
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

DEFAULT_BACKOFF("default"),

/**
* 固定重试.
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

FIXED_BACKOFF("fixed"),

/**
* 指数重试.
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

EXPONENTIAL_BACKOFF("exponential"),

/**
* 自定义重试.
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls



/**
* 默认重试策略类 Default Retry Policy Class
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

}

/**
* 执行重试策略
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

}

/**
* 执行重试策略
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

import java.time.Duration;

/**
* 重试策略接口 Retry Policy Interface
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls


@Test
void testDefaultRetryBackoffExecute() {
// 创建一个模拟的 AbstractHttpClientPlugin
Copy link
Contributor

Choose a reason for hiding this comment

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

use English, pls

@JerryDtj JerryDtj requested a review from Aias00 March 25, 2025 17:09
@Aias00
Copy link
Contributor

Aias00 commented Mar 26, 2025

fix ci error pls

@Aias00
Copy link
Contributor

Aias00 commented Mar 27, 2025

fix the ci
u should do the checkstyle local, before submit the code

@JerryDtj
Copy link
Contributor Author

fix the ci u should do the checkstyle local, before submit the code

好的,多谢,版本已经提交

@Aias00 Aias00 added this to the 2.7.0.1 milestone Mar 31, 2025
Copy link
Contributor

@Aias00 Aias00 left a comment

Choose a reason for hiding this comment

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

LGTM

@Aias00 Aias00 merged commit 909704f into apache:master Apr 2, 2025
45 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants