Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi I Have Installed Clearml-Agent, But My Pip Saved In Hdd, If I Run Clearml-Agent To Ssd, Is It Mean, My Code Task Will Running In Ssd?

Hi
i have installed clearml-agent, but my pip saved in hdd, if i run clearml-agent to SSD, is it mean, my code task will running in ssd?

  
  
Posted one year ago
Votes Newest

Answers 4


Hi @<1523701260895653888:profile|QuaintJellyfish58> , I think where your code runs depends on where the clearml cache is. Search clearml.conf for cache under agent configuration 🙂

  
  
Posted one year ago

oh okay, so i need to set that to path ssd, yeah?
is it this one? or there is

    docker_internal_mounts {
        sdk_cache: "/clearml_agent_cache"
        apt_cache: "path/to/ssd/apt-cache"
        ssh_folder: "/root/.ssh"
        pip_cache: "path/to/ssd/clearml-cache/pip"
        poetry_cache: "/mnt/hdd_2/clearml-cache/pypoetry"
        vcs_cache: "path/to/ssd/clearml-cache/vcs-cache"
        venv_build: "path/to/ssd/clearml-cache/venvs-builds"
        pip_download: "path/to/ssd/clearml-cache/pip-download-cache"
    }

do i need to set this?


    # target folder for virtual environments builds, created when executing experiment
    venvs_dir = /mnt/hdd_2/clearml-cache/venvs-builds

    # cached virtual environment folder
    venvs_cache: {
        # maximum number of cached venvs
        max_entries: 10
        # minimum required free space to allow for cache entry, disable by passing 0 or negative value
        free_space_threshold_gb: 20.0
        # unmark to enable virtual environment caching
        path: /mnt/hdd_2/clearml-cache/venvs-cache
    },

    # cached git clone folder
    vcs_cache: {
        enabled: true,
        path: /mnt/hdd_2/clearml-cache/vcs-cache
    },

    # use venv-update in order to accelerate python virtual environment building
    # Still in beta, turned off by default
    venv_update: {
        enabled: false,
    },

    # cached folder for specific python package download (used for pytorch package caching)
    pip_download_cache: {
        enabled: true,
        path: /mnt/hdd_2/clearml-cache/pip-download-cache
    },

    translate_ssh: true,
    # reload configuration file every daemon execution
    reload_config: false,

    # pip cache folder mapped into docker, used for python package caching
    docker_pip_cache = /mnt/hdd_2/clearml-cache/pip-cache
    # apt cache folder mapped into docker, used for ubuntu package caching
    docker_apt_cache = /mnt/hdd_2/clearml-cache/apt-cache
  
  
Posted one year ago

I think all of them

  
  
Posted one year ago

alright, will try thanks!

  
  
Posted one year ago
778 Views
4 Answers
one year ago
one year ago
Tags