On Sun, 16 Mar 2025 at 21:30, Harald Anlauf via Gcc <gcc@gcc.gnu.org> wrote: > since I am experiencing extreme (temporary) performance problems > again with a recently increased frequency and only during evening > hours in Europe, I am asking if this is still the same cause. > > Today I've been waiting for hours for a git pull to succeed (i.e. > to not timeout), not to mention a push.
Bugzilla is slow again, but waiting hours for simple Git operations is not normal. If you're not doing anything crazy like pushing thousands of commits to a new branch, it should not take hours. (For pulls from trunk or release branches, you can always use the https://github.com/gcc-mirror/gcc repo mirror, which benefits for github's CDN and removes load from the gcc.gnu.org server). Do you use connection multiplexing with ssh, using the -O option or the ControlMaster ssh_config setting? If the connection hangs, then git operations over ssh will not complete. When that happens to me I do 'ssh -O exit gcc.gnu.org' to close the stalled multiplexed connection so that a new one can be created.