@Şükrü ERGÜNTOP
Can you include the sqoop command? What is the size of the data that you are transferring from Oracle database? What value did you give --m option ?
Java was not able to allocate enough memory, i.e. it's not Java's heap limit that's in the way but rather no more memory available to be given to Java by OS. Check that the machine is not running out of memory. And first clean ram or increase ram then check if again there is an out of memory error then increase heap size:
- -Xms128m min(heap size)
- -Xmx512m max(heap size)
- -XX:MaxPermSize max(perm size)
Hope that helps