.. _chapter_machconf: ************************************ Using Local and Remote HPC Resources ************************************ .. py:module:: radical.pilot.configs Introduction ============ RADICAL-Pilot allows you to launch a pilot allocating a large number of cores on a remote HPC cluster. The pilot is then used to run multiple tasks, each with a defined number of cores. This separates resource allocation and management from resource usage, and avoids HPC cluster queue policies and waiting times which can significantly reduce the total time to completion of your application. If you want to use a remote HPC resource (in this example a cluster named "Archer", located at EPSRC, UK) you have to define it in the `PilotDescription` object: .. code-block:: python pdesc = radical.pilot.PilotDescription() pdesc.resource = "epsrc.archer" pdesc.project = "e1234" pdesc.runtime = 60 pdesc.cores = 128 Resource keys have the form :file:`{site}.{host}`. Using a ``resource`` key other than "local.localhost" implicitly tells RADICAL-Pilot that it is targeting a remote resource. RADICAL-Pilot is using the SSH/GSISSH (and SFTP/GSISFTP) protocols to communicate with remote resources. The next section, :ref:`ssh_config` provides some details about SSH set-up. :ref:`preconfigured_resources` lists the resource keys that are already defined and ready to be used in RADICAL-Pilot. .. _ssh_config: Configuring SSH Access ====================== If you can manually SSH into the target resource, RADICAL-Pilot can do the same. Note that you have to set-up password-less ssh keys for the resource you want to use. If you are not familiar with how to setup password-less ssh keys, check out this `guide `_. All SSH-specific information, like remote usernames, passwords, and keyfiles, are set in a :py:class:`~radical.pilot.Context` object. For example, if you want to tell RADICAL-Pilot your user-id on the remote resource, use the following construct: .. code-block:: python session = radical.pilot.Session() c = radical.pilot.Context('ssh') c.user_id = "tg802352" session.add_context(c) .. note:: **Tip:** You can create an empty file called `.hushlogin` in your home directory to turn off the system messages you see on your screen at every login. This can help if you encounter random connection problems with RADICAL-Pilot. Configuring GSISSH Access for XSEDE/ACCESS resources ============================================= XSEDE/ACCESS resources require using gsissh instead of ssh. Once the gsissh and myproxy are successfully installed, one need to acquire a X509 certificate: .. code-block:: bash $ export MYPROXY_SERVER_PORT=7512 $ export MYPROXY_SERVER=myproxy.xsede.org $ myproxy-logon -l -T -b -t 1000 $ [Enter MyProxy pass phrase] $ [you should receive a credential in /tmp/x509up_u1000] $ gsissh -p 2222 login1.stampede2.tacc.utexas.edu .. _preconfigured_resources: Pre-Configured Resources ======================== Resource configurations are a set of key/value dictionaries with details of a remote resource like queuing-, file-system-, and environment-. Once a configuration file is available for a given resource, a user chooses that pre-configured resource in her code like this: .. code-block:: python pdesc = radical.pilot.PilotDescription() pdesc.resource = "epsrc.archer" pdesc.project = "e1234" pdesc.runtime = 60 pdesc.cores = 128 pdesc.queue = "large" The RADICAL-Pilot developer team maintains a growing set of resource configuration files. Several of the settings included there can be overridden in the ``PilotDescription`` object. For example, the snipped above replaces the default queue ``standard`` with the queue ``large``. For a list of supported configurations, see :ref:`chapter_resources` and note that those resource files can be found under ``radical/pilot/configs/`` in the RADICAL-Pilot git repository. Writing a Custom Resource Configuration File ============================================ If you want to use RADICAL-Pilot with a resource that is not in any of the provided resource configuration files, you can write your own, and save it in ``$HOME/.radical/pilot/configs/.json``. .. note:: The remote resource configuration file name must start with "resource\_", followed by the *site* name, and end with the ".json" suffix. Within each resource file, multiple resource *host*s can be listed. For example, the :download:`resource_xsede.json <../../src/radical/pilot/configs/resource_xsede.json>` file contains many different HPC resources from XSEDE/ACCESS. .. note:: Be advised that you may need specific knowledge about the target resource to do so. Also, while RADICAL-Pilot can handle very different types of systems and batch system, it may run into trouble on specific configurations or software versions we did not encounter before. If you run into trouble using a resource not in our list of officially supported ones, please open `an issue `_. A configuration file has to be valid JSON. The structure is as follows: .. code-block:: python # filename: resource_lrz.json { "supermuc": { "description" : "The SuperMUC petascale HPC cluster at LRZ.", "notes" : "Access only from registered IP addresses.", "schemas" : ["gsissh", "ssh"], "ssh" : { "job_manager_endpoint" : "loadl+ssh://supermuc.lrz.de/", "filesystem_endpoint" : "sftp://supermuc.lrz.de/" }, "gsissh" : { "job_manager_endpoint" : "loadl+gsissh://supermuc.lrz.de:2222/", "filesystem_endpoint" : "gsisftp://supermuc.lrz.de:2222/" }, "default_queue" : "test", "resource_manager" : "SLURM", "task_launch_method" : "SSH", "mpi_launch_method" : "MPIEXEC", "forward_tunnel_endpoint" : "login03", "virtenv" : "/home/hpc/pr87be/di29sut/pilotve", "python_dist" : "default", "pre_bootstrap_0" : ["source /etc/profile", "source /etc/profile.d/modules.sh", "module unload mpi.ibm", "module load mpi.intel", "source /home/hpc/pr87be/di29sut/pilotve/bin/activate" ], "agent_scheduler" : "CONTINUOUS", "agent_spawner" : "POPEN" }, "ANOTHER_KEY_NAME": { ... } } The name of your file (here ``resource_lrz.json``) together with the name of the resource (``supermuc``) form the resource key which is used in the :class:`PilotDescription` resource attribute (``lrz.supermuc``). All fields are mandatory, unless indicated otherwise below. * ``description``: a human readable description of the resource. * ``notes``: information needed to form valid pilot descriptions, such as what parameter are required, etc. * ``schemas``: allowed values for the ``access_schema`` parameter of the pilot description. The first schema in the list is used by default. For each schema, a subsection is needed which specifies ``job_manager_endpoint`` and ``filesystem_endpoint``. * ``job_manager_endpoint``: access url for pilot submission (interpreted by SAGA). * ``filesystem_endpoint``: access url for file staging (interpreted by SAGA). * ``default_queue``: queue to use for pilot submission (optional). * ``resource_manager``: type of job management system. Valid values are: ``LOADL``, ``LSF``, ``PBSPRO``, ``SGE``, ``SLURM``, ``TORQUE``, ``FORK``. * ``task_launch_method``: type of compute node access, required for non-MPI tasks. Valid values are: ``SSH``,``APRUN`` or ``LOCAL``. * ``mpi_launch_method``: type of MPI support, required for MPI tasks. Valid values are: ``MPIRUN``, ``MPIEXEC``, ``APRUN``, ``IBRUN``, etc. * ``python_interpreter``: path to python (optional). * ``python_dist``: `anaconda` or `default`, i.e., not `anaconda` (mandatory). * ``pre_bootstrap_0``: list of commands to execute for initialization of main agent (optional). * ``pre_bootstrap_1``: list of commands to execute for initialization of sub-agent (optional). * ``forward_tunnel_endpoint``: name of the host which can be used to create ssh tunnels from the compute nodes to the outside world (optional). Several configuration files are part of the RADICAL-Pilot installation, and can be found under ``radical/pilot/configs/`` in the RADICAL-Pilot git repository. Access to Resource definitions ============================== At run time, built-in and custom configs are merged to provide the definitions seen by RP with *e.g.* :py:func:`radical.pilot.Session.get_resource_config()`. The following tools are available to look up resource definitions without an active :py:class:`~radical.pilot.Session`. .. autofunction:: radical.pilot.utils.misc.get_resource_config .. autofunction:: radical.pilot.utils.misc.get_resource_configs .. autofunction:: radical.pilot.utils.misc.get_resource_fs_url .. autofunction:: radical.pilot.utils.misc.get_resource_job_url