Advanced Topics

Online Help Table of Contents

The following procedures are provided in this chapter:

File system advanced settings

The following advanced settings are configurable for each file system.

Caution: Use care when changing these parameters as they can significantly impact functionality or performance. For help with these settings, contact your storage solution provider.

To access these settings:

  1. At the menu bar, click the Configuration drop-down menu and click File Systems.
  2. Under Current File Systems, select the file system in question.
  3. At the File System parameters screen, click Update Advanced Settings.

Tunable Settings

Timeout Settings

These setting are pre-set to default values. Most of these settings are automatically adaptive so that a superuser should not need to change them. These settings are the same timeout settings discussed in the Lustre Operations Manual.

Top of page

Configure a new Management Target

The MGT is normally configured while creating the file system and doesn’t need to be created separately on an MGT window.

Perform the following steps to configure the management target:

  1. At the menu bar, click the Configuration drop-down menu and click MGTs to display the MGT Configuration window.
  2. Under New MGT, click Select storage and select the server for the MGT. Note: The MGT and metadata target (MDT) can be located on the same server. However, they cannot be located on the same volume on a server.
  3. Click + Create new MGT to create the new MGT.

Top of page

Add additional Metadata Targets

You can add additional MDTs when creating the file system and later, after the file system has been created.

DNE stands for Distributed Namespace. DNE allows the Lustre namespace to be divided across multiple metadata targets. This enables the size of the namespace and metadata throughput to be scaled with the size of the file system and the number of servers. The primary metadata target in a Lustre file system is MDT0. Added MDTs are indexed as MDT1, MDT2, and so on.

To add additional MDT(s):

  1. At the top menu bar, click Configuration > File Systems.
  2. Under Current File Systems, select the file system you wish to modify.
  3. Under Metadata Target, click + Create MDT (DNE).
  4. At the Create MDT pop-up window, select the volume you wish to use as this new MDT. Click Create. After a moment, the new MDT will be listed on the file system window, under Metadata Target. You can create additional MDTs; simply repeat steps 3 and 4. When you have created the desired MDT(s), perform step 5.
  5. Log into a client node and mount the Lustre file system. Then at the command line, for each added MDT beyond the primary MDT, enter the following command:
    lfs mkdir -i n <lustre_mount_point>/<parent_folder_to_contain this_MDT>
    

    where the -i indicates that the following value, n is the MDT index. The first added MDT will be index 1.

The new MDT is installed. Users can now create subdirectories supported by each added MDT with the following command, as an example:

mkdir <lustre_mount_point>/<parent_folder_to_contain this_MDT>/<subdirectory_name>

Note: Any added MDT you create will be unavailable for use as an OST.

Top of page