Skip to main content

Container platform for IDM-Tools

Project description

Staging: idmtools-platform-container

Idmtools platform container

Table of Contents

Introduction

ContainerPlatform is a platform designed to facilitate the execution of experiments and simulations within Docker containers. It provides a robust environment with all necessary tools and dependencies installed, allowing for seamless integration and execution of computational tasks.

Pre-requisites

  • Python 3.8/3.9/3.10/3.11/3.12 x64-bit
  • OS:
    • Windows 10 Pro or Enterprise
    • Linux
    • macOS (10.15 Catalina or later)
  • Docker or Docker Desktop(required for the container platform) On Windows, please use Docker Desktop 4.0.0 or later
  • Mac user: Only support Intel based x86_64 architecture if you want to run emodpy related disease models on Docker container platform. Apple based ARM architecture currently is not supported.

Installation

  • Install python

    Ensure you have Python 3.8+ installed on your system.

  • Create and activate a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On macOS/Linux
    venv\Scripts\activate     # On Windows
    
  • Install all container platform related packages

    pip install idmtools[container]
    
  • Optional: Install all idmtools packages

    pip install idmtools[full]
    
  • To override existing idmtools container related packages after installing emodpy, run this command

    pip install idmtools[container] --force-reinstall --no-cache-dir --upgrade
    

    Mac user: You map need to escape the square brackets with a backslash like \[container\] or \[full\] in above command.

  • Extra steps for Windows user:

    • Enable Developer Mode on Windows

      If you are running the script on Windows, you need to enable Developer Mode. To enable Developer Mode, go to Settings -> Update & Security -> For developers and select Developer Mode on, or refer to this guide.

    • Enable long file path for Windows

      Due to the file/folder structure design outlined in the section below, if running the script on Windows, be aware of the file path length limitation (less than 255 characters).

      To allow longer file paths, you can enable Long Path Support in the Windows Group Policy Editor. Refer to this guide for detailed instructions.

Examples for container platform

Initialize platform

  • This is the example using Container Platform
    from idmtools.core.platform_factory import Platform
    platform = Platform('CONTAINER', job_directory='<user job directory>')
    
  • To trigger MPI, use ntasks >=2:
    from idmtools.core.platform_factory import Platform
    platform = Platform('CONTAINER', job_directory='<user job directory>', ntasks=2)
    
  • More options for container platform initialization: refer to ContainerPlatform attributes

Container Examples

Check result with CLI commands

idmtools container status <experiment id>

Check result files

- on host: `<job_directory>/<suite_path>/<experiment_path>/<simulation_path>/`
- in container: `/home/container-data/<suite_path>/<experiment_path>/<simulation_path>/`

Folder structure

By default, idmtools now generates simulations with the following structure: job_directory/s_<suite_name>_<suite_uuid>/e_<experiment_name>_<experiment_uuid>/simulation_uuid

  • job_directory — The base directory that contains all suite, experiment, and simulation folders.
  • s_<suite_name>_<suite_uuid> — The suite directory, where the suite name (truncated to a maximum of 30 characters) is prefixed with s_, followed by its unique suite UUID.
  • e_<experiment_name>_<experiment_uuid> — The experiment directory, where the experiment name (also truncated to 30 characters) is prefixed with e_, followed by its unique experiment UUID.
  • simulation_uuid — The simulation folder identified only by its UUID.

Suite is optional. If the user does not specify a suite, the folder will be: job_directory/e_<experiment_name>_<experiment_uuid>/simulation_uuid

Examples:

If you create a suite named: my_very_long_suite_name_for_malaria_experiment

and an experiment named: test_experiment_with_calibration_phase idmtools will automatically truncate both names to a maximum of 30 characters and apply the prefixes s_ for suites and e_ for experiments, resulting in a path like:

job_directory/
└── s_my_very_long_suite_name_for_m_12345678-9abc-def0-1234-56789abcdef0/
    └── e_test_experiment_with_calibrati_abcd1234-5678-90ef-abcd-1234567890ef/
        └── 7c9e6679-7425-40de-944b-e07fc1f90ae7/

Or for no suite case:

job_directory/
└── e_test_experiment_with_calibrati_abcd1234-5678-90ef-abcd-1234567890ef/
    └── 7c9e6679-7425-40de-944b-e07fc1f90ae7/

Users can customize this structure through the idmtools.ini configuration file:

  • name_directory = False — Excludes the suite and experiment names (and their prefixes) from the simulation path.
  • sim_name_directory = True — Includes the simulation name in the simulation folder path when name_directory = True.

Basic CLI commands

ContainerPlatform provides several CLI commands to manage and monitor experiments and simulations. Below are some basic commands:

List running jobs

To list running experiment or simulation jobs:

idmtools container jobs [<container-id>] [-l <limit>] [-n <next>]

Check status

To check the status of an experiment or simulation:

idmtools container status <item-id> [-c <container_id>] [-l <limit>] [--verbose/--no-verbose]

Cancel job

To cancel an experiment or simulation job:

idmtools container cancel <item-id> [-c <container_id>]

View Experiments history

To view experiments history:

idmtools container history [<container-id>] [-l <limit>] [-n <next>]

Note

  • WorkItem is not supported on the Container Platform as it is unnecessary in most cases since the code already runs on the user's local computer.
  • AssetCollection creation or referencing to an existing AssetCollection are not supported on the Container Platform with the current release. If you've used the COMPS Platform, you may have scripts using these objects. You would need to update these scripts without using these objects in order to run them on the Container Platform.
  • Run with Singularity is not needed with Container Platform. If you take an existing COMPS example and try to run it with Container Platform, you may need to remove the code that sets up the singularity image.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

idmtools_platform_container-3.0.1.tar.gz (71.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

idmtools_platform_container-3.0.1-py3-none-any.whl (73.7 kB view details)

Uploaded Python 3

File details

Details for the file idmtools_platform_container-3.0.1.tar.gz.

File metadata

File hashes

Hashes for idmtools_platform_container-3.0.1.tar.gz
Algorithm Hash digest
SHA256 839f14da223888e723ae477c9bb07d738f2448ae0dd523be82d897b48bdda0c8
MD5 48ca110f2cdbd0f7571aa3b8b66872d5
BLAKE2b-256 91512b5d3a4492096f772f7803c413a83bdc3189076c9a5f3e14cd8ae838d398

See more details on using hashes here.

Provenance

The following attestation bundles were made for idmtools_platform_container-3.0.1.tar.gz:

Publisher: deploy.yml on InstituteforDiseaseModeling/idmtools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file idmtools_platform_container-3.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for idmtools_platform_container-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d27687381621b73fa7946d6a8085f952c28098560547d88ea97917bf5a7c4689
MD5 1108ea403b40e7222edcea23b6bf012e
BLAKE2b-256 18534e7e0dfbb03dce01a502956abf9875abf554de36a8cd1e37130112f388af

See more details on using hashes here.

Provenance

The following attestation bundles were made for idmtools_platform_container-3.0.1-py3-none-any.whl:

Publisher: deploy.yml on InstituteforDiseaseModeling/idmtools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page