vote up 6 vote down star
4

I'm trying to put together a business case for getting every developer in our company an Intel SSD drive.

The main codebase contains roughly 400,000 lines of code. My theory is that since the code is scattered about in maybe 1500 files, an SSD drive would be substantially faster for compiles. The logic being that many small reads really punishes the seak-time bottle-neck of a traditional hard-drive.

Am I right? Is SSD worth the money in productivity gains by reducing the edit/compile cycle time?

flag

What code are you compiling? C/C++/Java/other? How frequently do you have to compile all 1500 files? – sigjuice Apr 7 at 3:09
I second the question of Sigjuice, the language, and even the IDE you are using can matter to know if it is caching a part of the compiled files. – elhoim Oct 6 at 21:38

13 Answers

vote up 4 vote down check

How much time does it take right now? Buy one to see how you'd gain by this, check the time against the price of all these still-very-expensive SSD and see whether it is worth it or no.

The main business case for SSD is generally that they have no moving parts and are exactly what you need for a laptop... You can have a better bandwidth by having several drives instead of just a single one.

Any someone else said, if the bottleneck is compile time, you have a bigger problem than just I/O time for compiles.

link|flag
It takes about 40 seconds do a full recompile from a RAM disk. About 2-3 minutes on a hard-disk. I want to be able to get a hard-disk compile time of around 1 minute, if I can get it. – Simon Johnson Feb 1 at 0:41
I don't understand your last sentence. Most of my compile time is I/O time. The I/O (reading the source files) is usually the bottle neck. – Sean Mar 16 at 19:34
vote up 5 vote down

@Bill Karwin

Thanks for your elaboration. In a way, the problem is not the compile time itself, it is the fact that a long compile time leads to distraction which breaks your "flow."

If a compile takes longer than a minute, then you start to read your e-mail, browser Reddit, read Slashdot, write another paragraph in the specification you need to finish for Monday.

Three minutes later (the compile actually took a minute and thirty seconds, but because you got distracted the time until you actually notice this is much later) you realise the compile is done.

Now your flow is broken and there is a visible mental cost of getting back in to the flow.

That is the incidental productivity problem I'm trying to solve.

link|flag
I have made this argument numerous times over the years - most of the time with a good outcome (faster hardware for myself and people working for me). – Joe Erickson Feb 1 at 1:18
This is not a problem best solved with technology. Today it's the compile-time, tomorrow it'll be some other excuse. Your developers need to be more focused and manage their time and attention better. – Bill Karwin Feb 1 at 1:19
I agree... it's actually surprising to me that you have to explain this. – pbz Jun 8 at 16:02
@Bill And how do you propose to do this? 5 whip lashes if your developer loses focus? :) If you have a magic formula that allows us not to get distracted while waiting on the compiler please let us know. – pbz Jun 8 at 16:04
vote up 3 vote down

If your development bottleneck is that of I/O seek time during compiles, you're definitely doing software engineering wrong.


To elaborate:

Most programming involves a lot of work other than actual compiles:

  • Requirements analysis
  • Designing the solution
  • Coordinating with other team members to understand the interfaces of their components
  • Typing in the code
  • Designing and coding test suites
  • Running test suites and analyzing results
  • Committing code to source code repository
  • Documenting work
  • Reading and writing bug logs
  • Meetings, emails, and IM

Suppose the time you spend waiting for a compile is actually only 2% of each developer's day (even that is an overestimate). If you can increase the throughput of your compiles and cut compile time in half, now compiles are 1% of each developer's day instead of 2%. Not a huge change, and perhaps not the best use of $1000 per developer.

One way to look at it is how long it takes to pay off. Assuming a $100K salary, a $1K SSD drive that increases developer productivity by 1% pays off in a year. But the developer would have to be writing code like they were working in a sweat-shop, every day, for a year.

Instead, if you can invest the $1K per developer into some training to make one of the other work tasks I listed above more productive, you might get much better bang for the buck.

Or else use that money to hire someone to offload some work from the development team (e.g. QA Tester, Support Analyst, Sales Engineer, IT Technician, Project Manager, or Office Assistant).

Another suggestion: studies show that if you improve the workers' environment, it results in a 10% productivity improvement. It can be an expensive improvement, or something as simple as some wall art and houseplants. It doesn't matter -- it tends to result in +10% productivity improvement even for a modest improvement to the environment.

I suggest getting the office carpets shampooed, and clean up some of the accumulation of empty boxes and junk.

link|flag
Can you elaborate on this? If I have a series of files scattered randomly across the disk, surely this would have an affect? – Simon Johnson Feb 1 at 0:37
How many times per compile do your files have to be read? And how long takes the compile itself? – Leonidas Feb 1 at 0:38
A full recompile from a ramdisk takes about 40 seconds. It takes about 2-3 minutes from a hard-disk. – Simon Johnson Feb 1 at 0:40
$1k? The Intel SSDs are less than half that. – Sean Mar 16 at 19:53
@Sean: No doubt they are coming down in price all the time. – Bill Karwin Mar 16 at 20:18
vote up 3 vote down

Joel Spolsky says it's "totally worth it" - http://www.joelonsoftware.com/items/2009/03/27.html

