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
Is there a mechanism by which an agent can build multiple plans concurrently, rather than consecutively?
I know we can scale by adding more agents, but that's not an ideal scaling mechanism, as opposed to being able to have multiple builds going
You can however, add more agents to a single box and give them different working directories. We have 3 remote agents set up on one of our 24 core build boxes. Handles it quite well.
java -Dbamboo.home=/bamboo-agent-home-1/ -jar /bamboo-agent-home-1/atlassian-bamboo-agent-installer-3.3.2.jar http://bamboohost:1234/agentServer &
java -Dbamboo.home=/bamboo-agent-home-2/ -jar /bamboo-agent-home-2/atlassian-bamboo-agent-installer-3.3.2.jar http://bamboohost:1234/agentServer &
java -Dbamboo.home=/bamboo-agent-home-3/ -jar /bamboo-agent-home-3/atlassian-bamboo-agent-installer-3.3.2.jar http://bamboohost:1234/agentServer &
There are some logistic problems when you have several agents on the same host:
- duplicated workspaces on the same machine that cost HDD space and network traffic (for expensive HDD and with GB checkouts this is big problem);
- licensing cost for bamboo (license should be more clear that you pay per jobs you run in parallel not per build server);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, an agent always builds a single build. You have to add more agents if you want more concurrent builds.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to make builds across plans run concurrently by adding more local agents.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am new to Bamboo (a couple of months now). WHY is a Bamboo agent limited to only one build per agent? When will this be fixed? This is very disappointing...
Jenkins has no problem running multiple builds on a single agent as long as the host has the resources to handle it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.