aspose file tools
The moose likes Java in General and the fly likes Object Stream for large volume of data Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Object Stream for large volume of data " Watch "Object Stream for large volume of data " New topic
Author

Object Stream for large volume of data

Bala Thiruppathy
Greenhorn

Joined: Oct 30, 2007
Posts: 7
Hi Friends,

I have to write a service between DB and other applications.

This service is need to read the database and provide the stream of objects.
There will be millions of records in the DB.

I thought of below given approach.
I need to convert the records into Objects stream (Is is possible to do soo??!).
This stream will be send acros other applications which uses this object for further processing (like converting into flat file etc).

Please suggest me. How to impplement it.

Thanks in advance,
Bala
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12271
    
    1
I would not even attempt to do this with ObjectStream - instead I would attempt to represent each data item in some compact text format, for example XML. There are plenty of tools for converting between XML and Java objects.

Advantages:
1. You can test with text files that can be edited, passed around easily, saved as test cases with documentation as XML comments.
2. On the client side you can use well understood SAX or STaX parsing of XML
3. Clients don't have to have the same version of Java -OR- even written in Java, ever so flexible.

You may find my survey article on "pipeline" style processing of data to be helpful. Here is the link for part 2 of that article.

If you went with ObjectStream you would have to create a new connection for each object (or possibly collection of objects) and close it to finish the transmission correctly. With a text stream formatted as XML things are much more flexible.

Bill


Java Resources at www.wbrogden.com
Bala Thiruppathy
Greenhorn

Joined: Oct 30, 2007
Posts: 7
Thanks a lot for you genuine answer
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Object Stream for large volume of data
 
Similar Threads
writing vector object to I/O
Such Honesty
Deserialization
What is the best practice to store an object graph?
Stateless web service and caching