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

I am working on a project where Java's native serialization is slow, so we want to move to implementing Externalize interface on the classes for superior performance.

However, these classes have lots of data members, and we have realized its easy to make mistakes while writing these two methods. We are just reading/writing all of the members of the class in these functions, nothing fancy. Is there some way of generating the readExternal() writeExternal() blocks for externalize automatically in an offline process, or at compile time?

I had a look at http://projectlombok.org/, and something like that would have been ideal.

Similarly, we would like to keep these classes immutable, but immutable classes can not implement the externalizable interface - we want to use the proxy class pattern from effective java - having that generated would be useful too.

share|improve this question

1 Answer

I am working on a project where Java's native serialization is slow

How slow? Why? Making it faster with lots of hand coding is most unlikely to be either economically feasible or maintainable in the long run. Serialization overheads should really come down to time and space bounds in transmisssion. There's no particular reason why Java's default serialziation should be startlingly slower than the result of all the hand coding you are planning. You would be better off investigating causes. You might find for example that a well-placed BufferedOutputStream would solve all your problems.

share|improve this answer
It uses reflection at run time for serialization, which is always going to be slower. Check out code.google.com/p/thrift-protobuf-compare/wiki/Benchmarking for comparison of different serialization methods. – MrLebowski Aug 17 '11 at 18:06
@MrLebowski I'm aware of its use of Reflection but in practice does that really dominate network & disk bandwidths? and did they include that in the tests? or just serialize to ByteArrayOutputStreams for example? You may well find that all this is completely academic. – EJP Aug 18 '11 at 0:04
Thanks for pointing that out. Check stats here: pastebin.com/yi4JhhVb --- So total serialization related time increase moving from externalizable to serializable is just around 1ms - it is the increase in network time that is bad. I am trying out compressed stream and see if it helps. Still automated externalizable or some better automated serialization will be best. – MrLebowski Aug 20 '11 at 1:20
1  
@MrLebowski Such a difference is most probably much smaller than the measurement error. Unless you used something like caliper. – maaartinus Jun 21 '12 at 10:22
1  
@maaartinus, serialization does not use reflection actually, it uses sun.misc.Unsafe and it's quite good at that (storing field offsets). However it's an order of magnitude slower than manual serialization most of the time, the default serialization has to write the field names, class names, field types and so on. It uses recursion to scan the object-graph. There are some bottlenecks w/ concurrent invocation as well(i.e. multicore, etc). If the serialization is identified to be bottleneck, it should be replaced -- bottom line, while convenient it's not exactly fast. – bestsss Jan 27 at 1:44
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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