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, We Have Clearml-Agent Running Inside A Docker Container. The Container Have All The Require Package Installed Including Some Of Our Private Package. When Queueing A Task, We Can "Overwrite" Package By Providing The Package+Version (Eg: Foo=

Hi,
We have clearml-agent running inside a docker container. The container have all the require package installed including some of our private package.
When queueing a task, we can "overwrite" package by providing the package+version (eg: foo= =0.15.0) in "PYTHON PACKAGES", which then set the package to the desired version before running the queue task. All good.
But when we queue another task, this time without anything in the "PYTHON PACKAGES", we want the task to be running with the original version of foo rather than downgraded foo==0.15.0 from the previous queued task.
How can we achieve that ?
Basically, we want the task environ to "reset" after a task run, in the clearml-agent

  
  
Posted 4 months ago
Votes Newest

Answers


got it working. I was using CLEARML_AGENT_SKIP_PIP_VENV_INSTALL .
now I just use agent.package_manager.system_site_packages=true

  
  
Posted 4 months ago
591 Views
1 Answer
4 months ago
4 months ago
Tags
Similar posts