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
Hello Everyone! I'M Trying To Add Functionality Where I Need To Rotate Artifacts. Psedocode:

Hello everyone! I'm trying to add functionality where I need to rotate artifacts. Psedocode:
task = Task(...) task.upload_artifact(path)and after some time I want to delete artifact with
task.delete_artifacts(artifact_names)this one is working and I see in the UI that artifacts are removed.
BUT
when I want to upload new one with
task.upload_artifact(path)it restores all deleted ones. Does anyone have idea why this can happen?

  
  
Posted one year ago
Votes Newest

Answers 2


Hi GrotesqueDog77

and after some time I want to delete artifact with

You can simply upload with the same local file name and same artifact name, it will override the target storage. wdyt?

  
  
Posted one year ago

Do you have a code snippet that reproduces this?

  
  
Posted one year ago
542 Views
2 Answers
one year ago
one year ago
Tags