Joel didn't have much luck with compile times, but if you know (by evidence) that disk i/o is the bottle neck in your compile times, then a SSD should help.

Most engineers underestimate the cost of human (programmer) context-switching. Compile times under a minute greatly reduce human context-switching, and are worth the slightly higher hardware cost. Hardware is dirt cheap. People aren't.

link|flag
Joel actually said the opposite of that. "Suddenly everything was faster. Booting, launching apps... even Outlook is ready to use in about 1 second. This was a really great upgrade. But... compile time. Hmm. That wasn’t much better. I got it down from 30 seconds to ... 30 seconds." No compile love. – lo_fye Mar 29 at 5:48
Good point, I'll revise my answer. – Sean Apr 7 at 2:11
vote up 2 vote down

If you get 40 second builds from a RAM-disk (compared to 2-3 minutes on a HDD), then why don't you simply give all the developers an additional 2 Gigs of RAM and change your build (or even development) system to use a RAM-disk?

It's tons cheaper (at the moment) and RAM can be used for a lot of other tasks as well.

link|flag
1  
Good question that has a good answer. The ram-disk is unstable. You can lose data very easily. – Simon Johnson Feb 1 at 1:17
That's true, but maybe even redirecting only the output of the build to RAM disk can reduce the I/O-load considerably. All good build systems should be able to build outside the source tree anyway. – Joachim Sauer Feb 1 at 1:46
vote up 2 vote down

I feel that SSDs are currently too expensive to be worthwhile, and are particularly poorly suited for dev machines.

Reason #1: the write speeds on lower priced models are generally significantly slower than a traditional hard disk. This problem is especially amplified when it comes to very small files, which is exactly the thing you are dealing with when compiling. The reason for this is that a SSD must rewrite an entire block.

Reason #2: SSDs have a very limited amount of writes when compared to regular hard disks. They feature write-leveling algorithms but the lifetime in general will be much lower than a regular disk.

Reason #3: build tasks are generally limited by write operations, NOT by read operations

So to recap, if you are going to go SSD, make sure your company is doing research and buying good ones. There are a lot of garbage SSDs that have marginal read speed increases, and are actually much slower than regular disks when it comes to writing. The only thing you can be sure of is faster access time.

link|flag
vote up 1 vote down

Absolutely, but your productivity gains are going to depend on the particular drive you buy. I would benchmark your compile process on at least these two drives:

Intel X25-M

OCZ Apex

And don't exclude speedups to other aspects of work such as launching programs and exploring folders from the equation. If you can create a video or live demo of work using a new drive that demonstrates how much faster things go, that should be effective.

link|flag
vote up 1 vote down

There's not enough information to answer the question. In particular:

  • How long does a normal (incremental) rebuild take?
  • How long does a full build take?
  • How many times a day does a developer do each of those?

Once you know that, you can measure (or guess) the difference in time per day an SSD-based build will take and thus the savings they'll represent.

If the build environment is well engineered, then the incremental build should be super-quick irrespective of the total number of files in the project. If that's not the case, then it's likely to have a bigger win than faster hardware.

link|flag
FFS I dont think he is interested in exact calculations. Just an average difference. – Ctrl Alt D-1337 Feb 1 at 1:11
vote up 1 vote down

for long compiles, first try ccache. it might give you more of a speedup than throwing hardware at the problem.

link|flag
Cool suggestion, but Simon didn't say he was using C/C++. – Bill Karwin Feb 1 at 8:18
Is there a java version of this? – Nathan Feger Mar 19 at 14:43
vote up 1 vote down

If you are doing this on a desktop, you might consider getting a battery-backed RAM RAID controller with gobs of RAM. That'll improve your read/write times tremendously, while still preventing loss of data.

link|flag
vote up 1 vote down

We have been doing some SSD testing on compile times for our monstrous code base. Previously a complete debug build from the commandline would take approx one hour. We started using two SSDs with RAID 0.

After changing to the new drives there was pretty much no change to compile times, which was a disappointment. One vast improvement was the speed of completing general tasks (i.e. launching apps, large file copies etc).

If your budget will stretch I would recommend SSDs for developer machines. They wont make much difference to compile times, but they will make vast improvements elsewhere which will reduce time wasted on non-development tasks.

link|flag
vote up 0 vote down

My boss tells me that back in the day (developing on Windows 3.0) he got a huge speed increase from putting precompiled headers (and possibly object files) onto a RAM disk, instead of being on a slow hard disk at the time. I haven't seen any programming-related benchmarks for SSDs or otherwise, but I'd be very interested in them.

Here are some benchmarks for SSDs in normal operations:

http://techreport.com/articles.x/16291/6

Which of these would correspond most to compiling stuff?

link|flag
I actually do this. I have Superspeed software's RAM disk that does exactly this. The problem is that it is unstable. You have to be ultra-disciplined with your commits or you'll lose data. – Simon Johnson Feb 1 at 0:38
vote up 0 vote down

There probably isn't a business case for it. For VS 2008 and C# at least, we've found that if you have a fast disk then an SSD will probably help very little, if at all. A faster CPU will make a big difference though.

I have provided data to back this up in my anser to the related question on Stack Overflow: SSD drives and visual studio IDE. Big improvements ? Real usage stories, no theory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.