Monday, January 21, 2013

Recommended AIX Virtual Memory Manager settings for DB2 database product

You can find there recommended AIX® Virtual Memory Manager settings for DB2® database product....

http://www-01.ibm.com/support/docview.wss?uid=swg21328602




While it is difficult to prescribe a standard recommendation for all virtual memory manager tunables on AIX systems running the DB2 product, there are some important specific settings where this is possible. This document focuses primarily on parameters which have non-default settings and are considered "Best Practice". These settings apply to all versions of DB2 product running on AIX 5.3, 6.1, and 7.1, and also apply to systems using both cached and non-cached (Direct I/O) file system I/O.
Recommendations:
The "Best Practice" recommendation for DB2 product running on AIX systems is :

maxperm%=90
maxclient%=90
minperm%=3
lru_file_repage=0

You can implement these settings with the following command, which is dynamic and takes effect immediately:

vmo -p -o maxperm%=90 -o maxclient%=90 -o minperm%=3 -o lru_file_repage=0

Optional:
page_steal_method=1

Note that maxperm%, maxclient%, lru_file_repage, and page_steal_method are restricted tunables on AIX 6.1 and 7.1, and you should not tune these restricted tunables without first consulting AIX support. You can view the current settings by executing the command "vmo -a". On AIX 6.1 and 7.1, you can view the current settings for restricted tunables by executing the command "vmo -a -F". You can view a subset of settings such as minperm%, maxperm%, and maxclient%, by executing the command "vmstat -v" and you do not require root authority to issue this command.

Definitions:
Computational memory - Application memory (such as DB2), kernel memory
Permanent memory - File cache, such as JFS, JFS2, NFS, and GPFS.
Client memory - JFS2, NFS, and GPFS, which means all permanent memory except JFS.
maxperm% - the threshold above which permanent memory pages will be evicted in favor of computational memory pages. The default value of this setting for AIX 5L is 80%, and for AIX 6.1 and 7.1 is 90% but it is now a restricted setting for AIX 6.1 and 7.1.
maxclient% - the threshold above which client memory pages will be evicted in favor of computational memory pages. The default value of this setting for AIX 5L is 80% and for AIX 6.1 and 7.1 is 90% but it is now a restricted setting for AIX 6.1 and 7.1.
minperm% - the threshold below which computational memory pages will be evicted in favor of permanent memory pages. The default value of this setting for AIX 5L is 20% and for AIX 6.1 and 7.1 is 3%.
lru_file_repage - when the number of permanent memory pages (numperm) falls between minperm and maxperm, or the number of client memory pages falls between minperm and maxclient, this setting indicates whether repaging rates are considered when deciding to evict permanent memory pages or computational memory pages. Setting this to 0 tells AIX to ignore repaging rates and favor evicting permament memory pages, and thus keeping more computational memory in RAM. The default value for AIX 5L is 1 or true, which means by default it considers the repaging rate. The default value for AIX 6.1 and 7.1 default is 0 or false but it is now a restricted setting.
page_steal_method - selects the AIX LRU scanning method. "0" is the default value for AIX 5.3 and tells AIX to use the legacy page frame table method. "1" is the default value for AIX 6.1 and 7.1 and tells AIX to use a list-based scanning method. This is a restricted tunable on AIX 6.1 and 7.1.

Explanation:
Since the lru_file_repage tunable and related AIX behavior changes were introduced, the recommended settings of key virtual memory manager parameters have changed. The older strategy for DB2 product running on AIX systems was to reduce file cache usage with a combination of moderately low maxperm or maxclient settings, such as 15-30%, and a much lower minperm setting, such as 5-10%. This strategy was required to prevent the paging out of computational memory on systems with a very active file cache.
The new tuning strategy takes advantage of lru_file_repage, and it includes settings which apply to all DB2 products running on AIX systems. These settings allow for a large filesystem cache where desirable, but not at the expense of paging out computational memory. Following these guidelines allows DB2 to take maximum advantage of available system memory without risking the effects of unnecessary paging due to file cache activity. It should be noted that the "lru_file_repage=0" setting is especially important for the optimal performance of DB2's Self-Tuning Memory Manager (STMM). STMM assumes that file pages above minperm can be used for other purposes, such as bufferpools, without paging out computational memory.
The new virtual memory manager settings are a general AIX recommendation and are not restricted to only systems running DB2 product. These settings are also the default settings on AIX 6.1 and 7.1. They have been adopted by the IBM Smart Analytics System and InfoSphere Balanced Warehouse and are now the recommended best practice for all DB2 products running on AIX systems.
An optional setting, "page_steal_method=1", has been included as an acceptable setting for DB2 product running on AIX systems. It can improve AIX performance by switching to list-based LRU scanning, and this is also the default on AIX 6.1 and 7.1. However, the benefits for DB2 product running on AIX systems are not as widespread as the other tunables, and it is not strictly a "Best Practice".

Other Resources:
For details on the AIX concepts discussed in this technote, please see the following links :
http://www.ibm.com/developerworks/aix/library/au-vmm/
http://publib.boulder.ibm.com/infocenter/systems/index.jsp
http://www.redbooks.ibm.com/redbooks/pdfs/sg246039.pdf

No comments:

Post a Comment