Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add link, fix typos, update default profiles for small, medium, and large

The Node Manager profile is an abstraction for the amount of resources a Node Manager advertises to the Resource Manager. These profiles are set in the Myriad configuration file, myriad-config-default.yml. Each profile is identified by zero, small, medium, and large with default CPU and memory parameters. The cluster can be configured to start with a an initial number of Node Managers. By default, Myriad requires at least 1 NM NodeManager instance with a medium profile. See  See Scaling Resources Dynamically and the Myriad Cluster API for for information about flexing up or down an scaling instance resources.

Note

During initial startup, Myriad launches one NodeManager instance with a profile of medium through the parameter, nmInstances, which is specified in the myriad-config-default.yml file.

"nmInstances": {

    "medium": 1

  },

...

Code Block
"profiles": {
  "zero": {
    "cpu": "0",
    "mem": "0"
  },
  "small": {
    "cpu": "12",
    "mem": "11002048"
  },
  "medium": {
    "cpu": "24",
    "mem": "20484096"
  },
  "large": {
    "cpu": "410",
    "mem": "409612288"
  }
},