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 There, Is There A Way To Upload/Connect Artifact To A Certain Running/Completed Task, Using A Different Scope Other Then The One That'S Running? (I Mean, Instead Of Use Task.Upload_Artifact, Use Task,Get_Tasks(Task_Id=<Some_Task_Id>) And Then Use This

Hi there,
Is there a way to upload/connect artifact to a certain running/completed task, using a different scope other then the one that's running?
(I mean, instead of use task.upload_artifact, use Task,get_tasks(task_id=<some_task_id>) and then use this object to connect an additional artifact object

  
  
Posted 22 days ago
Votes Newest

Answers 2


Hi @<1539417873305309184:profile|DangerousMole43> ! You need to mark the task you want to upload an artifact to as running. You can use task.mark_started(force=True) to do so, then mark it back as completed using task.mark_completed(force=True)

  
  
Posted 21 days ago

Thank you @<1523701435869433856:profile|SmugDolphin23> ! 🙏
I'll try it out

  
  
Posted 17 days ago
97 Views
2 Answers
22 days ago
17 days ago
Tags