-
Notifications
You must be signed in to change notification settings - Fork 337
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
30% of runner instantiation failes due to timeout #86
Comments
Would also like to know if there's something one can do to limit these situations... |
I ran into this issue when previous runners didn't clean themselves up in the GitHub API and I look at the cloud-init log of the configure command it was asking if I wanted to replace the previous runner: https://github.com/actions/runner/blob/main/src/Runner.Listener/CommandSettings.cs#L193 Edit: I followed up here and it seems one can pass in
|
Hello! Any update on this? We are also facing a lot of unstarted runners... @farvour do you plan to do a PR or is there a way to apply your solution on our side? Thank you! |
We're also experiencing this, requiring periodic manual re-run of our CI jobs. |
This error usually means that your new EC2 runner can not communicate to GitHub and registers itself as a new runner. Based on the tests, 5 minutes is more than enough for the EC2 runner to be able to register itself. If that does not help, I have to ask you to provide more information about your action configuration and the AWS infrastructure setup to help you with the issue. |
I'll have to do some probing to see what's going on with 443 traffic however some observations which may be relevant are:
I'm using a t3.mini instance with an AMI based on bare Ubuntu 20.04, then prepared with the |
Hi, I think this might be the same issue where the hostname is used as runner name, and hostnames are reused between instances: #128 |
this is the error i receive for like 30% of my runners
what could cause this? and how can i increase the percentage of successfull instantiations?
The text was updated successfully, but these errors were encountered: