Thursday, November 19, 2020

USE_LARGE_PAGES=AUTO_ONLY

 Interesting new feature:

USE_LARGE_PAGES=AUTO_ONLY - database calculates how many HugePages are needed
to create the SGA and RECONFIGURES(!) the total number of HugePages in the operating system.
If there are no pre-provisioned HugePages on the system, then the database automatically
requests the amount of HugePages it needs from the operating system.
If the request is successful, then the database start up proceeds.
If the operating system cannot find enough HugePages to satisfy the request for the database,
then the database start up fails.

Soon we will live on Linux as well as on large Unixes :))))

Also it would be good idea to do the correctly working TransparentHuge Pages in Linux.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Does DEALLOCATE UNUSED or SHRINK SPACE will free space occupied by LOB segment?

Lets check how it works. My env is DB 19.20@Linux-x64 1) I created the table with 4 LOB columns of 4 different LOB types: BASICFILE BLOB, BA...