vote up 6 vote down star
3

I haven't found many ways to increase the performance of a Java application that does intensive XML processing other than to leverage hardware such as Tarari or Datapower. Does anyone know of any open source ways to accelerate XML parsing?

flag

37% accept rate
1  
You will get better answers if you elaborate on what kind of XML processing you're doing. Are you constrained by a specific API (DOM)? How much of the XML do you need to store in memory? How many different schemas do you need to support? Can you trust XML to be valid?.. – ykaganovich Jun 6 at 20:39
1  
Related question: 'Fastest XML parser for small, simple documents in Java', stackoverflow.com/questions/530064/… – Jonik Jun 6 at 21:49

4 Answers

vote up 5 vote down check

Take a look at Stax (streaming) parsers. See the sun reference manual. One of the implementations is the woodstox project.

link|flag
1  
xml.com/pub/a/… has a good overview of XML parser speeds. Woodstox looks pretty good. – Sam Barnum Jun 7 at 2:14
STAX is the way to go and Woodstox is supah fast. – casey Aug 24 at 19:13
vote up 0 vote down

Piccolo claims to be pretty fast. Can't say I've used it myself though. You might also try JDOM. As ever, benchmark with representative data of your real load.

It partly depends on what you're trying to do. Do you need to pull the whole document into memory, or can you operate in a streaming manner? Different approaches have different trade-offs and are better for different situations.

link|flag
2  
Piccolo seems to trade speed for correctness, which may or may not be what you want. (cafeconleche.org/SAXTest/paper.html#S4.2.4) – Peter Štibraný Jun 6 at 20:11
1  
In all fairness, deviations are rather unlikely to affect cases where performance matters (which tend to be simple(r) use cases) -- SAXTest tends to focus on complicated cases of DTD usage and correctness. But on the other hand, while Piccolo may have been faster in 2004, it hasn't been developed much, and others have caught up, and some surpasses it (Xerces is as fast, Woodstox and especially Aalto faster) – StaxMan Aug 3 at 6:49
vote up 0 vote down

Depending on the complexity of your XML messages you might find a custom parser can be 10x faster (though more work to write) However if performance is critical, I wouldn't suggest using a generic parser. (Also I wouldn't suggest using XML as its not designed for performance, but that's another story, .. ;)

link|flag
2  
Writing custom XML parser is time consuming and error prone process. Getting XML right isn't easy, especially if you want to parse XML documents from the wild. (cafeconleche.org/SAXTest) – Peter Štibraný Jun 6 at 20:04
This is all true, which is why its not a good idea most of the time. However if speed is critical you can get a 10x improvement. – Peter Lawrey Jun 7 at 6:59
Huh? Have you ever actually tried doing this? Writing a custom parser that is ANY faster is non-trivial. Fastest existing parsers parse with 30-60 MBps rate; not much slower than you can decode plain UTF-8 text. 10x, no way, absolutely not. Feel free to try, get some numbers. :-) – StaxMan Aug 3 at 6:53
vote up 0 vote down

Check Javolution as well

link|flag
1  
I disagree. Javolution's XML "parser" does not check ANY problems with xml (duplicate attributes), doesn't handle namespaces, doesn't implement any standard API. And is not even faster. – StaxMan Aug 3 at 6:50

Your Answer

Get an OpenID
or

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