SSD (Intel 530) read/write speed very slow with RAID 10

While the other answer here beings up some points, your specific issues are due to platform limitations and OS configuration: You’re throughput-limited by the use of consumer SATA SSDs on an HP Smart Array P410 RAID controller. SATA disks run at 3.0Gbps (3G) on these controllers rather than 6.0Gbps (6G). So that’s a barrier that … Read more

SSD for swap on Ubuntu server

Are you hitting swap? Generally, the better solution is to avoid that entirely, or at least make it so that things which are swapped out are genuinely not in active use, so that the speed doesn’t matter. Put your money into more RAM. This is particularly true because while high-end SSD drives may improve performance, … Read more

Automatically mount SSD instance storage on AWS EC2 in Ubuntu 16.04

The 200GB SSD disk that you see is called Instance storage (or ephemeral storage) and is destroyed everytime you stop the instance and created new every time you start the instance. That means two things: Don’t store any precious data you want to retain over stop/start – it will be all gone when you stop … Read more

How to determine number of write cycles or expected life for SSD under Linux?

Intel SSDs do keep statistics on total writes and how far through it’s likely lifespan it is. The following is from an Intel X25-M G2 160GB (SSDSA2M160G2GC) # smartctl -data -A /dev/sda smartctl 5.40 2010-10-16 r3189 [x86_64-redhat-linux-gnu] (local build) Copyright (C) 2002-10 by Bruce Allen, http://smartmontools.sourceforge.net === START OF READ SMART DATA SECTION === SMART … Read more

Potential pitfalls associated with securely deleting SSD disks

ATA Secure Erase is part of the ATA ANSI specification and when implemented correctly, wipes the entire contents of a drive at the hardware level instead of through software tools. Software tools over-write data on hard drives and SSDs, often through multiple passes; the problem with SSDs is that such software over-writing tools cannot access … Read more

Is post-sudden-power-loss filesystem corruption on an SSD drive’s ext3 partition “expected behavior”?

You’re both wrong (maybe?)… ext3 is coping the best it can with having its underlying storage removed so abruptly. Your SSD probably has some type of onboard cache. You don’t mention the make/model of SSD in use, but this sounds like a consumer-level SSD versus an enterprise or industrial-grade model. Either way, the cache is … Read more