Issue:
Performance issue for XDOLoader.class jobs
Cause:
The XDOLoader uses JDBC which uses the /dev/random
renaming /dev/random and creating a link to /dev/urandom called /dev/random Fixes the issue
Solution:
Rename /dev/random to /dev/random_org
Create a link to /dev/urandom called /dev/random
mv /dev/random /dev/random.bk
ln -s /dev/urandom /dev/random
Reference:
-12.1.1 UPGRADE FROM 11.5.10.2 VERY SLOW XDOLOADER TASK HANGS (Doc ID 1065393.1)
Performance issue for XDOLoader.class jobs
Cause:
The XDOLoader uses JDBC which uses the /dev/random
renaming /dev/random and creating a link to /dev/urandom called /dev/random Fixes the issue
Solution:
Rename /dev/random to /dev/random_org
Create a link to /dev/urandom called /dev/random
mv /dev/random /dev/random.bk
ln -s /dev/urandom /dev/random
Reference:
-12.1.1 UPGRADE FROM 11.5.10.2 VERY SLOW XDOLOADER TASK HANGS (Doc ID 1065393.1)
No comments:
Post a Comment