nerdexam
IBM

000-221 · Question #217

A system with multiple applications is experiencing bursts of activity. This drives the free pages list very low, resulting in increased wait times for applications. Given the vmstat output below…

The correct answer is D. Increase the minfree and maxfree tunables. Increasing the minfree and maxfree tunables raises the thresholds at which AIX's VMM steals pages, keeping a larger pool of free pages available to absorb memory bursts.

Performance Monitoring and Tuning

Question

A system with multiple applications is experiencing bursts of activity. This drives the free pages list very low, resulting in increased wait times for applications. Given the vmstat output below, what can be done to increase the number of free pages to compensate for these bursts of activity?

Exhibit

000-221 question #217 exhibit

Options

  • AIncrease the maxpin tunable.
  • BIncrease the page space size.
  • CIncrease the lru_file_repage setting.
  • DIncrease the minfree and maxfree tunables

How the community answered

(19 responses)
  • A
    5% (1)
  • B
    16% (3)
  • C
    5% (1)
  • D
    74% (14)

Why each option

Increasing the minfree and maxfree tunables raises the thresholds at which AIX's VMM steals pages, keeping a larger pool of free pages available to absorb memory bursts.

AIncrease the maxpin tunable.

The maxpin tunable controls the maximum number of pages that can be pinned (locked) in real memory, and adjusting it does not directly increase the size of the free pages list.

BIncrease the page space size.

Increasing page space expands virtual memory available for paging out, but does not raise the real-memory free-page thresholds that govern how aggressively the VMM reclaims pages.

CIncrease the lru_file_repage setting.

The lru_file_repage tunable governs whether file pages participate in LRU repaging, but changing it does not set the minfree/maxfree targets that control how many free pages the VMM actively maintains.

DIncrease the minfree and maxfree tunablesCorrect

The minfree tunable sets the minimum free-page count that triggers the VMM's page-stealing daemon (lrud), and maxfree sets the target level at which stealing stops. Increasing both values causes the VMM to reclaim pages more aggressively and earlier, ensuring a consistently larger free-page buffer is maintained to handle sudden spikes in application memory demand without driving wait times higher.

Concept tested: AIX VMM minfree and maxfree tunable configuration

Source: https://www.ibm.com/docs/en/aix/7.3?topic=performance-tuning-virtual-memory-manager

Topics

#vmstat#memory tuning#minfree maxfree#free pages

Community Discussion

No community discussion yet for this question.

Full 000-221 Practice