vote up 2 vote down star

I currently have a Java SAX parser that is extracting some info from a 30GB xml file. Presently it is

  • reading each xml node
  • storing it into a string object,
  • running some regexex on the string
  • storing the results to the database

For several million elements. I'm running this on a computer with 16GB of memory, but the memory is not being fully utilized. Is there a simple way to dynamically 'buffer' about 10gb worth of data from the input file? I suspect I could manually take a 'producer' 'consumer' multithreaded version of this (loading the objects on one side, using them and discarding on the other), but damnit, XML is ancient now, are there no efficient libraries to crunch em?

flag
I would do it in Perl. Just my 0.02$. – Sklivvz Sep 21 '08 at 21:08
Can you clarify what you mean by "dynamically buffer"? What should be buffered? I have a hard time coming up with a consistent answer... – Torsten Marek Sep 21 '08 at 21:19
Torsten: The input stream which I'm mining. I have 40 gb of data to consume, if I load 10 gb of it in memory, I expect it to be consumed faster. instead of manually loading it four times, I was hoping to have it loaded automatically. – Achille Sep 21 '08 at 21:51

10 Answers

vote up 1 vote down check

First, try to find out what's slowing you down.

  • How much faster is the parser when you parse from memory?
  • Does using a BufferedInputStream with a large size help?

Is it easy to split up the XML file? In general, shuffling through 30 GiB of any kind of data will take some time, since you have to load it from the hard drive first, so you are always limited by the speed of this. Can you distribute the load to several machines, maybe by using something like Hadoop?

link|flag
Increasing the BufferedInputStream size did indeed help, but I am limited to 2gb (the size comes off as a signed integer). – Achille Sep 22 '08 at 2:00
Are you using a 32bit or 64bit system? – Torsten Marek Sep 22 '08 at 20:38
vote up 3 vote down
  1. Just to cover the bases, is Java able to use your 16GB? You (obviously) need to be on a 64-bit OS, and you need to run Java with -d64 -XMx10g (or however much memory you want to allocate to it).

  2. It is highly unlikely memory is a limiting factor for what you're doing, so you really shouldn't see it fully utilized. You should be either IO or CPU bound. Most likely, it'll be IO. If it is, IO, make sure you're buffering your streams, and then you're pretty much done; the only thing you can do is buy a faster harddrive.

  3. If you really are CPU-bound, it's possible that you're bottlenecking at regex rather than XML parsing.

    See this (which references this)

  4. If your bottleneck is at SAX, you can try other implementations. Off the top of my head, I can think of the following alternatives:

    • StAX (there are multiple implementations; Woodstox is one of the fastest)
    • Javolution
    • Roll your own using JFlex
    • Roll your own ad hoc, e.g. using regex

    For the last two, the more constrained is your XML subset, the more efficient you can make it.

  5. It's very hard to say, but as others mentioned, an XML-native database might be a good alternative for you. I have limited experience with those, but I know that at least Berkeley DB XML supports XPath-based indices.

link|flag
vote up 2 vote down

No Java experience, sorry, but maybe you should change the parser? SAX should work sequentially and there should be no need to buffer most of the file ...

link|flag
vote up 2 vote down

SAX is, essentially, "event driven", so the only state you should be holding on to from element to element is state that relevant to that element, rather than the document as a whole. What other state are you maintaining, and why? As each "complete" node (or set of nodes) comes by, you should be discarding them.

link|flag
I am discarding them, I am simply trying to parse the data faster. – Achille Sep 21 '08 at 21:25
vote up 1 vote down

I don't really understand what you're trying to do with this huge amount of XML, but I get the impression that

  • using XML was wrong for the data stored
  • you are buffering way beyond what you should do (and you are giving up all advantages of SAX parsing by doing so)

Apart from that: XML is not ancient and in massive and active use. What do you think all those interactive web sites are using for their interactive elements?

link|flag
By ancient I meant to say 'been around for a while' -- and was hoping to find a library that mines it faster. – Achille Sep 21 '08 at 21:26
vote up 1 vote down

Are you being slowed down by multiple small commits to your db? Sounds like you would be writing to the db almost all the time from your program and making sure you don't commit too often could improve performance. Possibly also preparing your statements and other standard bulk processing tricks could help

Other than this early comment, we need more info - do you have a profiler handy that can scrape out what makes things run slowly

link|flag
I temporarily removed the database operations and it still takes a long time. Any suggestion on a java profiler? – Achille Sep 21 '08 at 21:38
sorry, not my world. Add that to your oginal post and enter a new question asking specifically for a java profiler (I'm sure the gurus are online and waiting) - good luck! – Oskar Sep 21 '08 at 22:27
vote up 1 vote down

You can use the Jibx library, and bind your XML "nodes" to objects that represent them. You can even overload an ArrayList, then when x number of objects are added, perform the regexes all at once (presumably using the method on your object that performs this logic) and then save them to the database, before allowing the "add" method to finish once again.

Jibx is hosted on SourceForge: Jibx

To elaborate: you can bind your XML as a "collection" of these specialized String holders. Because you define this as a collection, you must choose what collection type to use. You can then specify your own ArrayList implementation.

Override the add method as follows (forgot the return type, assumed void for example):

public void add(Object o) {
    super.add(o);
    if(size() > YOUR_DEFINED_THRESHOLD) {
        flushObjects();
    }
}

YOUR_DEFINED_THRESHOLD

is how many objects you want to store in the arraylist until it has to be flushed out to the database. flushObjects(); is simply the method that will perform this logic. The method will block the addition of objects from the XML file until this process is complete. However, this is ok, the overhead of the database will probably be much greater than file reading and parsing anyways.

link|flag
vote up 0 vote down

I would suggest to first import your massive XML file into a native XML database (such as eXist if you are looking for open source stuff, never tested it myself), and then perform iterative paged queries to process your data small chunks at a time.

link|flag
vote up 0 vote down

You may want to try Stax instead of SAX, I hear it's better for that sort of thing (I haven't used it myself).

link|flag
vote up 0 vote down

If the data in the XML is order independent, can you multi-thread the process to split the file up or run multiple processes starting in different locations in the file? If you're not I/O bound that should help speed it along.

link|flag

Your Answer

Get an OpenID
or

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