I was recently pondering the following scenario: suppose you have a huge database and you want to perform some calculations while loading some of its part. It can be the case, that even small part of that database might not fit into Java's heap memory which is quite limited. How do people go about solving these obstacles? How does google perform analysis on Terabytes of data with limited memory space?
Thanks in advance for your replies.