Got Tech? Will Hack.
If you’re working on huge maven projects and have a slow disk, compilation, packaging and install times can sore quite high. If getting faster hard disks isn’t possible, why not try moving the compilation to a ram drive?
A code base which used to take 22 minutes to compile went down to 3 minutes. This just goes to show the effect that disk IO bottlenecks can have on your system.
RAM is significantly faster than spinning platter HDDs. Until the commercialisation of static state devices, it wasn’t even a competition. It’s meant to be like that.
If you need higher writes speeds to disk which don’t need to be persisted over a long period of time, why not use some of your spare RAM as a hard disk? This can be achieved using software.
RAM drive softwares are available for all major operating systems.
SoftPerfect’s RAM Disk is a good free tool for non-commercial processes for Windows. Linux has tempfs and ramfs.
Most big projects follow a multi-module POM structure. You can move your target directory in 2 ways.
You can change the output directory to the desired path ensuring all compiled files go to your RAM drive. Just make sure you qualify your path well using the group and artifact IDs to ensure different projects don’t overwrite each other’s compiled code.
The issue with this approach is that all users on the team are now bound by
The first issue can be fixed by creating a property for the base path. This parameter can be passed as a compile time parameter with a default set in the POM
The second issue can’t be fixed using this approach. This can be fixed with the second approach
Maven allows you to have profiles for applying configs in specific scenarios.
Now you can compile your code with a profile and it will use the specified directory for compilation
Congratulations, your code is compiled on RAM drive. Is it still not fast enough? Is the installation process slow? Well, you could move your M2 directory to the ram drive too
You can change your maven configuration to ask it to move your local maven repository home (which is the place where all the artifacts you build and/or download are stored).
Update your settings.xml with the location of your local repository
Created: 11th July 2015