-
Notifications
You must be signed in to change notification settings - Fork 562
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 of http retry priority #1156
Conversation
Hi @ckcd. Thanks for your PR. I'm waiting for a istio member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/assign @howardjohn |
Seems like we need a |
@ckcd: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test
…On Wed, Nov 6, 2019 at 1:25 AM Istio Automation ***@***.***> wrote:
@ckcd <https://github.com/ckcd>: Cannot trigger testing until a trusted
user reviews the PR and leaves an /ok-to-test message.
In response to this
<#1156 (comment)>:
/ok-to-test
Instructions for interacting with me using PR comments are available here
<https://git.k8s.io/community/contributors/guide/pull-requests.md>. If
you have questions or suggestions related to my behavior, please file an
issue against the kubernetes/test-infra
<https://github.com/kubernetes/test-infra/issues/new?title=Prow%20issue:>
repository.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1156?email_source=notifications&email_token=AAEYGXNYETDCZJVEMMPSNJTQSKEO3A5CNFSM4JIPXVPKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEDF3VVQ#issuecomment-550222550>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEYGXNF4C5H76YI6GNT6BLQSKEO3ANCNFSM4JIPXVPA>
.
|
@howardjohn Can we merge this ? Thanks. |
this still needs approval from @rshriram |
@rshriram PTAL. |
@rshriram Please take a look, thanks a lot~ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
..
push again to solve conflict. |
Any changes should I do ? @howardjohn @rshriram |
|
||
// Flag to specify whether the retries should retry to other localities. | ||
// See the [retry plugin configuration](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/http_connection_management#retry-plugin-configuration) for more details. | ||
bool retry_remote_localities = 4; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be a wrapper so that we can have defaults? Otherwise, it will always default to false even if we want to default it to true in future.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, will do the convert.
can you convert it to a wrapper please? |
Done~ PTAL. @rshriram thanks ! |
@ckcd this just needs a rebase |
Add parameter for
envoy.retry_priorities.previous_priorities
inretry_priority
.See https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/http_connection_management#arch-overview-http-retry-plugins
related issue: istio/istio#18418