sqlschool.gr logo

articles

Articles of SQLschool.gr Team

What is the Lock Page in Memory, When and How I enable it

Antonios Chatzipavlis
Sunday 16 May 2021

Overview

Lock Pages in Memory (LPIM) είναι η δυνατότητα που δίνεται απο τα Windows και η οποία αποτρέπει το paging της virtual memory στο δίσκο. Αυτό το επιτυχάνει καθώς "κλειδωνει" τα δεδομένα αυτά στην φυσική μνήμη και όταν υπάρχει το φαινόμενο που ονομάζουμε memory pressure αυτά δεν γίνονται paging στο δίσκο.

SQL Server and LPIM

Η σχέση που έχει το LPIM με το SQL Server είναι σημαντική καθώς αν ανατρέξουμε στην αρχιτεκτονική του SQL Server θα δούμε ότι όλα περνάνε από την buffer cache που είναι μνήμη και θέλουμε να είναι φυσική μνήμη και όχι paged memory. Αυτό όπως εύκολα είναι κατανοητό δίνει καλύτερο performance.

How I check if LPIM is enabled

Για να ελέγξουμε αν έχουμε ενεργοποιημένο το LPIM στο SQL Server instance μας μπορούμε να το κάνουμε με το παρακάτω query όπου αν στο locked_page_allocations_kb δούμε την τιμή μηδέν καταλαβαίνουμε ότι δεν είναι ενεργοποιημένο.

LPIM Query 1

select    
        n.node_state_desc
    ,    mn.memory_node_id
    ,    mn.locked_page_allocations_kb
from 
        sys.dm_os_memory_nodes as mn
inner join 
        sys.dm_os_nodes as n 
            on n.memory_node_id = mn.memory_node_id

Ακόμα ένας τρόπος είναι να εκτελέσω ακόμα ένα query, και αυτό είναι το παρακάτω. Αν αυτό επιστρέψει “CONVENTIONAL” δεν είναι ενεργοποιημένο το LPIM αν επιστρέψει “LOCK_PAGES” είναι ενεργοποιημένο.

SQL Script

select sql_memory_model, sql_memory_model_desc
from   sys.dm_os_sys_info

Τέλος ακόμα τρόπος είναι να ψάξω μέσα στα SQL Server για το message "Using locked pages in the memory manager" ή "Using conventional memory in the memory manager"". Το πρώτο μου δείχνει ότι είναι ενεργοποιημένο το LPIM ενώ το δεύτερο ότι δεν είναι.

Enable LPIM

Για να ενεργοποιήσω το LPIM θα πρέπει να εντοπίσω μέσα από το SQL Server Configuration Manager το account που χρησιμοποιείται για την εκτέλεση του SQL Server service και σε αυτό να του αναθέσω το Lock page in memory policy.

Για να το κάνω αυτό πρέπει να καλέσω το Local Security Policy console και να πάω Local Polices > User Rights Assignment > Lock pages in memory και να κάνω add το account αυτό. Κατόπιν πρέπει να κάνω restart το SQL Service service.

When to enable LPIM

Και ερχόμαστε στο ερώτημα που βασανίζει πολλούς και αφορά το πότε πρέπει να έχω ενεργοποιημένο το LPIM.

Η απάντηση είναι εύκολη και απλή και λέει ότι το ενεργοποιώ όποτε χρειάζεται.

Για να καταλάβω μάλιστα πότε χρειάζεται απλά κοιτάζω τα SQL Server logs για το error 17890. Αν το δω να εμφανίζεται συστηματικά τότε ναι πρέπει να ενεργοποιήσω το LPIM.


//Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios is a Data Solutions Consultant and Trainer. He has been working in IT since 1988. In his career, he has worked as senior developer, IT Manager, Solutions Architect and IT Consultant. Since 1995 he has been devoted on new technologies and software development tools, mainly by Microsoft, either by training company staff and colleagues or assisting them in design, development and implementation as a consultant or chief developer. He has focused in Databases and Data Science since 1995. He specialized in Microsoft SQL Server since version 6.0 in areas like SQL Server Internals, Database Design and Development, Business Intelligence and in 2010 he has started working with Azure Data Platform, NoSQL databases, Big Data Technologies and Machine Learning. He is an active member of many IT communities in Greece, answering colleagues' questions and writing articles in his web site. He is the owner of SQLschool.gr which is a community portal with a lot of information about Microsoft SQL Server. He has been a Microsoft Certified Trainer (MCT) since 2000. Microsoft honored him as MVP on Data Platform due to his activities in SQL Server since 2010. He holds a large number of Microsoft Certifications and Microsoft SQL Server Certifications since version 6.5.

Episode

First look: SQL Database in Microsoft Fabric

image

More Episodes...

Tip

What's New in SQL Server 2022 - Episodes

More Tips...

Become a member

If you want to receive updates from us become a member to our community.

Connect

Explore

Learn


sqlschool.gr © 2010-2024 All rights reserved

This site uses cookies for operational and analytics purposes only. By continuing to browse this site, you agree to their use.