Why are you referring to SSD drive and sequential writes? The main reason
why SSD are used are their high IOPS values! OK, I am talking from the
storage vendor perspective, and not from the home-user perspective...
I am talking sustained maximum write speed. Does not need to be
sequential, but it is the worst-case for the lifetime. Of course
a lower rate with small writes that still result in an effective
write rate (because of larger internal block size) of 200MB/s
also hits this worst case.
And while the high IOP is one desirable parameter, it is not
the only one. For example an SSD can well be used for an external
filesystem journal. This is a mostly write and mostly sequential
write operation. However when you recover the journal the IOPs
are the bottleneck. So you may want to put your journal on the
SSD to bring recovery speed down dramatically. Or rollback
speed if it is a database journal.
For a home-user, OTOH, you may actually hit your figure. But
home users do not have 24/7 anyways.
So while your 150 years figure is certainly good to boost
sales, it is unusable to evaluate practical endurance. For
that you need to look at the particular worst case.
And there is a second problem. On power-fail a SSD can
corrupt areas not written to because of large internal
block sizes. That means in high-reliability applications
you actually can only write it in a sequential fashion
and without filesystem as everything else is dangerous to
your data.
The short summary is that SSDs have write issues that
you need to understand in order to decide whether to
use them or not. They shine on read IOPs though.
Arno