Use of SSD for serving webpages

 
Thread Tools Search this Thread
Special Forums Hardware Use of SSD for serving webpages
# 1  
Old 04-24-2010
Use of SSD for serving webpages

I have seen research articles and forum postings that demonstrate that SSDs are poor at reading large files: the larger the file, the slower the SSD compared to traditional hard disk drives. The difference with hard disk drives becomes apparent at medium size files, say 20KB. Does this mean that SSDs are suitable only for pages with lots of small page elements, such as icons and short pieces of text? Apart from price per GB, are SSD with the current level of technology suitable for web hosting environments?
# 2  
Old 05-28-2010
The difference comes down to random versus sequential access. A traditional mechanical drive gets very high transfer rates only when its heads don't move much, like when it's reading one large file beginning to end.

Imagine 100 512-byte files stored in different places on the hard drive, with the drive having to drop everything and reposition its heads to read each one; with seek times of 10ms, that's an entire second spent retrieving 50 kilobytes of data -- an order of magnitude or so slower than it's rated speed.

A solid state disk has no heads to reposition, hence almost no seek time, so blows the pants off mechanical drives for random access. But individual flash memory cells are a bit pokey so a mechanical drive still beats them for raw transfer once its heads are in place. Of course read speeds can be improved in either just by throwing more money at them, more things running parallel in either gets better speed.

Both of these situations assume no cache, of course. Given enough memory the system will just cache everything after its first load to make all seeking and transfer rates irrelevant. And tiny files are, well, tiny, unless you have millions of them.

One thing SSD's are terrible for is frequent writing. Writing to flash is slow and inefficient, and gradually wears them out. Hard drives wear out too of course, but there's a world of difference between "this drive will last a couple years continuous use, no matter what you do to it" and "you could kill this drive in a week if you treat it badly enough". DRAM-based SSD's are free from this of course.

Last edited by Corona688; 05-28-2010 at 04:47 PM..
# 3  
Old 05-29-2010
Thank you for your response. I have in the meantime found some sources that indeed make it evident that SSDs are not ready for hosting environments yet, ie there is no real business benefit, apart from the lower heat dissipation.
The environment that we were considering SSDs for is largely read-only, so web pages that are dynamically generated (PHP/SQL).
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Scripts to Interact with Webpages

Hi, Is it possible to have a script to interact with webpages. I want to create a script that logs a user into a specific site, and is able to get/post information. Would anyone give me instructions on how it's should be done, and where I can find information on starting it out. I know... (2 Replies)
Discussion started by: Pztar
2 Replies

2. Shell Programming and Scripting

Checking for Apache and serving a page

hi i was trying to run the HTML script and was unable to run it as the apache server was not loaded on my linux server.....how do i check whether A[pache has been installed in my server or not.....???? (1 Reply)
Discussion started by: kullu
1 Replies

3. UNIX for Dummies Questions & Answers

Methods of reducing latency with downloading webpages?

I've been wondering how I can reduce latency in downloading webpages. I've been pointed to network sockets (This guide in specific, beej's guide to network programming ) as some method to do so, but I can't figure out how to apply it in the way I need it. I am iterating through webpages like... (0 Replies)
Discussion started by: seagaia
0 Replies

4. UNIX for Dummies Questions & Answers

Hosting webpages(jspx) on Linux

Hi guys, I have developed a small website using jspx pages. Now i want to host the website to a server which is a linux machine. The linux machine which i m referring to is already hosting some web pages(jspx) through a web server Which is running at port 8888. My first question would be... (0 Replies)
Discussion started by: pinga123
0 Replies

5. UNIX for Dummies Questions & Answers

Fedora9 5-NIC's Serving I-net to WinXp

Im trying to use a CISCO WiFi-BRIDGE and Fedora9 to connect to an I-net connection down the road. Then use the Fedora box to route the connection to 4-Xp workstations using the remaining 4 NIC's in the box. My paln is to eventually connect my home network/I-net to my work network 1.5miles down... (0 Replies)
Discussion started by: Solomen
0 Replies

6. UNIX for Dummies Questions & Answers

Application Serving

Hi, I'm fairly new to UNIX and am looking at the potential of using UNIX servers as Application Servers (similar to what is done by Citrix Metaframe and Terminal Services in windows) does anyone know whether this is possible or am I firing in the dark? Thanks. (1 Reply)
Discussion started by: tombobs
1 Replies

7. UNIX for Dummies Questions & Answers

Threaded Discussions for Webpages

Dear All, I run a website for a non-profit. Does anyone know where I can get free or cheap software to run threaded discussions for our website? Our website is obviously running off a unix platform. Thanks (4 Replies)
Discussion started by: evertk
4 Replies
Login or Register to Ask a Question