You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The linux-mips64 builder keeps working, but no success or failure shows up on build.golang.org, which means the builder is disappearing or something.
I see make.bash finishes in 13 minutes, and now I'm watching it do the snapshot copy to Google Cloud Storage. There's a comment on that code that says:
func (st*buildStatus) writeSnapshot(bc*buildlet.Client) (errerror) {
sp:=st.createSpan("write_snapshot_to_gcs")
deferfunc() { sp.done(err) }()
// This should happen in 15 seconds or so, but I saw timeouts // a couple times at 1 minute. Some buildlets might be far // away on the network, so be more lenient. The timeout mostly // is here to prevent infinite hangs. ctx, cancel:=context.WithTimeout(context.Background(), 5*time.Minute)
defercancel()
There's a 5 minute timeout. It's possible those arm5 machines can't gzip quickly, and/or their network is slow.
Yup, confirmed:
Error: writeSnapshot: net/http: request canceled
Maybe we don't need to snapshot those builds to Google Cloud Storage. That means we can't shard tests, but we're not doing that currently anyway.
(Continued from #19930 (comment))
The linux-mips64 builder keeps working, but no success or failure shows up on build.golang.org, which means the builder is disappearing or something.
I see make.bash finishes in 13 minutes, and now I'm watching it do the snapshot copy to Google Cloud Storage. There's a comment on that code that says:
There's a 5 minute timeout. It's possible those arm5 machines can't gzip quickly, and/or their network is slow.
Yup, confirmed:
Maybe we don't need to snapshot those builds to Google Cloud Storage. That means we can't shard tests, but we're not doing that currently anyway.
/cc @vstefanovic @adams-sarah @cybrcodr
The text was updated successfully, but these errors were encountered: