Click here to Skip to main content
15,868,016 members
Articles / Programming Languages / XML
Article

The Performance Woe of Binary XML

Rate me:
Please Sign up or sign in to vote.
4.33/5 (17 votes)
9 Apr 2008CPOL8 min read 82.7K   17   18
Analysis on why binary XML doesn't solve the real issue of XML performance.

Introduction

Since its inception, XML has been criticized for the overhead it introduces into the enterprise infrastructure. Business data encoded in XML takes 5 to 10 times more bandwidth to transmit in the network, and proportionally more disk space to store. While most agree that verbosity is inherent to XML's way of encoding information (e.g., extensive use of tags and pointy brackets), the explanation of XML's perceived performance issue remains inconclusive. A popular belief is that since XML is human-readable text, it has to be slow and inefficient. By the same token, proponents of binary XML seem to suggest that a compact encoding format, most noticeably the binary XML, would automatically lead to better processing performance.

Does it make sense for doctors to prescribe medicine without a diagnosis? Whether those perceptions and beliefs have a grain of truth or not, one thing is certain: without a solid understanding of XML's performance issue, it will be difficult, if not impossible, to devise meaningful solutions. So in this article, I'll attempt to dissect XML's performance issue by focusing on the following three key questions:

  1. Does XML have a performance issue?
  2. What is the real culprit behind XML's slow performance?
  3. Can binary XML fundamentally solve the problem?

Performance is Not an XML Issue Per Se

In networking system design, the OSI (Open System Interconnect) stack is the standard model that divides the functions of the network into seven layers. Each layer only uses the layer below, and only exports functionalities to the layer above. Compared with monolithic approaches, the advantages of OSI's layered approach are the robustness, resilience, and extensibility of the networking system in the face of rapid technology evolution. For example, any Voice over IP application will work without knowing the physical layer of the networks (e.g., using copper, fiber cable, or Wi-Fi) or the data link layer (e.g., Ethernet, Frame Relay, or ATM).

Likewise, we can take a similar layered approach to modeling XML-based applications. Figure 1 is a simplified view of this "XML protocol stack" consisting of three layers: the XML data layer, the XML parsing layer, and the application layer. The application layer only uses functions exported by the XML parsing layer, which translates the data from its physical representation (XML) into its logical representation (the infoset).

Figure1.jpg

Figure 1. XML Application Stack

Several observations can be made concerning the perceived performance issue of XML. First and foremost, because the XML application can only go as fast as the XML parsers can process XML messages, performance is actually not an issue of XML per se, but instead an issue of the XML parsing layer. If an XML routing application (assuming minimum overhead at the application layer) can't keep pace with incoming XML messages at a gigabit per second, it's most likely because the throughput of XML parsing is less than that of the network. Consequently, the correct way to boost the application performance is to optimize the XML parsing layer. Just like tuning any software application, the best way to do it is to discover and then find ways to reduce or eliminate the overhead in XML parsers.

Object Allocation - The Real Culprit

To get a feel of the performance offered by current XML parsing technologies, I benchmarked the parsing throughput of the two types of widely used XML parsers: Xerces DOM and Xerces SAX. The benchmark applications are quite simple. They first read an XML document into memory, and then invoke parser routines to parse the document for a large number of iterations. The parsing throughput is calculated by dividing the file size by the average latency of each parsing iteration. For SAX parsing, the content handler is set to NULL. Several XML documents in varying sizes, tagginess, and structural complexity were chosen for the benchmark. The results, produced by a two-year old 1.7GHz Pentium M laptop, are summarized in Figure 2. The complete report -- which includes test setup, methodology, and code -- is available online here.

Figure2.jpg

Figure 2. Parsing Performance Comparison Between DOM, SAX, Pull, and VTD-XML

The benchmark results are quite consistent with the well-known performance characteristics of DOM and SAX. First of all, the raw parsing throughput of SAX, at between 20MB/sec~30MB/sec, is actually quite respectable. However, by not exposing the inherent structural information, SAX essentially treats XML as CSV with "pointy brackets," often making it prohibitively difficult to use and unsuitable as a general-purpose XML parser. DOM, on the other hand, lets developers navigate in-memory tree structures. However, the benchmark results also show that, except for very small files, DOM is typically three to five times slower than SAX. Because DOM parsers usually use SAX internally to tokenize XML, by comparing the performance differences, it's clear that building the in-memory tree structure is where the bottleneck is. In other words, allocating all the objects and connecting them together dramatically slows everything down. As the next step, I ran JProfiler (from ej-Ttechnologies) to identify where DOM and SAX parsing spend all the CPU cycles. The results confirmed my early suspicion that the overhead of object allocation overwhelmingly bottlenecks DOM parsing and, to a lesser (but still significant) degree, SAX parsing as well.

Some readers may argue that DOM -- only an API specification -- doesn't preclude efficient, less object-intensive, implementations. Not so. The DOM spec is, in fact, based completely on the assumption that the hierarchical structure consists entirely of objects exposing the Node interface. The most any DOM implementation can do is alter the implementation of the object sitting behind the Node interface, and it's impossible to rip away the objects altogether. So, if the object creation is the main culprit, the DOM spec itself is the accomplice that makes any performance-oriented optimization prohibitively difficult. This is why, after the past eight years and countless efforts by all major IT companies, every implementation of DOM has only seen marginal performance improvement.

Binary XML Solves the Wrong Problem

Can binary XML fundamentally solve the performance issue of XML? Well, since the performance issue belongs to XML parsers, a better question to ask is whether binary XML can help make parsing more efficient. The answer has two parts: one for SAX, and the other for DOM.

