Add retries for docker-compose cmd in integration tests#32772
Closed
kssenii wants to merge 2 commits intoClickHouse:masterfrom
Closed
Add retries for docker-compose cmd in integration tests#32772kssenii wants to merge 2 commits intoClickHouse:masterfrom
kssenii wants to merge 2 commits intoClickHouse:masterfrom
Conversation
Member
|
Ok. |
alesapin
approved these changes
Dec 15, 2021
azat
reviewed
Dec 15, 2021
| if self.with_mysql_client and self.base_mysql_client_cmd: | ||
| logging.debug('Setup MySQL Client') | ||
| subprocess_check_call(self.base_mysql_client_cmd + common_opts) | ||
| subprocess_check_call(self.base_mysql_client_cmd + common_opts, num_tries=DOCKER_COMPOSE_CMD_NUM_TRIES) |
Member
| if i == num_tries - 1: | ||
| raise ex | ||
| else: | ||
| logging.info("Got execption while executing command: %s", ex) |
Member
There was a problem hiding this comment.
There is already retry_exception(), and I think adding delay between retries may help a little.
Member
Author
There was a problem hiding this comment.
Though it does not show proper exception:
Member
|
Didn't help? |
Member
Author
|
Not sure, I added retries not for all such docker command runs but only for those which run with |
Member
|
I vote for our docker proxies. If compose/hub fails it is a reason to check why.. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md):
Should resolve errors like