Re: Does Jenkins have a restriction (limit) with the number of concurrent connections to a Git repo (via Bitbucket) ?

2019-08-14 Thread Tony Cappellini
Oh, that is very helpful! I had searched with so many terms, EXCEPT for scaling. Duh. Thank you On Wed, Aug 14, 2019 at 10:07 AM Gareth Bowles wrote: > > BitBucket server and other Git servers do have a limit on the maximum number > of concurrent clones, which is a factor of the resources you

Re: Does Jenkins have a restriction (limit) with the number of concurrent connections to a Git repo (via Bitbucket) ?

2019-08-14 Thread Gareth Bowles
BitBucket server and other Git servers do have a limit on the maximum number of concurrent clones, which is a factor of the resources you have on the BitBucket server machine. See https://confluence.atlassian.com/bitbucketserver062/scaling-bitbucket-server-969537534.html -- You received this m

Re: Does Jenkins have a restriction (limit) with the number of concurrent connections to a Git repo (via Bitbucket) ?

2019-08-13 Thread Tony C
Another IT group maintains the VM where the server is hosted. however, they are generally receptive if we ask for more, >>We limit the jobs running on the master server, and instead spin up slaves. In this context, I'm not sure what a slave is, from your point of view. We have 1 Jenkins server r

Re: Does Jenkins have a restriction (limit) with the number of concurrent connections to a Git repo (via Bitbucket) ?

2019-08-13 Thread Jeff
We regularly run dozens of jobs. It might need more resources (CPU/Memory) or consider adding slaves (unless you are already doing that). We limit the jobs running on the master server, and instead spin up slaves. I run VM's in our ESX environment and configure the slaves as a general rule with

Does Jenkins have a restriction (limit) with the number of concurrent connections to a Git repo (via Bitbucket) ?

2019-08-13 Thread Tony C
We've got a Jenkins server that can only run 5 jobs max, if each of those jobs needs to pull code from a git repo, which is hosted in our corporate Bitbucket. If more than 5 jobs are pulling from Bitbucketat the same time, the jobs crash. I'll have to dig up the specific error message tomorrow.