Binary XML can improve the raw SAX parsing speed. There are a lot of XML-specific syntax features that binary XML can choose not to inherit. For example, binary XML can replace the ending tags with something more efficient, entirely avoiding attributes so SAX parsing no longer does uniqueness checking, or find other ways to represent the document structure. There are many ways to trim CPU cycles off SAX's tokenization cost. Proponents of binary XML often cite up to a 10x speed-up for the binary XML version of SAX over text XML.

However, they ignore the simple fact that SAX has serious usability issues. The awkward forward-only nature of SAX parsing not only requires extra implementation effort, but also incurs performance penalties when the document structure becomes only slightly complex. If developers choose not to scan the document multiple times, they'll have to buffer the document or build custom object models. In addition, SAX doesn't work well with XPath and, in general, can't drive XSLT processing (binary XML has to be transformed as well, right?). So pointing to SAX's raw performance for binary XML as a proof of binary XML's merit is both unfair and misleading. The bottom line: for an XML processing model to be broadly useful, the API must expose the inherent structure of XML.

Unfortunately, binary XML won't make much difference improving DOM parsing. This is for the simple reason that DOM parsing generally spends most CPU cycles on building in-memory tree structures, not on tokenization. So, the speed-up of DOM due to faster SAX parsing is quite limited. In other words, DOM parsing for binary XML will be slow as well. Going one step further, an object-graph based parser will have the same kind of performance issue for virtually any data format such as DCOM, RMI, or CORBA. XML is merely the scapegoat.

Reduce Object Creation - The Correct Approach

From my benchmark and profiling results, it's quite easy to see that the best way to remove the performance bottleneck in XML parsing is to reduce the object-creation cost of building the in-memory hierarchical structure. The possibilities are, in fact, endless, and only limited by the imagination. Good solutions can and will emerge, and among them is VTD-XML. To achieve high performance, VTD-XML approaches XML parsing through the two object-less steps:

  1. Non-extractive tokenization, and
  2. Hierarchical-directory-based random access

The result: VTD-XML drastically reduces the number of objects while still exporting the hierarchical structure to application developers and significantly outperforming SAX. (See Figure 3.)

Figure3.jpg

Figure 3: Memory Usage Comparison Between DOM and VTD-XML

Conclusion

To summarize, the right way is to find better parsing techniques beyond DOM and SAX that significantly reduce the object-creation cost of building XML's tree structure. Binary XML won't fundamentally solve XML's performance issue because the problem belongs to XML parsers, not XML.

History

  • 23 February, 2008 -- Original version posted.
  • 4 March, 2008 -- Article content updated.
  • 18 March, 2008 -- Article content updated.
  • 09 April, 2008 -- Article content updated.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer XimpleWare
United States United States
Jimmy Zhang is a cofounder of XimpleWare, a provider of high performance XML processing solutions. He has working experience in the fields of electronic design automation and Voice over IP for a number of Silicon Valley high-tech companies. He holds both a BS and MS from the department of EECS from U.C. Berkeley.

Comments and Discussions

 
Question[My vote of 2] Performance not an XML Issue ? Pin
Alejandro Xalabarder12-May-10 14:32
Alejandro Xalabarder12-May-10 14:32 
AnswerRe: [My vote of 2] Performance not an XML Issue ? Pin
Jimmy Zhang12-May-10 14:50
Jimmy Zhang12-May-10 14:50 
GeneralRe: [My vote of 2] Performance not an XML Issue ? Pin
Alejandro Xalabarder12-May-10 15:40
Alejandro Xalabarder12-May-10 15:40 
GeneralSo... Your Java Sucks. Pin
ShannonBarber31-Mar-09 3:57
ShannonBarber31-Mar-09 3:57 
GeneralRe: So... Your Java Sucks. Pin
Jimmy Zhang12-Jun-09 7:51
Jimmy Zhang12-Jun-09 7:51 
QuestionBinary XML? Pin
notmasteryet27-Jan-09 7:36
notmasteryet27-Jan-09 7:36 
AnswerRe: Binary XML? Pin
Jimmy Zhang27-Jan-09 10:38
Jimmy Zhang27-Jan-09 10:38 
GeneralPerformance and memory allocation Pin
Neville Franks9-Apr-08 19:26
Neville Franks9-Apr-08 19:26 
GeneralRe: Performance and memory allocation Pin
Jimmy Zhang10-Apr-08 7:05
Jimmy Zhang10-Apr-08 7:05 
GeneralRe: Performance and memory allocation Pin
Neville Franks11-Apr-08 21:27
Neville Franks11-Apr-08 21:27 
GeneralRe: Performance and memory allocation Pin
Jimmy Zhang12-Apr-08 9:55
Jimmy Zhang12-Apr-08 9:55 
QuestionObjects or Heap Manager? Pin
Matthew Faithfull20-Mar-08 0:12
Matthew Faithfull20-Mar-08 0:12 
AnswerRe: Objects or Heap Manager? Pin
Jimmy Zhang20-Mar-08 7:59
Jimmy Zhang20-Mar-08 7:59 
AnswerRe: Objects or Heap Manager? Pin
Jimmy Zhang20-Mar-08 8:05
Jimmy Zhang20-Mar-08 8:05 
GeneralJust a thought here.. Pin
fresi23-Feb-08 23:44
fresi23-Feb-08 23:44 
GeneralRe: Just a thought here.. Pin
Jimmy Zhang24-Feb-08 7:17
Jimmy Zhang24-Feb-08 7:17 
GeneralInline images Pin
Priyank Bolia23-Feb-08 17:15
Priyank Bolia23-Feb-08 17:15 
GeneralRe: Inline images Pin
Jimmy Zhang23-Feb-08 19:16
Jimmy Zhang23-Feb-08 19:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.