PMEM: Difference between revisions

From Grid5000
Jump to navigation Jump to search
No edit summary
(32 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Portal|User}}
{{Portal|Tutorial}}
{{TutorialHeader}}
__TOC__
__TOC__
Some [[Hardware#PMEM_size_per_node|nodes of Grid'5000]] feature the new '''Persistent Memory''' technology. As of writing this page, the [[Grenoble:Hardware#troll|troll]] cluster in Grenoble is equipped.
Some [[Hardware#PMEM_size_per_node|nodes of Grid'5000]] feature the new '''Persistent Memory''' technology. As of writing this page, the [[Grenoble:Hardware#troll|troll]] cluster in Grenoble is equipped.


= Forewords =
= Forewords =
This ''Persistant Memory'' technology is known by many different names, e.g.
This ''Persistent Memory'' technology is known by many different names, e.g.
* nvdimm (generic term, nvdimm-N = battery backed DRAM, nvdimm-P...)
* nvdimm (generic term, nvdimm-N = battery backed DRAM, nvdimm-P...)
* SCM (storage class memory)
* SCM (storage class memory)
Line 9: Line 12:
In the rest of this document, we'll use the '''PMEM''' acronym.
In the rest of this document, we'll use the '''PMEM''' acronym.


The current available PMEM technology available in Grid'5000 is '''Intel's Optane DC Permanent Memory'''. Other vendors may provide PMEM in the future (IBM, HPE Memristor ?). PMEM has been also available for tests in emulator such as qemu for a long time.
The current available PMEM technology available in Grid'5000 is '''Intel's Optane DC Persistent Memory'''. Other vendors may provide PMEM in the future (IBM, HPE Memristor ?). PMEM has been also available for tests in emulators such as qemu for a long time.


This technology consists in DIMMs (just like DRAM) but offering a different set of characteristics:
This technology consists in DIMMs (just like DRAM) but offering a different set of characteristics:
* It fills the gap between memory and storage: RAM <x10< PMEM <x100< high-end NVMe SSD in terms of latency
* It fills the gap between memory and storage: RAM <x10< PMEM <x100< high-end NVMe SSD in terms of latency
* Persistence: can be use as (persistent) memory or filesystem on steroids
* Persistence: can be used as (persistent) memory or filesystem on steroids
* Byte addressable, zero-copy memory mapping
* Byte addressable, zero-copy memory mapping
* No energy consumption on idle (and more than RAM when used)
* No energy consumption when idle, but more than RAM when used
* Lower price per GB compared to DRAM, larger memory sizes than DRAM
* Lower price per GB compared to DRAM, larger memory sizes than DRAM
This technology is not to be confused with the generic NVRAM term or the NVMe storages (SSD disk drives on top of PCIe).


= Intel's PMEM settings =
= Intel's PMEM settings =
Line 28: Line 33:
** sector, fsdax, devdax, kmem (kmem not available before Linux 5.1)
** sector, fsdax, devdax, kmem (kmem not available before Linux 5.1)
; Mix mode
; Mix mode
* It is also possible to allocate part of the memory to Memory Mode and part of it to App Direct
* It is also possible to allocate part of the memory to Memory mode and part of it to App Direct


'''In order to change the configuration (e.g. from Memory mode to App Direct mode, or vice versa), a reboot of the machine is needed'''.
'''In order to change the configuration (e.g. from Memory mode to App Direct mode, or vice versa), a reboot of the machine is needed'''.


== Grid'5000 setup for experimentation ==
= Grid'5000 setup for experimentation =
The choice in Grid'5000 has been to configure PMEM in Memory Mode by default. That means that the PMEM is in Memory Mode (appear just like RAM) in the Grid'5000 default environment (when not deploying).
'''The choice in Grid'5000 has been to configure PMEM in Memory mode by default'''.
That means that the PMEM is in Memory mode (it appears just like more RAM) in the Grid'5000 default environment (when not deploying).


We encourage users who wants to experiments with the App direct mode to deploy a very recent system (e.g. Debian testing), in order to benefit from the latest support for PMEM.
'''Kadeploying allows to experiment with the App Direct mode'''. We encourage users who wants to experiments with the App direct mode to deploy a very recent system (e.g. Debian testing), in order to benefit from the latest support for PMEM.


To that purpose, jobs need to be of the ''deploy'' type, and kadeploy must be used:
To that purpose, jobs need to be of the ''deploy'' type, and kadeploy must be used:
{{Term|location=fgrenoble|cmd=<code class="command">oarsub -p "cluster='troll'" -t deploy -I</code>}}
{{Term|location=fgrenoble|cmd=<code class="command">oarsub -p "cluster='troll'" -t deploy -I</code>}}
Then:
Then:
{{Term|location=fgrenoble|cmd=<code class="command">kadeploy -e debian-testing -f $OAR_NODEFILE -k</code>}}
{{Term|location=fgrenoble|cmd=<code class="command">kadeploy3 -e debiantesting-x64-min -f $OAR_NODEFILE -k</code>}}
 
Once a node is deployed, one can connect to it as root, install the PMEM software and possibly change the configuration and reboot to apply it.


Once a node is deployed, once can connect as root, install the PMEM software and possibly change the configuration and reboot to apply it. The PMEM software are:
The PMEM software are:
* ipmctl: tool to change the config of Intel's PMEM
* <code class="command">ipmctl</code>: tool to change the config of Intel's PMEM (switch mode, etc.)
* ndctl: tool to configure PMEM in App Direct mode
* <code class="command">ndctl</code>: tool to configure PMEM when in App Direct mode
* daxctl: tool to configure the PMEM direct access (dax)
* <code class="command">daxctl</code>: tool to configure the PMEM direct access (dax)
{{Term|location=troll-2|cmd=<code class="command">apt install ipmctl ndctl daxtool</code>}}
Install in Debian testing as follows:
{{Term|location=troll-2|cmd=<code class="command">apt install ipmctl ndctl daxctl</code>}}


See the man pages or [[#References|external documentations]] of the tools to use them.
See the man pages or external documentations (see the [[#References|references]] section) of the tools to find out how to use them.


For instance to change to App Direct mode, with DIMMs interleaved, one can run:
For instance to change to App Direct mode, with DIMMs interleaved, one can run:
{{Term|location=troll-2|cmd=<code class="command">ipmctl create -goal MemoryMode=100</code>}}
{{Term|location=troll-2|cmd=<code class="command">ipmctl create -goal MemoryMode=0</code>}}
And then reboot.
And then '''reboot'''.


Reboot time of the machine is pretty long (~ 10 minutes), so be patient. You may look at the console to follow the progress
Reboot time of the machine is pretty long (~ 10 minutes), so be patient. You might want to look at the console to follow the progress:
{{Term|location=fgrenoble|cmd=<code class="command">kaconsole -m </code><code classe="replace">troll-2</code>}}
{{Term|location=fgrenoble|cmd=<code class="command">kaconsole3 -m</code><code classe="replace">troll-2</code>}}


; Important notes
; Important notes
* Please mind that '''when a job is terminated, the nodes of the job are automatically reconfigured to the default mode of operation, that is Memory Mode'''.
* Please mind that '''when a job is terminated, the nodes of the job are automatically reconfigured to the default mode of operation, that is Memory mode'''.
* Please mind that '''sudo-g5k is of no help to experiment with the App Direct mode''', since rebooting the node will terminate the job. Using the App Direct mode requires kadeploying.
* Please mind that '''sudo-g5k is of NO help to experiment with the App Direct mode''', since rebooting the node after changing the configuration will terminate the job, and switch it back to Memory mode. Using the App Direct mode requires kadeploying.


= References =
= References =

Revision as of 12:42, 9 July 2020

Note.png Note

This page is actively maintained by the Grid'5000 team. If you encounter problems, please report them (see the Support page). Additionally, as it is a wiki page, you are free to make minor corrections yourself if needed. If you would like to suggest a more fundamental change, please contact the Grid'5000 team.

Some nodes of Grid'5000 feature the new Persistent Memory technology. As of writing this page, the troll cluster in Grenoble is equipped.

Forewords

This Persistent Memory technology is known by many different names, e.g.

  • nvdimm (generic term, nvdimm-N = battery backed DRAM, nvdimm-P...)
  • SCM (storage class memory)
  • PMM/PMEM

In the rest of this document, we'll use the PMEM acronym.

The current available PMEM technology available in Grid'5000 is Intel's Optane DC Persistent Memory. Other vendors may provide PMEM in the future (IBM, HPE Memristor ?). PMEM has been also available for tests in emulators such as qemu for a long time.

This technology consists in DIMMs (just like DRAM) but offering a different set of characteristics:

  • It fills the gap between memory and storage: RAM <x10< PMEM <x100< high-end NVMe SSD in terms of latency
  • Persistence: can be used as (persistent) memory or filesystem on steroids
  • Byte addressable, zero-copy memory mapping
  • No energy consumption when idle, but more than RAM when used
  • Lower price per GB compared to DRAM, larger memory sizes than DRAM

This technology is not to be confused with the generic NVRAM term or the NVMe storages (SSD disk drives on top of PCIe).

Intel's PMEM settings

Intel's PMEM can be configured in 2 modes:

Memory
  • Just more RAM, no persistence. DRAM serves as cache (it disappears for the operating system viewpoint).
App direct
  • Many choices of configuration:
    • DIMMs interleave option in the region (change needs reboot)
    • region splits in namespaces (change may need reboot)
    • sector, fsdax, devdax, kmem (kmem not available before Linux 5.1)
Mix mode
  • It is also possible to allocate part of the memory to Memory mode and part of it to App Direct

In order to change the configuration (e.g. from Memory mode to App Direct mode, or vice versa), a reboot of the machine is needed.

Grid'5000 setup for experimentation

The choice in Grid'5000 has been to configure PMEM in Memory mode by default. That means that the PMEM is in Memory mode (it appears just like more RAM) in the Grid'5000 default environment (when not deploying).

Kadeploying allows to experiment with the App Direct mode. We encourage users who wants to experiments with the App direct mode to deploy a very recent system (e.g. Debian testing), in order to benefit from the latest support for PMEM.

To that purpose, jobs need to be of the deploy type, and kadeploy must be used:

Terminal.png fgrenoble:
oarsub -p "cluster='troll'" -t deploy -I

Then:

Terminal.png fgrenoble:
kadeploy3 -e debiantesting-x64-min -f $OAR_NODEFILE -k

Once a node is deployed, one can connect to it as root, install the PMEM software and possibly change the configuration and reboot to apply it.

The PMEM software are:

  • ipmctl: tool to change the config of Intel's PMEM (switch mode, etc.)
  • ndctl: tool to configure PMEM when in App Direct mode
  • daxctl: tool to configure the PMEM direct access (dax)

Install in Debian testing as follows:

Terminal.png troll-2:
apt install ipmctl ndctl daxctl

See the man pages or external documentations (see the references section) of the tools to find out how to use them.

For instance to change to App Direct mode, with DIMMs interleaved, one can run:

Terminal.png troll-2:
ipmctl create -goal MemoryMode=0

And then reboot.

Reboot time of the machine is pretty long (~ 10 minutes), so be patient. You might want to look at the console to follow the progress:

Terminal.png fgrenoble:
kaconsole3 -mtroll-2
Important notes
  • Please mind that when a job is terminated, the nodes of the job are automatically reconfigured to the default mode of operation, that is Memory mode.
  • Please mind that sudo-g5k is of NO help to experiment with the App Direct mode, since rebooting the node after changing the configuration will terminate the job, and switch it back to Memory mode. Using the App Direct mode requires kadeploying.

References