vote up 1 vote down star
1

What is the fastest way (Algorithm) to generate 500,000 static html files from DB?

And is it a good practice to put all this files in single folder? or create hierarchically for this files?

We want to handle about 6,000,000 concurrent hit, so the static files will be a good solution for that. the source DB will be simple flat table without JOINS.

We want to generate this files from single table contains 500k records. the file names will be first field from this table. the HTML file will contains to display the data about 900 byte.

flag

7 Answers

vote up 0 vote down

500.000 entries each of them approximately 1k in size? So we are talking about 500 MByte of data. If possible I would simply put the whole thing on a ramdisk, if you need filesystem capabilities, keep it in memory as an ordered structure (hastable, array of some sort) if you don't. Is there a specific reason, why you don't store the results in a temporary database table? (SQLite)

link|flag
I think file system can handle huge number of concurrent users about 6,000,000 users (hits). so the hashtable idea is great. but what if we make the users just request files they want without any processing overhead. the solution based on using javascript to request this files based on user input (without any server side code) to maintain (speed ,performance and reliability). – Ammroff Jul 1 at 16:17
If you have enough RAM, the system will cache the files in it, so using a ramdisk won't be any faster. It will just mean that if you have to reboot for some reason, you have to regenerate the data again, which might mean serious downtime. – rjmunro Nov 4 at 0:27
vote up 1 vote down

If I were to do this, I'd store the generated files in a hierarchy, based on the file name (IFF the filenames are sufficiently well distributed), so "onefile.html" gets stored in "o/n/e/onefile.html" and "anotherfile.html" as "a/n/o/anotherfile.html". Using three levels of storage isn't necessary, you may require four. Also, chunking the pathnames on a per-character basis may not be the best distribution, you may be better off using two or three characters, depending on how your distribution looks.

I've used similar storage schemes for received faxes for an electronic fax service in the past (using longer and longer prefixes of the destination fax number as pathname components).

I guess the reason you're looking at generating the flat files is to amortise the cost of generating the HTML?

link|flag
vote up 1 vote down

Why not just store the generated HTML in the database? It seems like you'll effectively be treating the file system as a database anyway - At least if you store the HTML in a database you can rely on the DBMS to optimise lookup performance (e.g. by caching recently queried HTML) and you can add indices and analyse query performance. Otherwise you'll just be hammering the file system instead; i.e. moving the problem elsewhere.

Also, I would suggest taking a step back and seeing where the bottleneck currently lies. Storing HTML (presentation layer data) is not an elegant solution - If the real problem is due to query performance perhaps consider introducing denormalised tables into your schema containing intermediate results, from which you can quickly generate HTML.

link|flag
Aren't most filesystem drivers tuned for caching files? When all you have is a RDBMS, all your problems look like a query. google.com/search?q=filesystem+tuning – Roger Pate Jun 30 at 23:04
vote up 1 vote down

Hierarchically would be best for performance because many applications will loop though all the files in a single directory. For instance, Windows Explorer. And that will make the application slow.

The fastest way to extract them would be to write a small C program using the database's headers and fwrite() etc...

F.Y.I.

NTFS can hold 4,294,967,295 files: http://en.wikipedia.org/wiki/NTFS EXT3 can hold VolumeByteSize/2^13 files: http://en.wikipedia.org/wiki/Ext3#cite_note-0

link|flag
vote up 3 vote down

Even if your file system can "cope" with 500,000 files in a single directory, it's unlikely to be able to perform well. Even if it can perform well, it's likely to be hard for humans to manage those files.

I'd definitely put them in a hierarchy.

As for the fastest way to generate them - you've asked for an algorithm, but without stating what you want it to do. There are any number of technologies you might want to use - whichever you're most comfortable with is probably the best bet - and any number of ways of approaching the task, depending on what it really consists of.

link|flag
We want to generate this files from single table contains 500k records. the file names will be first field from this table. the HTML file will contains <table> to display the data . about 900 byte. – Ammroff Jun 30 at 22:08
1  
So what sort of "algorithm" are you thinking of? It seems like a pretty simple batch job to me. Read data, write HTML, read data, write HTML... – Jon Skeet Jun 30 at 22:21
vote up 0 vote down

Depends entirely on how they have to be generated and how complicated the DB needs to be used to do it.

A hierarchy is preferred.

Are you sure these must be entirely static?

link|flag
We want to handle about 6,000,000 concurrent hit, so the static files will be a good solution for that. the source DB will be simple flat table without JOINS. – Ammroff Jun 30 at 22:01
vote up 0 vote down

There is a file limit (atleast in linux, around 32k items) so no I wouldn't think it's smart to do that.

NTFS has a limit of 4,294,967,295 files in a folder.

link|flag
OK, what if we use NTFS? – Ammroff Jun 30 at 21:56
3  
that's not "linux", that's EXT3. Linux supports other file systems that don't have the limit (XFS for example). – andri Jun 30 at 22:01
I mean using NTFS under windows 2003 or 2008. – Ammroff Jun 30 at 22:04
2  
NTFS may have a high theoretical limit, but in practice it bogs way, way down if you get more than a few thousand files in a single directory. – Joe White Jun 30 at 22:22
Is that a limitation of NTFS or a limitation of Explorer.exe though? – Michael Stum Jul 1 at 9:54
show 1 more comment

Your Answer

Get an OpenID
or

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