We have to setup new build environments regularily, and the process seems not so simple. Today I have got a new build machine, and the first Maven build was so slow, that I wanted to clarify why the performance was so bad. But how to do that?
Our context is:
- We use multiple build machines, each project gets its own.
- Each build machine has a similar setup, so that projects can start immediately and don't have to configure a lot.
- We have the following tools preconfigured:
- Hudson (currently 2.1.1, but will change)
- Artifactory 2.3.3.1
- Sonar
- Hudson, Artifactory and Sonar have their own Tomcat configured
- Maven 2.2.1 and Maven 3.0.3 (with no user configuration, only the installation has a
settings.xml) - Ant 1.7.1 and Ant 1.8.2 (not relevant here)
- Subversion 1.6 client
All tools should work together, especially the repository chain should be:
- Build machine Maven repository
- Build machine Artifactory
- Central company Artifactory (is working as mirror and cache for the world)
- Maven central (and other repository)
So when the Maven build needs a dependency resolved, it will be first looked-up in the local Maven repo, from there in the local Artifactory repo, then in the central Artifactory repo and only then on the internet.
We normally have to use proxies to connect to the internet, we don't need it in our intranet.
The first build (Maven Hello World) was built in around 45 minutes. In that time, all bootstrapping was happening, but I would have thought by using our chain of repositories (where the central repository is well filled), the build would be much faster. So I think the focus of the debugging will be the network, the local build is not the problem. So configuration and interaction of Maven and Artifactory is under consideration.
How do you debug such an environment? I have access to the build machine (as sudo) and to the central repository, but I do not know how to start, what to prove, where to look. So what is your experience, what are the tips and tricks you would like to share?