Perl and new Intel CPUs with 4 level cache

  • 441 views
  • Read

Last day I took a task to fix a network issue about Oracle 12c on Windows.

At the beginning, I though it was a misconfiguration issue, and could be fixed within one hour, or in some special situations, maybe need at most half day. But finally I knew the estimation was totally wrong.

First of all, the issue was really strange! When I ran 'lsnrctl status/stop/start' t to control the listener, the command would always hang. I guessed maybe some configurations were not correct, and I did found some issues and fixed them, but this problem still existed. I enabled the trace of listener but got nothing, and more strange was that when I run 'lsnrctl' in interactive mode, then every commands, like start, stop or status, worked really well, except the command 'exit', and I did not tests: run 'lsnrctl' to enter interactive mode, then input 'exit' directly to quit it, and it would hang forever.

So this issue was not related with listener, but the command lsnrctl itself. I checked the system logs to find some clues, and found many 'exectask' issues, and these issues were caused by CVU command. So I googled the key words 'exectask hang oracle', and get this post:

Does Oracle Database 12c Just Not Work on Windows?

The phenomena is exact the same! In fact the subcommands (start, stop or status) have been finished successfully, then the command 'lsnrctl' will hang and never return to the command line.

So it seems that the Perl delivered by Oracle has compatibility issue with the newer Intel CPUs. My laptop is T420s, so I cannot duplicate this issue on my VirtualBox VM.

I believe Oracle should provide a patch for this issue, but currently I cannot find it, so I list all the mentioned workarounds below:

For VirtualBox 5 VM:

VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/Leaf" "0x4"
VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/SubLeaf" "0x4"
VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/eax"  "0"
VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/ebx" "0" 
VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/ecx" "0" 
VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/edx"  "0"
VBoxManage setextradata VM_NAME "VBoxInternal/CPUM/HostCPUID/Cache/SubLeafMask" "0xffffffff"

Please note this maybe not work on the latest version, so another way is to downgrade to VirtualBox 4.

For VMWare VM need to add below lines to mvx file:

monitor_control.enable_fullcpuid = TRUE
cpuid.4.4.eax = "0000:0000:0000:0000:0000:0000:0000:0000"

For all Linux guests:

export ORACLE_HOME=/u01/app/oracle/product/12.1.0/grid
cd ~
rm -rf perl
mkdir perl
cd perl/
curl -O http://www.cpan.org/src/5.0/perl-5.14.1.tar.gz
tar -xvzf perl-5.14.1.tar.gz
 
cd $ORACLE_HOME
mv perl/ perl.OLD
mkdir perl
cd /home/oracle/perl/perl-5.14.1
./Configure -des -Dprefix=$ORACLE_HOME/perl -Doptimize=-O3 -Dusethreads -Duseithreads -Duserelocatableinc ; make clean ; make ; make install
cd $ORACLE_HOME/perl
rm -rf lib/ man/
cp -r ../perl.OLD/lib/ .
cp -r ../perl.OLD/man/ .
cp ../perl.OLD/bin/dbilogstrip bin/
cp ../perl.OLD/bin/dbiprof bin/
cp ../perl.OLD/bin/dbiproxy bin/
cp ../perl.OLD/bin/ora_explain bin/

While I cannot find a temporary solution to replace the Perl of Oracle on Windows platforms, and I also have no such hardware to test it.

Thanks for all the guys who found this issue and provided the workarounds, and list all the web pages I had read:

VBox 5.0.10/12 issues with PERL and Seg Faults - UPDATE

Oracle 12c, VMWare Fusion and the perl binary’s segmentation fault

Oracle DB12c / OL7 / VBox 5 – Perl Segmentation Fault

Perl Segmentation Fault - Oracle 12c install - Docker Mac - Mac Pro

  • by Published on 22/02/2017 09:43:12
  • Repost please keep this link: https://www.dbcloudsvc.com/blogs/oracle/perl-and-new-intel-cpus-with-4-level-cache/
匿名

Comment

Anonymous Write

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

Decide