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 All, Im Executing A Task Remotely Via A Queue. I Don'T Want It To Cache The Env Or Install Anything Before The Run, Just To Run The Task On The Agent Machine (I Set Up The Agent'S Env Previously, The Env Cache Causes Versions Problems In My Case). I Tr

Hi all, im executing a task remotely via a queue. I don't want it to cache the env or install anything before the run, just to run the task on the agent machine (I set up the agent's env previously, the env cache causes versions problems in my case). I tried using the env variables CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL=True, CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=True, deleted the .clearml dir but non of these help and it still starts with installations. Moreover, I tried and used Task.force_requirements_env_freeze with a very small list of packages but it is still installing all the packages. How do I cancel this behavior? Thanks :)

  
  
Posted 11 months ago
Votes Newest

Answers


Can you try setting the env variables to 1 instead of True ? In general, those should indeed be the correct variables to set. For me it works when I start the agent with the following command:

CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL=1 CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=1 clearml-agent daemon --queue "demo-queue"
  
  
Posted 11 months ago