Martin Vajsar wrote:I cannot comment on the algorithm, but one thing struck me out: how big is X going to be? Given today's prices of storage and memory, I'd say (very generally) that anything short of billion records should be doable undistributed. Distribution complicates things considerably. Unless you actually want to learn/practice Hadoop, I'd say you should establish much more firmly whether you do need the distributed thing.
Bear Bibeault wrote:
I also advise to stop using obsolete Java scriptlets in your JSPs. It's time to step out of 2002 and into 2012.
Eric Pascarello wrote:Um, use the i variable in your loop? Or better yet, use a jQuery selector that finds the next table!
Eric
Jayesh A Lalwani wrote:
Scaling a thread pool up based on number of requests defeats the purpose of a thread pool. The reason you have a threadpool is because
a) you don;t want to start/stop threads very often
b) under heavy load, you don't want to overwhelm the system.