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

Background

In my java application, I have reasonably large amounts of data sitting in ConcurrentHashMap.

Now, I need to give this data to a consumer client in XML format when the client connects to my application via a TCP port.

So in a nutshell - I have a TCP Server that a client connects to. As soon as the client connects, I have to read all the data in the Map and spit it out in XML format (custom) on the TCP port. The data in the Map keeps getting updated automatically from somewhere else using worker threads etc, so I have to keep sending the fresh data over and over to the client on this tcp port.

I want to implement a solution that is memory and cpu efficient - Mainly I would prefer not to generate too many immutable objects in the heap. .

NOTE:In future I might have to support multiple output formats (like comma separated or Json or HL7 etc). To keep it simple lets say there's different TCP port the client can connect for a specific format.

Question

With that said - I've been looking around for the best solution for my TCP Server implementation and data conversion process from ConcurrentHashMap to XML.

For TCP Server, people talk about

My client will be some third party, so i think kryonet is out, since client wont do the "register" business needed by Kryonet. So out of MINA and NETTY, which one is scalable and easier to understand? Any other suggestion?

FOR data conversion from ConcurrentHashMap to XML, I was thinking of using XSTREAM Any other suggestion?

Thanks

share|improve this question

2 Answers

If you have 100s or 1000s of connections you should start to consider scalability. However if you have small number of connections, using plain Sockets may be all you need.

If only a portion of the data is changing, you better off sending only the data which has changed, or at least only regenerating the XML which has changed.

share|improve this answer

How fast does it need to be? It seems like you should be able to create something that returns in less than 10ms (plus RTT) just using tomcat and a standard framework like spring-mvc. Use JAXB to convert objects to XML. If you want to support additional output formats like json it's trivial (use Jackson library for that, api is similar to JAXB).

I had a co-worker that tried the socket server approach and in the end we used tomcat because it was almost as fast and the QPS was more stable/predictable.

share|improve this answer
:My requirement is to continuously provide data to the connected client. Ideally the client could be connected for days consuming the latest data it receives from the server. So I'm not sure if tomcat would do it. – Amit Alka Jul 21 '11 at 18:16
you should look at Akka. – Kevin Jul 21 '11 at 20:55
ok thanks i will – Amit Alka Jul 21 '11 at 21:45

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.