I have a problem my java web service. How can i manage big data (more than 10 GB). I have to send to consumer this data. Please give me some advise.
How to manage large data in java web services
88 Views Asked by ILHOMJON At
2
There are 2 best solutions below
0

-If it is really not a necessity to serve all the data at one go,I would suggest creating filter based API's .
-Even batch processing this data serving let's say 50 records at a time with pagination at the front end will help you with the response time.
-You can use compression techniques like gzip compression on the webserver
It depends on many things :
Most probably your data will be stored somewhere and I assume you have map-reduced it. You can provide this data to your clients using pagination.