vote up 3 vote down star

I know there are some very good Perl XML parsers like XML::Xerces, XML::Parser::Expat, XML::Simple, XML::RapidXML, XML::LibXML, XML::Liberal, etc.

Which XML parser would you select for parsing large files and on what parameter would you decide one over another? If the one you would like to select is not in list then please suggest it.

flag
8  
XML? More than 15GB? Which genius came up with that brilliant idea? – Manni Oct 19 at 19:34
3  
> 15GB XML file? Just out of curiosity, what does a XML file of that size contains? – Darin Dimitrov Oct 19 at 19:34
3  
@Rachel - one would think if he alredy had the time to write 8 books, he'd also find some to stop and think how one day someone's gonna process his 15 gb file. – ldigas Oct 19 at 19:48
3  
I can think of several prominent figures in various industries who have written books, and also happen to have stupid ideas. Giving us this guy's resume is not a compelling argument that 15GB XML files are a good idea. – tster Oct 19 at 20:07
3  
@tster: LOL. No, his resume doesn't make the idea any better. But I guess Rachel's chances of convincing him otherwise do depend on his resume. – Manni Oct 19 at 20:26
show 15 more comments

7 Answers

vote up 14 vote down check

If you're parsing files of that size, you'll want to avoid any parser that tries to load the entire document in memory and construct a DOM (domain object model).

Instead, look for a SAX style parser - one that treats the input file as a stream, raising events when events and attributes are encountered. This approach allows you to process the file gradually, without having to hold the entire thing in memory at once.

link|flag
1  
To add meat to this answer, avoid XML::Simple like plague for any large data sets. – DVK Oct 19 at 20:10
Also, any reason why it's essentially a repeat of earlier Sinan's answer? :) – DVK Oct 19 at 20:12
I suspect that Sinan and I gave the same answer at the same time - when I first saw this question, there was no answer at all; While I wrote this, Sinan wrote his. – Bevan Oct 19 at 21:21
@Bevan: Exactly. It took me a while before I realized you had posted an answer as well because I was so pre-occupied with tracking down links to the modules mentioned in Rachel's post. By the time I realized we had essentially posted the same answer, I had a few upvotes and following on the heels of this morning's serial downvoting of a few of my answers, I selfishly wanted to hold on to my points. ;-) @DVK thanks for noticing. – Sinan Ünür Oct 19 at 21:47
2  
Agreed - my personal favourite is XML::Twig. I've processed XML streams with XML::Twig, ie. theoretically infinite GB :) – Mark Aufflick Oct 20 at 1:39
show 1 more comment
vote up 3 vote down

As you would expect I would suggest XML::Twig, which will let you process the file chunk-by-chunk. This of course assumes that you can process your file this way. It will probably be easier to use than SAX, as you can process the tree for each chunk with DOM-like methods.

An alternative would be to use the pull parser mode, which is a little similar to what XML::Twig offers.

link|flag
vote up 5 vote down

A SAX parser is one option. Other options that don't involve loading the entire doc into memory are XML::Twig and XML::Rules.

link|flag
vote up 2 vote down

I'm going for a mutated version of tster's answer above. Load the bloody thing into a DB (if possible, via direct XML import, if not, by using SAX parser to parse the file and produce loadable data sets). Then, use the DB as the data store. At 15G, you are pushing way beyond the size of data that should be manipulated on outside of DB.

link|flag
In fact, this my first advice to anyone who might have to manipulate and/or query the same data set multiple times. In this case, my focus would on getting any intermediaries out of the way between the raw data and the database. – Sinan Ünür Oct 19 at 21:49
vote up 3 vote down

For parsing such files I always used XML::Parser. Simple, accessible anywhere and working well.

link|flag
vote up 3 vote down

You could also consider using a database with XML extensions (see here for an example). You could do a bulk load of XML data into the database, then you can do SQL queries (or XQueries) on that data.

link|flag
I am using MySQL database and am not sure if we have this feature of putting direct XML into MySQL and querying XML out of the database. – Rachel Oct 19 at 19:34
vote up 9 vote down

With a 15 GB file, your parser would have to be SAX based because with such file sizes, simply being able to process the data is your first task.

I recommend you read XML::SAX::Intro.

link|flag
I do not have any other criteria, only thing is about size of data, also I will be receiving XML files that large as snapshot and frequency would vary a lot, so I, down the line, would have multiple snapshots of XML file like snapshot id 1, snapshot id 2 ...and parsing has to be done once file transferred is completed so there would be no streaming parsing of xml data, once xml file is completely transferred than only parsing has to take place. – Rachel Oct 19 at 19:20
8  
That may be true, but just because parsing must be done only with a complete file, doesn't mean that streaming parsing is out of the question. It's still a good idea to use a streaming parser with a very large file even when the entire document is sitting on a hard drive. – jprete Oct 19 at 19:27

Your Answer

Get an OpenID
or

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