Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a quad tree that I'd like to be able to use inside of a mapper. I need to perform lookups in the tree hundreds of millions of times.

The tree is built up by scanning through a moderately large file (cf Data structure to perform fast GPS lookups? ). Building the tree takes about 1 second.

One way I see to do it: Serialize the quad tree (how?), add it as a string in the configuration properties, and then have the Mapper class deserialize it. I suspect this will be slow (the serialized tree will probably need about 30MB).

Other suggestions?

share|improve this question
Use java's serialization interface and write the object through an object output stream to hdfs – Thomas Jungblut Feb 5 at 6:19
interesting, I'll give it a try. I'm not sure how to properly serialize the tree, should be doable. – rcompton Feb 5 at 6:26
Basically, you just have to implement the Serializable interface in your tree node and the structure that holds the root. Everything will be taken care of the Java serialization. (Beware it is slower than you would serialize it for yourself). – Thomas Jungblut Feb 5 at 9:07
i would suggest kryo (code.google.com/p/kryo) for serialization. our tests of kryo show a significant better performance than java serialization. another suggestion would be distributed cache files for hadoop. you can scan the file in the configuration of your mapper and a lot of work is done by hadoop for you (sending, serializing, etc.) To add such a file one has to use "DistributedCache.addCacheFile(PathToFileInHDFS, Configuration)" – Matthias Kricke Feb 5 at 9:53
@merando thanks for the suggestion. I've never serialized anything before (well, aside from .toString() and jsons) and I'm not entirely sure that this is the right approach. My problem is that calling the constructor on my quad tree is very expensive. It looks like with Kryo I'll have to implement KryoSerilizable which requires a method that will call the constructor. I was hoping it was possible to just stuff the whole object into some bytes and then read it again later (without the expensive constructor call). Is that possible? – rcompton Feb 12 at 20:16
show 2 more comments

closed as not a real question by Mitch Wheat, burning_LEGION, shadyyx, SztupY, Stephen Connolly Feb 5 at 12:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.