chao
chao
I faced the same issue after first successful run of `cobra-cli init` and delete `root.go` and `License` files. ``` $ go version go version go1.17.5 darwin/amd64 $ cobra-cli init Using...
/sig scalability
/remove-lifecycle stale
I met the same issue: Please take a look at it when I first trying to play around setting up a local etcd cluster https://github.com/etcd-io/etcd/tree/master/contrib/raftexample#running-a-local-cluster. Thx! ```zsh $ go version...
Fixed that by `go get golang.org/x/sys/unix` and then navigate to that unix package and `git pull` from upstream. It should be work by `go get -u golang.org/x/sys/unix` but it shows...
Thanks for raising this issue. It is really annoying for any contributors to etcd that unrelated tests failed. I can take one `TestDowngradeUpgradeClusterOf3` because I just faced in https://github.com/etcd-io/etcd/pull/14331. It's...
from reading the code, it seems etcd server was stuck in https://github.com/etcd-io/etcd/blob/72d3e382e73c1a2a4781f884fb64792af3242f22/etcdserver/server.go#L1020-L1025 It was stuck there because v2 health check handler returned `etcdserver: server stopped` [here](https://github.com/etcd-io/etcd/blob/v3.4.18/etcdserver/v2_server.go#L92-L119) and it was the...
Okay. I get a repro working by injecting sleeping at raftAfterSave failpoint followed by member removal. The fifo scheduler stop is the culprit and getting stuck https://github.com/etcd-io/etcd/blob/72d3e382e73c1a2a4781f884fb64792af3242f22/pkg/schedule/schedule.go#L119-L125 Will dig in...
The raft loop was stuck in the middle and apply routine is waiting for it. https://github.com/etcd-io/etcd/blob/72d3e382e73c1a2a4781f884fb64792af3242f22/etcdserver/server.go#L1119-L1122 I think the proper fix should be cancelling this apply successfully in the shutdown...