You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
if I use the Source Code Checkout task cloning the repository takes up to 9 minutes. Most of the time is spent in these steps
01:43:17 Fetching 'refs/heads/*' from 'ssh://git@stash.intapps.it:7999/ma/mybranch.git'.
01:43:17 Warning: Permanently added '[127.0.0.1]:36431' (RSA) to the list of known hosts.
01:51:55 From ssh://127.0.0.1:36431/ma/mybranch
01:51:55 * [new branch] mybranch
...
During this time the CPU load of the agent running on an AWS EC2 machine (c4.4xlarge) goes up to 100% using only one of the available 8 cores.
If I use a Script task to execute
git init myproject
cd myproject
git remote add origin ssh://git@stash.intapps.it:7999/ma/myproject.git
git fetch
cloning is much faster
14:48:59 Initialized empty Git repository in /root/bamboo-agent-home/xml-data/build-dir/MY-PROJ-JOB1/myproject/.git/
14:48:59 Warning: Permanently added '[stash.intapps.it]:7999,[10.130.14.156]:7999' (RSA) to the list of known hosts.
14:49:47 From ssh://stash.intapps.it:7999/ma/myproject
14:49:47 * [new branch] mybranch
...
What is causing this high load and how can I make cloning repositories faster?
this could be hard to pinpoint from the outside/from Community so I am only able to share some more generic information - the first attempt for diagnosing performance issues could be to follow the troubleshooting guideline.
In case the issue is still current and you have not reviewed the information recorded here, it could give a first clue:
https://confluence.atlassian.com/bamboo/performing-a-thread-dump-289277385.html
Regards,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.