java.lang.OutOfMemoryError, GC overhead limit exceeded
One annoying error which I often see when running Hadoop jobs is this:
java.lang.OutOfMemoryError: GC overhead limit exceeded
The cause of this error is that Java is spending a lot of time inside the garbage collector, and is not freeing up large chunks of memory. When this error …
more ...